| /src/external/lgpl3/gmp/dist/mpz/ |
| kronuz.c | 39 mp_limb_t b_low; local 62 b_low = b_ptr[0]; 65 if (! (b_low & 1)) 73 Establish shifted b_low with valid bit1 for the RECIP below. Zero 74 limbs stripped are accounted for, but zero bits on b_low are not 78 JACOBI_STRIP_LOW_ZEROS (result_bit1, a, b_ptr, b_abs_size, b_low); 79 if (! (b_low & 1)) 81 if (UNLIKELY (b_low == GMP_NUMB_HIGHBIT)) 83 /* need b_ptr[1] to get bit1 in b_low */ 98 b_low = b_ptr[1] << 1 [all...] |
| kronsz.c | 39 mp_limb_t b_low; local 66 b_low = b_ptr[0]; 69 if ((b_low & 1) != 0) 73 result_bit1 ^= JACOBI_ASGN_SU_BIT1 (a, b_low); 80 return (b_abs_size == 1 && b_low == 1); 86 result_bit1 ^= JACOBI_TWOS_U_BIT1 (twos, b_low); 97 Establish shifted b_low with valid bit1 for ASGN and RECIP below. 98 Zero limbs stripped are accounted for, but zero bits on b_low are 102 JACOBI_STRIP_LOW_ZEROS (result_bit1, a, b_ptr, b_abs_size, b_low); 103 if ((b_low & 1) == 0 [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/ |
| s390-vregs.exp | 94 set b_low 5 97 set b [expr ($b_high << 32) | $b_low] 147 proc hex128 {a_high a_low b_high b_low} { 148 set result [format "%x%08x%08x%08x" $a_high $a_low $b_high $b_low] 163 [expr $b_low * (32 - $i) * $b_low * 32] ] } {
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/ |
| s390-vregs.exp | 94 set b_low 5 97 set b [expr ($b_high << 32) | $b_low] 147 proc hex128 {a_high a_low b_high b_low} { 148 set result [format "%x%08x%08x%08x" $a_high $a_low $b_high $b_low] 163 [expr $b_low * (32 - $i) * $b_low * 32] ] } {
|
| /src/sys/dev/hpc/ |
| hpcbatteryvar.h | 106 int b_low; /* backup battery low */ member in struct:hpcbattery_spec
|
| /src/external/gpl3/gcc/dist/gcc/ |
| fixed-value.cc | 416 double_int a_high, a_low, b_high, b_low; local 428 b_low.low = b->data.low; 429 b_low.high = 0; 432 low_low = a_low * b_low; 434 high_low = a_high * b_low;
|
| tree-vect-generic.cc | 235 tree low_bits, high_bits, a_low, b_low, result_low, signs; local 245 b_low = gimplify_build2 (gsi, BIT_AND_EXPR, word_type, b, low_bits); 255 result_low = gimplify_build2 (gsi, code, word_type, a_low, b_low); 269 tree low_bits, high_bits, b_low, result_low, signs; local 277 b_low = gimplify_build2 (gsi, BIT_AND_EXPR, word_type, b, low_bits); 280 result_low = gimplify_build2 (gsi, MINUS_EXPR, word_type, high_bits, b_low);
|
| tree-vect-stmts.cc | 7017 tree b_low = make_ssa_name (word_type); 7018 new_stmt = gimple_build_assign (b_low, 7043 new_stmt = gimple_build_assign (result_low, code, a_low, b_low);
|
| /src/external/gpl3/gcc/dist/libgcc/ |
| fixed-bit.c | 281 INTunion a_high, a_low, b_high, b_low; 300 b_low.s.low = bb.s.low; 301 b_low.s.high = 0; 304 low_low.ll = a_low.ll * b_low.ll; 306 high_low.ll = a_high.ll * b_low.ll;
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| fixed-value.cc | 416 double_int a_high, a_low, b_high, b_low; local 428 b_low.low = b->data.low; 429 b_low.high = 0; 432 low_low = a_low * b_low; 434 high_low = a_high * b_low;
|
| tree-vect-generic.cc | 272 tree low_bits, high_bits, a_low, b_low, result_low, signs; local 282 b_low = gimplify_build2 (gsi, BIT_AND_EXPR, word_type, b, low_bits); 292 result_low = gimplify_build2 (gsi, code, word_type, a_low, b_low); 306 tree low_bits, high_bits, b_low, result_low, signs; local 314 b_low = gimplify_build2 (gsi, BIT_AND_EXPR, word_type, b, low_bits); 317 result_low = gimplify_build2 (gsi, MINUS_EXPR, word_type, high_bits, b_low);
|
| /src/external/gpl3/gcc.old/dist/libgcc/ |
| fixed-bit.c | 281 INTunion a_high, a_low, b_high, b_low; 300 b_low.s.low = bb.s.low; 301 b_low.s.high = 0; 304 low_low.ll = a_low.ll * b_low.ll; 306 high_low.ll = a_high.ll * b_low.ll;
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/bn/ |
| rsa_sup_mul.c | 128 limb_t b_low = (limb_t)(uint32_t)b; local 131 limb_t p0 = a_low * b_low; 133 limb_t p2 = a_hi * b_low;
|
| /src/external/lgpl3/gmp/dist/ |
| gmp-impl.h | 4074 decrementing b_size. b_low should be b_ptr[0] on entry, and will be 4077 #define JACOBI_STRIP_LOW_ZEROS(result_bit1, a, b_ptr, b_size, b_low) \ 4080 ASSERT ((b_low) == (b_ptr)[0]); \ 4082 while (UNLIKELY ((b_low) == 0)) \ 4087 (b_low) = *(b_ptr); \
|