Searched refs:u1 (Results 1 - 25 of 61) sorted by relevance

123

/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dstrncasecmp.c73 register unsigned char u1, u2; local
76 u1 = (unsigned char) *s1++;
78 if (charmap[u1] != charmap[u2]) {
79 return charmap[u1] - charmap[u2];
81 if (u1 == '\0') {
H A Dstrncmp.c21 register unsigned char u1, u2; local
25 u1 = (unsigned char) *s1++;
27 if (u1 != u2)
28 return u1 - u2;
29 if (u1 == '\0')
H A Dstrcasecmp.c74 register unsigned char u1, u2; local
77 u1 = (unsigned char) *s1++;
79 if (charmap[u1] != charmap[u2]) {
80 return charmap[u1] - charmap[u2];
82 if (u1 == '\0') {
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dstrncasecmp.c73 register unsigned char u1, u2; local
76 u1 = (unsigned char) *s1++;
78 if (charmap[u1] != charmap[u2]) {
79 return charmap[u1] - charmap[u2];
81 if (u1 == '\0') {
H A Dstrncmp.c21 register unsigned char u1, u2; local
25 u1 = (unsigned char) *s1++;
27 if (u1 != u2)
28 return u1 - u2;
29 if (u1 == '\0')
H A Dstrcasecmp.c74 register unsigned char u1, u2; local
77 u1 = (unsigned char) *s1++;
79 if (charmap[u1] != charmap[u2]) {
80 return charmap[u1] - charmap[u2];
82 if (u1 == '\0') {
/freebsd-11-stable/lib/msun/bsdsrc/
H A Db_log.c367 volatile double u1;
397 /* case 1: u1 = u rounded to 2^-43 absolute. Since u < 2^-8,
398 * u1 has at most 35 bits, and F*u1 is exact, as F has < 8 bits.
402 u1 = u + 513, u1 -= 513;
405 * u1 = u to 24 bits.
408 u1 = u, TRUNC(u1);
409 u2 = (2.0*(f - F*u1)
436 volatile double u1; local
[all...]
/freebsd-11-stable/lib/libc/quad/
H A Dmuldi3.c48 * u = 2^n u1 * u0 (n = number of bits in `u_long', usu. 32)
56 * uv = 2^2n u1 v1 + 2^n u1 v0 + 2^n v1 u0 + u0 v0
57 * = 2^2n u1 v1 + 2^n (u1 v0 + v1 u0) + u0 v0
59 * Now add 2^n u1 v1 to the first term and subtract it from the middle,
63 * uv = (2^2n + 2^n) (u1 v1) +
64 * (2^n) (u1 v0 - u1 v1 + u0 v1 - u0 v0) +
69 * uv = (2^2n + 2^n) (u1 v
108 #define u1 macro
163 #undef u1 macro
189 u_long u1, u0, v1, v0, udiff, vdiff, high, mid, low; local
[all...]
/freebsd-11-stable/sys/libkern/arm/
H A Dmuldi3.c53 * u = 2^n u1 * u0 (n = number of bits in `u_int', usu. 32)
61 * uv = 2^2n u1 v1 + 2^n u1 v0 + 2^n v1 u0 + u0 v0
62 * = 2^2n u1 v1 + 2^n (u1 v0 + v1 u0) + u0 v0
64 * Now add 2^n u1 v1 to the first term and subtract it from the middle,
68 * uv = (2^2n + 2^n) (u1 v1) +
69 * (2^n) (u1 v0 - u1 v1 + u0 v1 - u0 v0) +
74 * uv = (2^2n + 2^n) (u1 v
113 #define u1 macro
168 #undef u1 macro
194 u_int u1, u0, v1, v0, udiff, vdiff, high, mid, low; local
[all...]
/freebsd-11-stable/sys/crypto/des/
H A Ddes_locl.h146 unsigned int u1,u2,u3; \
147 LOAD_DATA(R,S,u,t,E0,E1,u1); \
149 u1=(int)u&0xfc; \
153 LL^= *(const DES_LONG *)(des_SP +u1); \
156 u1=(int)u&0xfc; \
158 LL^= *(const DES_LONG *)(des_SP+0x400+u1); \
161 u1=(int)t&0xfc; \
164 LL^= *(const DES_LONG *)(des_SP+0x100+u1); \
167 u1=(int)t&0xfc; \
169 LL^= *(const DES_LONG *)(des_SP+0x500+u1); \
[all...]
/freebsd-11-stable/crypto/openssl/crypto/des/
H A Ddes_locl.h225 unsigned int u1,u2,u3; \
226 LOAD_DATA(R,S,u,t,E0,E1,u1); \
228 u1=(int)u&0xfc; \
232 LL^= *(const DES_LONG *)(des_SP +u1); \
235 u1=(int)u&0xfc; \
237 LL^= *(const DES_LONG *)(des_SP+0x400+u1); \
240 u1=(int)t&0xfc; \
243 LL^= *(const DES_LONG *)(des_SP+0x100+u1); \
246 u1=(int)t&0xfc; \
248 LL^= *(const DES_LONG *)(des_SP+0x500+u1); \
[all...]
/freebsd-11-stable/usr.sbin/bluetooth/btpand/
H A Dsdp.c65 uuid_t u1, u2; local
67 memcpy(&u1, &BASE_UUID, sizeof(uuid_t));
68 u1.time_low = uuid;
71 || !uuid_equal(&u1, &u2, NULL))
/freebsd-11-stable/sys/i386/i386/
H A Dmp_clock.c88 unsigned u1, u2, u3; local
93 u1 = u2;
96 } while (u1 > u2 || u2 > u3);
/freebsd-11-stable/usr.sbin/lastlogin/
H A Dlastlogin.c62 utcmp_user(const void *u1, const void *u2) argument
65 return (order * strcmp(((const struct utmpx *)u1)->ut_user,
70 utcmp_time(const void *u1, const void *u2) argument
74 t1 = ((const struct utmpx *)u1)->ut_tv.tv_sec;
/freebsd-11-stable/sys/dev/acpica/
H A Dacpi_timer.c337 u_int u1, u2, u3; local
342 u1 = u2;
345 } while (u1 > u2 || u2 > u3);
447 uint32_t u1, u2, u3; local
449 u1 = acpi_timer_read();
456 * The failure case is where u3 > u1, but u2 does not fall between
459 if (u3 > u1) {
460 if (u2 < u1 || u2 > u3)
463 u1, u2, u3);
465 u1
[all...]
/freebsd-11-stable/lib/msun/ld128/
H A De_rem_pio2l.h64 union IEEEl2bits u,u1; local
123 u1.e = x;
125 u1.xbits.expsign = ex - e0;
126 z = u1.e;
/freebsd-11-stable/lib/msun/ld80/
H A De_rem_pio2l.h76 union IEEEl2bits u,u1; local
133 u1.e = x;
135 u1.xbits.expsign = ex - e0;
136 z = u1.e;
/freebsd-11-stable/tools/regression/poll/
H A DMakefile20 diff -u1 $${prog}.out $${prog}.out.new; \
/freebsd-11-stable/crypto/openssl/crypto/dsa/
H A Ddsa_ossl.c369 BIGNUM u1, u2, t1; local
388 BN_init(&u1);
412 /* save M in u1 */
420 if (BN_bin2bn(dgst, dgst_len, &u1) == NULL)
423 /* u1 = M * w mod q */
424 if (!BN_mod_mul(&u1, &u1, &u2, dsa->q, ctx))
438 DSA_MOD_EXP(goto err, dsa, &t1, dsa->g, &u1, dsa->pub_key, &u2, dsa->p,
440 /* BN_copy(&u1,&t1); */
441 /* let u1
[all...]
/freebsd-11-stable/lib/libc/x86/sys/
H A D__vdso_gettc.c181 uint32_t u1; local
185 u1 = u;
187 *c++ = u1 % 10 + '0';
188 u1 /= 10;
189 } while (u1 != 0);
/freebsd-11-stable/usr.sbin/makefs/ffs/
H A Dbuf.c66 bread(struct vnode *vp, daddr_t blkno, int size, struct ucred *u1 __unused,
103 brelse(struct buf *bp, int u1 __unused)
182 getblk(struct vnode *vp, daddr_t blkno, int size, int u1 __unused,
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/unicode/
H A Du8_textprep.c756 uint32_t u1; local
764 U8_PUT_3BYTES_INTO_UTF32(u1, s[0], s[1], s[2]);
771 if (U8_HANGUL_SYLLABLE(u1)) {
772 u1 -= U8_HANGUL_SYL_FIRST;
774 b1 = U8_HANGUL_JAMO_L_FIRST + u1 / U8_HANGUL_VT_COUNT;
775 b2 = U8_HANGUL_JAMO_V_FIRST + (u1 % U8_HANGUL_VT_COUNT)
777 b3 = u1 % U8_HANGUL_T_COUNT;
804 if (U8_HANGUL_JAMO_L(u1)) {
809 if (U8_HANGUL_JAMO_V(u1)) {
817 if (U8_HANGUL_JAMO_T(u1)) {
1074 uint32_t u1; local
1401 uint32_t u1; local
[all...]
/freebsd-11-stable/usr.bin/rwho/
H A Drwho.c234 utmpcmp(const void *u1, const void *u2) argument
238 rc = strncmp(MYUTMP(u1)->myutmp.out_name, MYUTMP(u2)->myutmp.out_name,
242 rc = strcmp(MYUTMP(u1)->myhost, MYUTMP(u2)->myhost);
245 return (strncmp(MYUTMP(u1)->myutmp.out_line,
/freebsd-11-stable/crypto/openssl/crypto/ecdsa/
H A Decs_ossl.c384 BIGNUM *order, *u1, *u2, *m, *X; local
403 u1 = BN_CTX_get(ctx);
445 /* u1 = m * tmp mod order */
446 if (!BN_mod_mul(u1, m, u2, order, ctx)) {
460 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
480 if (!BN_nnmod(u1, X, order, ctx)) {
484 /* if the signature is correct u1 is equal to sig->r */
485 ret = (BN_ucmp(u1, sig->r) == 0);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_win.cpp994 for (; name_table->u1.Ordinal != 0; ++name_table, ++iat) {
995 if (!IMAGE_SNAP_BY_ORDINAL(name_table->u1.Ordinal)) {
997 module, name_table->u1.ForwarderString);
1003 if (name_table->u1.Ordinal == 0)
1009 *orig_old_func = iat->u1.AddressOfData;
1011 if (!VirtualProtect(&iat->u1.AddressOfData, 4, PAGE_EXECUTE_READWRITE,
1014 iat->u1.AddressOfData = new_function;
1015 if (!VirtualProtect(&iat->u1.AddressOfData, 4, old_prot, &unused_prot))

Completed in 171 milliseconds

123