/src/sys/arch/arm/cortex/ |
cpu_in_cksum_neon.c | 50 int odd = 0; local in function:cpu_in_cksum 92 * if the previous len was odd or the this buffer starts 93 * on an odd address, shift the csum by 8 so its properly 98 if (odd ^ ((uint32_t)dptr & 1)) 104 odd ^= dlen & 1;
|
/src/lib/libm/ld128/ |
s_tanpil.c | 73 double odd; local in function:tanpil 100 odd = fmodl(ai, 2.L) == 0 ? 1 : -1; 102 t = ar == 0 ? copysign(0., odd) : __kernel_tanpil(ar); 104 t = odd / vzero; 116 * or odd integer to set t = +0 or -0.
|
/src/lib/libm/src/ |
s_tanpi.c | 59 * tanpi(n) = +0 for positive even and negative odd integer n. 60 * tanpi(n) = -0 for positive odd and negative even integer n. 65 * odd integers n. 117 double ax, hi, lo, odd, t; local in function:tanpi 151 odd = (uint64_t)x & 1 ? -1 : 1; 156 t = ix == 0 ? copysign(0, odd) : __kernel_tanpi(ax); 158 t = odd / vzero; 171 * or odd integer to set t = +0 or -0.
|
s_tanpif.c | 65 float ax, hi, lo, odd, t; local in function:tanpif 94 odd = (uint32_t)x & 1 ? -1 : 1; 99 t = ix == 0 ? copysignf(0, odd) : __kernel_tanpif(ax); 101 t = odd / vzero; 113 * or odd integer to set t = +0 or -0.
|
/src/lib/libm/ld80/ |
s_tanpil.c | 71 long double ax, hi, lo, odd, t; local in function:tanpil 105 odd = (uint64_t)x & 1 ? -1 : 1; 110 t = ix == 0 ? copysignl(0, odd) : __kernel_tanpil(ax); 112 t = odd / vzero; 124 * or odd integer to set t = +0 or -0.
|
/src/sys/dev/hpc/ |
bicons.c | 393 register u_int8_t odd = (data & 0xaa); local in function:put_oxel_D2_M2L_3x2 396 *xaddr = (odd | (even << 1)) | ((odd >> 1) & even); 440 register u_int8_t odd = (data & 0xaa); local in function:put_oxel_D2_M2L_0x2 443 *xaddr = ~((odd | (even << 1)) | ((odd >> 1) & even));
|