HomeSort by: relevance | last modified time | path
    Searched defs:b_low (Results 1 - 8 of 8) sorted by relevancy

  /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/sys/dev/hpc/
hpcbatteryvar.h 106 int b_low; /* backup battery low */ member in struct:hpcbattery_spec
  /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/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);
  /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);

Completed in 22 milliseconds