/src/sys/arch/mips/mips/ |
in_cksum.c | 80 unsigned long w0, w1; local in function:fastsum 120 w0 = buf.l[0]; 123 hilo += w0; 124 high += w0 >> 16; 125 w0 = buf.l[2]; 131 hilo += w0; 132 high += w0 >> 16; 133 w0 = buf.l[4]; 139 hilo += w0; 140 high += w0 >> 16 [all...] |
/src/lib/libm/src/ |
e_lgammaf_r.c | 84 w0 = 4.1893854737e-01, /* 0x3ed67f1d */ variable in typeref:typename:const float 227 w = w0+z*(w1+y*(w2+y*(w3+y*(w4+y*(w5+y*w6)))));
|
e_lgamma_r.c | 61 * w = w0 + w1*z + w2*z + w3*z + ... + w6*z 148 w0 = 4.18938533204672725052e-01, /* 0x3FDACFE3, 0x90C97D69 */ variable in typeref:typename:const double 291 w = w0+z*(w1+y*(w2+y*(w3+y*(w4+y*(w5+y*w6)))));
|
/src/sys/crypto/camellia/ |
camellia.c | 81 #define CAMELLIA_ROLDQ(ll, lr, rl, rr, w0, w1, bits) \ 83 w0 = ll; \ 87 rr = (rr << bits) + (w0 >> (32 - bits)); \ 90 #define CAMELLIA_ROLDQo32(ll, lr, rl, rr, w0, w1, bits) \ 92 w0 = ll; \ 96 rl = (rr << (bits - 32)) + (w0 >> (64 - bits)); \ 97 rr = (w0 << (bits - 32)) + (w1 >> (64 - bits)); \ 440 uint32_t il, ir, t0, t1, w0, w1; local in function:camellia_setup128 457 CAMELLIA_ROLDQ(kll, klr, krl, krr, w0, w1, 15); 460 CAMELLIA_ROLDQ(kll, klr, krl, krr, w0, w1, 30) 647 uint32_t il, ir, t0, t1, w0, w1; \/* temporary variables *\/ local in function:camellia_setup256 [all...] |
/src/sys/dev/raidframe/ |
rf_paritymap.c | 190 char w, w0; local in function:rf_paritymap_write_locked 195 w0 = pm->disk_now->bits[i]; 202 if (w & ~w0) 204 if (w0 & ~w)
|
/src/lib/libm/ld80/ |
e_lgammal_r.c | 194 #define w0 (w0u.extu_ld) macro 345 w = w0+z*(w1+y*(w2+y*(w3+y*(w4+y*(w5+y*(w6+y*(w7+y*w8)))))));
|
/src/sys/arch/arm/amlogic/ |
meson_genfb.c | 332 uint32_t cs, tc, w0, w1, w2, w3, w4; local in function:meson_genfb_osd_config 357 w0 = VPU_READ(sc, VIU_OSD2_BLK0_CFG_W0_REG); 358 w0 |= VIU_OSD_BLK_CFG_W0_RGB_EN; 359 w0 &= ~VIU_OSD_BLK_CFG_W0_TC_ALPHA_EN; 360 w0 &= ~VIU_OSD_BLK_CFG_W0_OSD_BLK_MODE; 361 w0 &= ~VIU_OSD_BLK_CFG_W0_COLOR_MATRIX; 364 w0 |= __SHIFTIN(VIU_OSD_BLK_CFG_W0_OSD_BLK_MODE_32BPP, 366 w0 |= __SHIFTIN(VIU_OSD_BLK_CFG_W0_COLOR_MATRIX_ARGB, 370 w0 |= __SHIFTIN(VIU_OSD_BLK_CFG_W0_OSD_BLK_MODE_24BPP, 372 w0 |= __SHIFTIN(VIU_OSD_BLK_CFG_W0_COLOR_MATRIX_RGB [all...] |
/src/sys/dev/marvell/ |
if_gfe.c | 1749 uint32_t w0, add0, add1; local in function:gfe_hash_compute 1802 w0 = ((add0 >> 6) ^ (add0 >> 15) ^ (add1)) & 0x1ff; 1807 result |= ((TRIBITFLIP >> (((w0 >> 0) & 7) * 3)) & 7) << 6; 1808 result |= ((TRIBITFLIP >> (((w0 >> 3) & 7) * 3)) & 7) << 3; 1809 result |= ((TRIBITFLIP >> (((w0 >> 6) & 7) * 3)) & 7) << 0;
|
/src/lib/libm/ld128/ |
e_lgammal_r.c | 163 w0 = 4.18938533204672741780329736405617738e-01L, variable in typeref:typename:const long double 319 w = w0+z*(w1+y*(w2+y*(w3+y*(w4+y*(w5+y*(w6+y*(w7+y*(w8+
|
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
radeon_r600_cs.c | 1413 unsigned w0, unsigned h0, unsigned d0, unsigned nsamples, unsigned format, 1426 w0 = r600_mip_minify(w0, 0); 1430 width = r600_mip_minify(w0, i); 1480 u32 dim, nfaces, llevel, blevel, w0, h0, d0; local in function:r600_check_texture_resource 1510 w0 = G_038000_TEX_WIDTH(word0) + 1; 1593 r600_texture_size(nfaces, blevel, llevel, w0, h0, d0, array_check.nsamples, format, 1599 w0, h0, pitch_align, height_align, 1608 w0, h0, format, blevel, nlevels, word3, mipmap_size, radeon_bo_size(texture));*/
|
/src/sbin/nvmectl/ |
bignum.c | 1809 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local in function:toom_cook_multiply 1813 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, 1854 /* w0 = a0*b0 */ 1855 if ((res = signed_multiply(&a0, &b0, &w0)) != MP_OKAY) { 1961 if ((res = signed_subtract(&w3, &w0, &w3)) != MP_OKAY) { 1973 if ((res = signed_subtract(&w2, &w0, &w2)) != MP_OKAY) { 1988 if ((res = lshift_bits(&w0, 3, &tmp1)) != MP_OKAY) { 2042 if ((res = signed_add(&w0, &w1, c)) != MP_OKAY) { 2056 mp_clear_multi(&w0, &w1, &w2, &w3, &w4, 2727 mp_int w0, w1, w2, w3, w4, tmp1, a0, a1, a2 local in function:toom_cook_square [all...] |
/src/sys/dev/usb/ |
xhci.c | 1228 const uint32_t w0 = xhci_read_4(sc, ecp); local in function:xhci_id_protocols 1234 " SP: 0x%08x 0x%08x 0x%08x 0x%08x\n", w0, w4, w8, wc); 1239 const int major = XHCI_XECP_SP_W0_MAJOR(w0); 1240 const int minor = XHCI_XECP_SP_W0_MINOR(w0); 1244 const uint16_t mm = __SHIFTOUT(w0, __BITS(31, 16));
|