Home
last modified time | relevance | path

Searched refs:a1 (Results 1 – 4 of 4) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dbuffer.c569 int a1 = *a++, b1 = *b++; in buffer_caseless_compare() local
571 if (a1 != b1) { in buffer_caseless_compare()
573 if (a1 >= 'A' && a1 <= 'Z') a1 |= 32; in buffer_caseless_compare()
576 if ((a1 - b1) != 0) return (a1 - b1); in buffer_caseless_compare()
H A Dhttp_auth.c623 char a1[256]; in http_auth_basic_password_compare() local
633 CvtHex(HA1, a1); in http_auth_basic_password_compare()
635 if (0 == strcmp(password->ptr, a1)) { in http_auth_basic_password_compare()
919 char a1[256]; in http_auth_digest_check() local
1099 CvtHex(HA1, a1); in http_auth_digest_check()
1100 li_MD5_Update(&Md5Ctx, (unsigned char *)a1, 32); in http_auth_digest_check()
1108 CvtHex(HA1, a1); in http_auth_digest_check()
1124 li_MD5_Update(&Md5Ctx, (unsigned char *)a1, HASHHEXLEN); in http_auth_digest_check()
/mOS-networking-stack/core/src/bpf/
H A Dsf_gencode.c6778 struct arth *a0, *a1;
6784 s0 = xfer_to_x(a1);
6798 sappend(a1->s, s0);
6799 sappend(a0->s, a1->s);
6804 free_reg(a1->regno);
6809 if (a1->b)
6817 tmp = a1->b;
6880 struct arth *a0, *a1;
6884 s0 = xfer_to_x(a1);
6890 sappend(a1->s, s0);
[all …]
/mOS-networking-stack/core/src/
H A Dtcp_rb.c896 #define DOESOVERLAP(a1, a2, b1, b2) \ in tcp_rb_overlapchk() argument
897 ((a1 != b2) && (a2 != b1) && ((a1 > b2) != (a2 > b1))) in tcp_rb_overlapchk()