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

  /src/external/gpl3/binutils/dist/libiberty/
floatformat.c 464 unsigned int shifted = *(data + cur_byte) >> lo_bit; local
467 result |= (shifted & mask) << cur_bitshift;
  /src/external/gpl3/binutils.old/dist/libiberty/
floatformat.c 464 unsigned int shifted = *(data + cur_byte) >> lo_bit; local
467 result |= (shifted & mask) << cur_bitshift;
  /src/external/gpl3/gcc/dist/libiberty/
floatformat.c 469 unsigned int shifted = *(data + cur_byte) >> lo_bit; local
472 result |= (shifted & mask) << cur_bitshift;
  /src/external/gpl3/gcc.old/dist/libiberty/
floatformat.c 469 unsigned int shifted = *(data + cur_byte) >> lo_bit; local
472 result |= (shifted & mask) << cur_bitshift;
  /src/external/gpl3/gdb/dist/libiberty/
floatformat.c 464 unsigned int shifted = *(data + cur_byte) >> lo_bit; local
467 result |= (shifted & mask) << cur_bitshift;
  /src/external/gpl3/gdb.old/dist/libiberty/
floatformat.c 464 unsigned int shifted = *(data + cur_byte) >> lo_bit; local
467 result |= (shifted & mask) << cur_bitshift;
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/ryu/
d2fixed.c 84 const uint32_t shifted = (uint32_t) (multiplied >> 29); local
86 return ((uint32_t) v) - 1000000000 * shifted;
136 const uint32_t shifted = (uint32_t) (multiplied >> 29); local
138 return ((uint32_t) vLo) - 1000000000 * shifted;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/ryu/
d2fixed.c 84 const uint32_t shifted = (uint32_t) (multiplied >> 29); local
86 return ((uint32_t) v) - 1000000000 * shifted;
136 const uint32_t shifted = (uint32_t) (multiplied >> 29); local
138 return ((uint32_t) vLo) - 1000000000 * shifted;
  /src/external/gpl3/gdb/dist/sim/frv/
frv.c 688 /* Set the C flag of the given icc to the logical OR of the bits shifted
702 /* Set the V flag of the given icc to the logical OR of the bits shifted
1118 DI shifted = acc << (cut_point + 24);
1119 DI unshifted = shifted >> (cut_point + 24);
1121 /* The result will be saturated if significant bits are shifted out. */
1159 /* Get the shifted but unsaturated result. Set LOWER to the lowest
1097 DI shifted = acc << (cut_point + 24); local
  /src/external/gpl3/gdb.old/dist/sim/frv/
frv.c 688 /* Set the C flag of the given icc to the logical OR of the bits shifted
702 /* Set the V flag of the given icc to the logical OR of the bits shifted
1118 DI shifted = acc << (cut_point + 24);
1119 DI unshifted = shifted >> (cut_point + 24);
1121 /* The result will be saturated if significant bits are shifted out. */
1159 /* Get the shifted but unsaturated result. Set LOWER to the lowest
1097 DI shifted = acc << (cut_point + 24); local
  /src/crypto/external/apache2/openssl/dist/crypto/ml_kem/
ml_kem.c 1132 uint32_t shifted = (uint32_t)x << bits; local
1133 uint64_t product = (uint64_t)shifted * kBarrettMultiplier;
1135 uint32_t remainder = shifted - quotient * kPrime;
  /src/external/mit/isl/dist/
isl_ast_build_expr.c 81 isl_aff *shifted; local
97 shifted = isl_aff_copy(aff);
98 shifted = isl_aff_add_constant_val(shifted, shift);
99 non_neg = isl_ast_build_aff_is_nonneg(data->build, shifted);
100 isl_aff_free(shifted);
isl_tab_pip.c 2900 * "shifted" contains the offsets of the unit hypercubes that lie inside the
2901 * context. Any rational point in "shifted" can therefore be rounded
2903 * If the context is constrained by any equality, then "shifted" is not used
2909 struct isl_tab *shifted; member in struct:isl_context_gbr
2937 /* Initialize the "shifted" tableau of the context, which
2938 * contains the constraints of the original tableau shifted
2940 * that any rational point in the shifted tableau can
2966 cgbr->shifted = isl_tab_from_basic_set(bset, 0);
2974 /* Check if the shifted tableau is non-empty, and if so
2982 if (!cgbr->shifted)
    [all...]
  /src/external/bsd/zstd/dist/lib/common/
xxhash.h 4879 __m512i const shifted = _mm512_srli_epi64 (acc_vec, 47); local
4882 __m512i const data_key = _mm512_ternarylogic_epi32(key_vec, acc_vec, shifted, 0x96 /* key_vec ^ acc_vec ^ shifted */);
4971 __m256i const shifted = _mm256_srli_epi64 (acc_vec, 47); local
4972 __m256i const data_vec = _mm256_xor_si256 (acc_vec, shifted);
5078 __m128i const shifted = _mm_srli_epi64 (acc_vec, 47); local
5079 __m128i const data_vec = _mm_xor_si128 (acc_vec, shifted);
5315 uint64x2_t shifted = vshrq_n_u64(acc_vec, 47); local
5316 uint64x2_t data_vec = veorq_u64(acc_vec, shifted);
  /src/external/gpl3/gcc/dist/gcc/
