HomeSort by: relevance | last modified time | path
    Searched defs:u1 (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/lib/libbluetooth/
sdp_match.c 49 uuid_t u1, u2; local in function:sdp_match_uuid16
51 u1 = BLUETOOTH_BASE_UUID;
52 u1.time_low = uuid;
55 || !uuid_equal(&u1, &u2, NULL))
  /src/common/lib/libc/quad/
muldi3.c 55 * 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 v1) + [u1v1 = high
114 #define u1 macro
195 u_int u1, u0, v1, v0, udiff, vdiff, high, mid, low; local in function:__lmulq
    [all...]
  /src/lib/libm/src/
b_log.c 372 volatile double u1; local in function:__log__D
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 - r.a) + u2
    [all...]
e_rem_pio2l.h 64 union IEEEl2bits u,u1; local in function:__ieee754_rem_pio2l
118 u1.e = x;
120 u1.xbits.expsign = ex - e0;
121 z = u1.e;
e_lgammaf_r.c 61 u1 = 6.3282704353e-01, /* 0x3f2200f4 */ variable in typeref:typename:const float
201 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5)))));
e_lgamma_r.c 125 u1 = 6.32827064025093366517e-01, /* 0x3FE4401E, 0x8B005DFF */ variable in typeref:typename:const double
265 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5)))));
  /src/lib/libm/ld128/
b_logl.c 336 long double F, f, g, q, u, v, u1, u2; local in function:__log__D
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;
e_rem_pio2l.h 66 union ieee_ext_u u,u1; local in function:__ieee754_rem_pio2l
120 u1.extu_ld = x;
123 u1.extu_exp = expsign1;
124 u1.extu_sign = expsign1 >> 15;
125 z = u1.extu_ld;
e_lgammal_r.c 108 u1 = 4.24082772271938167430983113242482656e-01L, variable in typeref:typename:const long double
289 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*(u5+y*(u6+y*(u7+
  /src/lib/libm/ld80/
b_logl.c 340 long double F, f, g, q, u, v, u1, u2; local in function:__log__LD
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;
e_rem_pio2l.h 78 union ieee_ext_u u, u1; local in function:__ieee754_rem_pio2l
129 u1.extu_ld = x;
132 SET_EXPSIGN(&u1, expsign1);
133 z = u1.extu_ld;
e_lgammal_r.c 134 #define u1 (u1u.extu_ld) macro
319 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*(u5+y*u6))))));
  /src/tests/usr.bin/xlint/lint1/
