Home
last modified time | relevance | path

Searched refs:high_bit (Results 1 - 12 of 12) sorted by relevance

/third_party/node/deps/v8/src/codegen/x64/
H A Dassembler-x64-inl.h62 emit(0x48 | reg.high_bit() << 2 | rm_reg.high_bit()); in emit_rex_64()
78 emit(0x48 | reg.high_bit() << 2 | op.data().rex); in emit_rex_64()
87 emit(0x48 | rm_reg.high_bit()); in emit_rex_64()
93 emit(0x40 | reg.high_bit() << 2 | rm_reg.high_bit()); in emit_rex_32()
97 emit(0x40 | reg.high_bit() << 2 | op.data().rex); in emit_rex_32()
100 void Assembler::emit_rex_32(Register rm_reg) { emit(0x40 | rm_reg.high_bit()); } in emit_rex_32()
105 byte rex_bits = reg.high_bit() << 2 | rm_reg.high_bit(); in emit_optional_rex_32()
[all...]
H A Dregister-x64.h66 int high_bit() const { return code() >> 3; } in high_bit() function in v8::internal::Register
189 int high_bit() const { return code() >> 3; } in high_bit() function in v8::internal::XMMRegister
H A Dassembler-x64.h252 data_.rex |= rm_reg.high_bit(); in set_modrm()
262 data_.rex |= index.high_bit() << 1 | base.high_bit(); in set_sib()
/third_party/mesa3d/src/util/
H A Dregister_allocate.c729 for (int i = BITSET_WORDS(g->count) - 1, high_bit = top_word_high_bit; in ra_simplify()
730 i >= 0; i--, high_bit = BITSET_WORDBITS - 1) { in ra_simplify()
736 for (int j = high_bit; j >= 0; j--) { in ra_simplify()
752 for (int i = BITSET_WORDS(g->count) - 1, high_bit = top_word_high_bit; in ra_simplify()
753 i >= 0; i--, high_bit = BITSET_WORDBITS - 1) { in ra_simplify()
754 BITSET_WORD mask = ~(BITSET_WORD)0 >> (31 - high_bit); in ra_simplify()
768 for (int j = high_bit; j >= 0; j--) { in ra_simplify()
786 for (int j = high_bit; j >= 0; j--) { in ra_simplify()
/third_party/mbedtls/library/
H A Decp_invasive.h56 * \p high_bit The position of the high-order bit of the key to generate.
60 * exactly \p high_bit + 1 bits, with the least significant bits
68 int mbedtls_ecp_gen_privkey_mx(size_t high_bit,
H A Decp.c3088 int mbedtls_ecp_gen_privkey_mx(size_t high_bit, in mbedtls_ecp_gen_privkey_mx() argument
3094 size_t n_random_bytes = high_bit / 8 + 1; in mbedtls_ecp_gen_privkey_mx()
3097 /* Generate a (high_bit+1)-bit random number by generating just enough in mbedtls_ecp_gen_privkey_mx()
3099 * when (high_bit+1) is not a multiple of 8). */ in mbedtls_ecp_gen_privkey_mx()
3102 MBEDTLS_MPI_CHK(mbedtls_mpi_shift_r(d, 8 * n_random_bytes - high_bit - 1)); in mbedtls_ecp_gen_privkey_mx()
3104 MBEDTLS_MPI_CHK(mbedtls_mpi_set_bit(d, high_bit, 1)); in mbedtls_ecp_gen_privkey_mx()
3110 if (high_bit == 254) { in mbedtls_ecp_gen_privkey_mx()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_instr_mem.cpp833 auto high_bit = vf.temp_register(); in emit_image_size() local
841 shader.emit_instruction(new AluInstr(op2_and_int, high_bit, vf.src(intrin->src[0], 0), in emit_image_size()
848 shader.emit_instruction(new AluInstr(op3_cnde_int, comp1, high_bit, trgt[0], trgt[2], in emit_image_size()
850 shader.emit_instruction(new AluInstr(op3_cnde_int, comp2, high_bit, trgt[1], trgt[3], in emit_image_size()
/third_party/python/Lib/
H A Denum.py1349 high_bit = _high_bit(last_value)
1352 return 2 ** (high_bit+1)
/third_party/node/deps/v8/src/codegen/arm64/
H A Dassembler-arm64.cc3892 // Bits extracted are high_bit:0. in EmitExtendShift()
3893 unsigned high_bit = (8 << (extend & 0x3)) - 1; in EmitExtendShift() local
3897 if ((non_shift_bits > high_bit) || (non_shift_bits == 0)) { in EmitExtendShift()
3902 ubfm(rd, rn_, non_shift_bits, high_bit); in EmitExtendShift()
3907 sbfm(rd, rn_, non_shift_bits, high_bit); in EmitExtendShift()
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.h6344 int high_bit = 63 - __builtin_clzll(val); /* 0-based, undef if val == 0. */ in upb_value_size() local
6346 int high_bit = 0; in upb_value_size()
6348 while(tmp >>= 1) high_bit++; in upb_value_size()
6350 return val == 0 ? 1 : high_bit / 8 + 1; in upb_value_size()
H A Dupb.c3170 const uint32_t high_bit = 1 << 30; in field_rank() local
3171 UPB_ASSERT(ret < high_bit); in field_rank()
3173 ret |= high_bit; in field_rank()
/third_party/vixl/src/aarch64/
H A Dassembler-aarch64.cc6222 // Bits extracted are high_bit:0.
6223 unsigned high_bit = (8 << (extend & 0x3)) - 1;
6227 if ((non_shift_bits > high_bit) || (non_shift_bits == 0)) {
6232 ubfm(rd, rn_, non_shift_bits, high_bit);
6237 sbfm(rd, rn_, non_shift_bits, high_bit);

Completed in 69 milliseconds