tree-vect-patterns.cc 2588 shifted = container >> bitpos;
2589 result = shifted & ((1 << bitsize) - 1);
2718 tree shifted = container; local
2725 shifted = gimple_assign_lhs (pattern_stmt);
2734 BIT_AND_EXPR, shifted, mask);
2827 shifted = value << bitpos; // Shift value into place
2828 masked = shifted & (mask << bitpos); // Mask off the non-relevant bits in
2888 tree shifted = value; local
2892 shifted
2903 /* Clear bits we don't want to write back from SHIFTED. *
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/bfin/
bfin.cc 2570 We modify *V to contain the original value arithmetically shifted right by
2603 HOST_WIDE_INT shifted = val;
2605 int num_zero = shiftr_zero (&shifted);
2612 && shifted >= -32768 && shifted < 65536
2616 emit_insn (gen_movsi (operands[0], gen_int_mode (shifted, SImode)));
2593 HOST_WIDE_INT shifted = val; local
  /src/external/gpl3/gcc.old/dist/gcc/config/bfin/
bfin.cc 2570 We modify *V to contain the original value arithmetically shifted right by
2603 HOST_WIDE_INT shifted = val;
2605 int num_zero = shiftr_zero (&shifted);
2612 && shifted >= -32768 && shifted < 65536
2616 emit_insn (gen_movsi (operands[0], gen_int_mode (shifted, SImode)));
2593 HOST_WIDE_INT shifted = val; local
  /src/crypto/external/bsd/openssh/dist/
libcrux_mlkem768_sha3.h 6997 int16_t shifted = (int16_t)1664 - (int16_t)fe; local
6998 int16_t mask = shifted >> 15U;
6999 int16_t shifted_to_positive = mask ^ shifted;
  /src/external/gpl3/binutils/dist/gas/config/
tc-arm.c 563 unsigned shifted : 1; /* Shift applied to operation. */ member in struct:arm_it::__anon9986
5521 inst.operands[i].shifted = 1;
6631 inst.operands[0].shifted = 1;
8270 /* register-shifted register. */
8382 if (inst.operands[i].shifted)
8430 if (inst.operands[i].immisreg && inst.operands[i].shifted)
9749 || inst.operands[1].immisreg || inst.operands[1].shifted
10352 constraint (inst.operands[2].shifted,
10473 || inst.operands[2].immisreg || inst.operands[2].shifted
10497 || inst.operands[2].immisreg || inst.operands[2].shifted
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-arm.c 563 unsigned shifted : 1; /* Shift applied to operation. */ member in struct:arm_it::__anon11458
5520 inst.operands[i].shifted = 1;
6634 inst.operands[0].shifted = 1;
8273 /* register-shifted register. */
8385 if (inst.operands[i].shifted)
8433 if (inst.operands[i].immisreg && inst.operands[i].shifted)
9752 || inst.operands[1].immisreg || inst.operands[1].shifted
10355 constraint (inst.operands[2].shifted,
10476 || inst.operands[2].immisreg || inst.operands[2].shifted
10500 || inst.operands[2].immisreg || inst.operands[2].shifted
    [all...]

Completed in 93 milliseconds