msg_102.c 28 static struct unrelated *u1, *u2; variable in typeref:struct:unrelated *
36 return u1->bits == u2->bits;
init_braces.c 113 unsigned char u1; member in union:init_unnamed_union::init_unnamed_union::__anond93d92e8030a::__anond93d92e80408::padded_union::__anond93d92e8050a
127 .u1 = 0,
133 return var.padded_union.u1;
init.c 88 union incomplete_union u1 = { variable in typeref:union:incomplete_union
90 /* expect+1: error: 'u1' has incomplete type 'incomplete union incomplete_union' [31] */
msg_132.c 41 unsigned u1:1; member in struct:bit_fields
  /src/lib/libm/noieee_src/
n_log.c 381 volatile double u1; local in function:__weak_alias
419 /* case 1: u1 = u rounded to 2^-43 absolute. Since u < 2^-8,
420 * u1 has at most 35 bits, and F*u1 is exact, as F has < 8 bits.
424 u1 = u + 513, u1 -= 513;
427 * u1 = u to 24 bits.
430 u1 = u, TRUNC(u1);
431 u2 = (2.0*(f - F*u1) - u1*f) * g
453 volatile double u1; local in function:__log__D
    [all...]
  /src/usr.bin/rwho/
rwho.c 232 const struct my_utmp *u1, *u2; local in function:utmpcmp
235 u1 = v1;
237 rc = strncmp(u1->myutmp.out_name, u2->myutmp.out_name, 8);
240 rc = strcmp(u1->myhost, u2->myhost);
243 return strncmp(u1->myutmp.out_line, u2->myutmp.out_line, 8);
  /src/sys/crypto/aes/
aes_bear.c 399 uint32_t t0, t1, t2, t3, u0, u1, u2, u3; local in function:aesbear_xts_enc
450 u0 = t0; u1 = t1; u2 = t2; u3 = t3;
451 aesbear_xts_update(&u0, &u1, &u2, &u3);
459 q[2*1 + 1] = le32dec(in + 16 + 4*1) ^ u1;
474 le32enc(out + 16 + 4*1, q[2*1 + 1] ^ u1);
479 t0 = u0; t1 = u1; t2 = u2; t3 = u3;
503 uint32_t t0, t1, t2, t3, u0, u1, u2, u3; local in function:aesbear_xts_dec
554 u0 = t0; u1 = t1; u2 = t2; u3 = t3;
555 aesbear_xts_update(&u0, &u1, &u2, &u3);
563 q[2*1 + 1] = le32dec(in + 16 + 4*1) ^ u1;
    [all...]
  /src/sys/fs/msdosfs/
msdosfs_conv.c 998 u_int16_t u1, u2; local in function:ucs2match
1003 u1 = ucs2fold(*w1);
1005 if (u1 != u2)
1023 u_int16_t u1, u2; local in function:char8match
1026 u1 = le16toh(*w1);
1028 if (u1 == 0 || u2 == 0)
1029 return u1 == u2;
1030 if (u1 > 255 || u2 > 255)
1032 u1 = u2l[u1 & 0xff]
    [all...]
  /src/sys/compat/linux/common/
linux_cdrom.c 112 } *u1; local in function:linux_ioctl_cdrom
114 #define l_blk u1->ll_blk
115 #define l_msf u1->ll_msf
116 #define l_ti u1->ll_ti
117 #define l_tochdr u1->ll_tochdr
118 #define l_tocentry u1->ll_tocentry
119 #define l_subchnl u1->ll_subchnl
120 #define l_volctrl u1->ll_volctrl
121 #define l_session u1->ll_session
122 #define ds u1->ll_d
    [all...]
  /src/sys/arch/dreamcast/dev/maple/
maple.c 519 struct maple_unit *u1; local in function:maple_check_subunit_change
557 u1 = &sc->sc_unit[port][i];
558 maple_remove_from_queues(sc, u1);
564 u1->port, u1->subunit));
567 TAILQ_INSERT_HEAD(&sc->sc_probeq, u1, u_q);
568 u1->u_queuestat = MAPLE_QUEUE_PROBE;
569 u1->u_proberetry = 0;
733 struct maple_unit *u1; local in function:maple_detach_unit_nofix
794 SIMPLEQ_FOREACH(u1, &sc->sc_retryq, u_dmaq)
    [all...]
  /src/tests/lib/libprop/
t_proplib.c 288 prop_number_t s1, s2, u1, u2, u3, u4; local in function:ATF_TC_BODY
306 u1 = prop_number_create_unsigned(UINTMAX_MAX);
307 ATF_REQUIRE(u1 != NULL);
308 ATF_REQUIRE(prop_number_unsigned(u1) == true);
309 ATF_REQUIRE(prop_number_unsigned_value(u1) == UINTMAX_MAX);
310 ATF_REQUIRE(prop_number_equals_unsigned(u1, UINTMAX_MAX) == true);
314 ATF_REQUIRE(u2 != u1);
318 u3 = prop_number_copy(u1);
319 ATF_REQUIRE(u3 == u1);
332 prop_object_release(u1);
    [all...]
  /src/sys/dev/pci/qat/
qat_hw15reg.h 319 } u1; member in struct:fw_init_req
530 } u1; member in struct:fw_la_comn_req
629 } u1; member in struct:fw_la_auth_req_params
qat_hw17reg.h 1920 } u1; member in struct:fw_la_auth_req_params
2043 } u1; member in struct:fw_la_key_gen_common

Completed in 31 milliseconds

1 2