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

12345678910

/netbsd-current/external/gpl3/gcc/dist/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.c22 register unsigned char u1, u2; local
26 u1 = (unsigned char) *s1++;
28 if (u1 != u2)
29 return u1 - u2;
30 if (u1 == '\0')
/netbsd-current/external/gpl3/binutils/dist/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.c22 register unsigned char u1, u2; local
26 u1 = (unsigned char) *s1++;
28 if (u1 != u2)
29 return u1 - u2;
30 if (u1 == '\0')
/netbsd-current/external/gpl3/gdb/dist/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.c22 register unsigned char u1, u2; local
26 u1 = (unsigned char) *s1++;
28 if (u1 != u2)
29 return u1 - u2;
30 if (u1 == '\0')
/netbsd-current/external/gpl3/gdb.old/dist/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.c22 register unsigned char u1, u2; local
26 u1 = (unsigned char) *s1++;
28 if (u1 != u2)
29 return u1 - u2;
30 if (u1 == '\0')
/netbsd-current/external/gpl3/binutils.old/dist/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.c22 register unsigned char u1, u2; local
26 u1 = (unsigned char) *s1++;
28 if (u1 != u2)
29 return u1 - u2;
30 if (u1 == '\0')
/netbsd-current/external/gpl3/gcc.old/dist/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.c22 register unsigned char u1, u2; local
26 u1 = (unsigned char) *s1++;
28 if (u1 != u2)
29 return u1 - u2;
30 if (u1 == '\0')
/netbsd-current/lib/libbluetooth/
H A Dsdp_match.c49 uuid_t u1, u2; local
51 u1 = BLUETOOTH_BASE_UUID;
52 u1.time_low = uuid;
55 || !uuid_equal(&u1, &u2, NULL))
/netbsd-current/external/mit/isl/dist/
H A Disl_union_sub_templ.c13 /* Subtract "u2" from "u1" and return the result.
17 * is computed on the union of the domains of "u1" and "u2".
20 __isl_give UNION *FN(UNION,sub)(__isl_take UNION *u1, __isl_take UNION *u2)
23 return FN(UNION,add)(u1, FN(UNION,neg)(u2));
25 return FN(UNION,match_bin_op)(u1, u2, &FN(PART,sub));
/netbsd-current/lib/libm/src/
H A Db_log.c372 volatile double u1; local
393 u1 = u + 513, u1 -= 513;
395 u1 = u, TRUNC(u1);
396 u2 = (2.0*(f - F*u1) - u1*f) * g;
398 u1 += m*logF_head[N] + logF_head[j];
402 r.a = u1 + u2; /* Only difference is here */
404 r.b = (u1
[all...]
/netbsd-current/external/lgpl3/gmp/dist/mpn/generic/
H A Dgcd_22.c39 mpn_gcd_22 (mp_limb_t u1, mp_limb_t u0, mp_limb_t v1, mp_limb_t v0) argument
45 u0 = (u0 >> 1) | (u1 << (GMP_LIMB_BITS - 1));
46 u1 >>= 1;
51 while (u1 || v1) /* u1 == 0 can happen at most twice per call */
54 sub_ddmmss (t1, t0, u1, u0, v1, v0);
62 g.d1 = (u1 << 1) | (u0 >> (GMP_LIMB_BITS - 1));
68 /* v1 = min (u1, v1) */
70 /* u0 = |u1 - v1| */
74 u1
[all...]
H A Dgcdext_lehmer.c58 /* Must return the smallest cofactor, +u1 or -u0 */
59 MPN_CMP (c, ctx->u0, ctx->u1, un);
60 ASSERT (c != 0 || (un == 1 && ctx->u0[0] == 1 && ctx->u1[0] == 1));
65 up = d ? ctx->u0 : ctx->u1;
76 mp_ptr u1 = ctx->u1; local
81 MP_PTR_SWAP (u0, u1);
85 /* Update u0 += q * u1 */
92 cy = mpn_add_n (u0, u0, u1, un);
94 cy = mpn_addmul_1 (u0, u1, u
170 mp_ptr u1; local
[all...]
/netbsd-current/tests/usr.bin/xlint/lint1/
H A Dmsg_102.c28 static struct unrelated *u1, *u2; variable in typeref:struct:unrelated
36 return u1->bits == u2->bits;
H A Dinit_braces.c113 unsigned char u1; member in union:init_unnamed_union::__anon16::__anon17::padded_union::__anon18
127 .u1 = 0,
133 return var.padded_union.u1;
/netbsd-current/lib/libm/noieee_src/
H A Dn_log.c380 volatile double u1; local
418 /* case 1: u1 = u rounded to 2^-43 absolute. Since u < 2^-8,
419 * u1 has at most 35 bits, and F*u1 is exact, as F has < 8 bits.
423 u1 = u + 513, u1 -= 513;
426 * u1 = u to 24 bits.
429 u1 = u, TRUNC(u1);
430 u2 = (2.0*(f - F*u1)
452 volatile double u1; local
[all...]
/netbsd-current/lib/libm/ld128/
H A Db_logl.c336 long double F, f, g, q, u, v, u1, u2; local
360 u1 = u + 513;
361 u1 -= 513;
363 u1 = (float)u;
365 u2 = (2 * (f - F * u1) - u1 * f) * g;
367 u1 += m * (long double)logF_head[N] + logF_head[j];
372 r.a = (float)(u1 + u2); /* Only difference is here. */
373 r.b = (u1 - r.a) + u2;
/netbsd-current/lib/libm/ld80/
H A Db_logl.c340 long double F, f, g, q, u, v, u1, u2; local
364 u1 = u + 513;
365 u1 -= 513;
367 u1 = (float)u;
369 u2 = (2 * (f - F * u1) - u1 * f) * g;
371 u1 += m * (long double)logF_head[N] + logF_head[j];
376 r.a = (float)(u1 + u2); /* Only difference is here. */
377 r.b = (u1 - r.a) + u2;
/netbsd-current/common/lib/libc/quad/
H A Dmuldi3.c55 * u = 2^n u1 * u0 (n = number of bits in `u_int', usu. 32)
63 * uv = 2^2n u1 v1 + 2^n u1 v0 + 2^n v1 u0 + u0 v0
64 * = 2^2n u1 v1 + 2^n (u1 v0 + v1 u0) + u0 v0
66 * Now add 2^n u1 v1 to the first term and subtract it from the middle,
70 * uv = (2^2n + 2^n) (u1 v1) +
71 * (2^n) (u1 v0 - u1 v1 + u0 v1 - u0 v0) +
76 * uv = (2^2n + 2^n) (u1 v
114 #define u1 macro
169 #undef u1 macro
195 u_int u1, u0, v1, v0, udiff, vdiff, high, mid, low; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dbitfields2.c16 unsigned long long u1 : 15; member in struct:fields
78 flags.u1 = 1;
80 flags.u1 = 0;
101 flags.u1 = 0x7FFF;
105 flags.u1 = 0;
121 flags.u1 = 0x7FFF;
125 flags.u1 = 0;
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dbitfields2.c16 unsigned long long u1 : 15; member in struct:fields
78 flags.u1 = 1;
80 flags.u1 = 0;
101 flags.u1 = 0x7FFF;
105 flags.u1 = 0;
121 flags.u1 = 0x7FFF;
125 flags.u1 = 0;

Completed in 189 milliseconds

12345678910