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/
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()
110 byte rex_bits = reg.high_bit() << 2 | op.data().rex; in emit_optional_rex_32()
135 if (rm_reg.high_bit()) emit(0x41); in emit_optional_rex_32()
139 if (rm_reg.high_bit()) emit(0x41); in emit_optional_rex_32()
[all …]
Dregister-x64.h66 int high_bit() const { return code() >> 3; } in high_bit() function
189 int high_bit() const { return code() >> 3; } in high_bit() function
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/
Dregister_allocate.c729 for (int i = BITSET_WORDS(g->count) - 1, high_bit = top_word_high_bit; in ra_simplify() local
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() local
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/mesa3d/src/gallium/drivers/r600/sfn/
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/
Denum.py832 high_bit = _high_bit(last_value)
836 return 2 ** (high_bit+1)
/third_party/mbedtls/library/
Decp.c3093 int mbedtls_ecp_gen_privkey_mx(size_t high_bit, in mbedtls_ecp_gen_privkey_mx() argument
3099 size_t n_random_bytes = high_bit / 8 + 1; in mbedtls_ecp_gen_privkey_mx()
3107 MBEDTLS_MPI_CHK(mbedtls_mpi_shift_r(d, 8 * n_random_bytes - high_bit - 1)); in mbedtls_ecp_gen_privkey_mx()
3109 MBEDTLS_MPI_CHK(mbedtls_mpi_set_bit(d, high_bit, 1)); in mbedtls_ecp_gen_privkey_mx()
3115 if (high_bit == 254) { in mbedtls_ecp_gen_privkey_mx()
/third_party/node/deps/v8/src/codegen/arm64/
Dassembler-arm64.cc3893 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/
Dupb.h6344 int high_bit = 63 - __builtin_clzll(val); /* 0-based, undef if val == 0. */
6346 int high_bit = 0;
6348 while(tmp >>= 1) high_bit++;
6350 return val == 0 ? 1 : high_bit / 8 + 1;
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/
Dassembler-aarch64.cc5685 unsigned high_bit = (8 << (extend & 0x3)) - 1; in EmitExtendShift() local
5689 if ((non_shift_bits > high_bit) || (non_shift_bits == 0)) { in EmitExtendShift()
5694 ubfm(rd, rn_, non_shift_bits, high_bit); in EmitExtendShift()
5699 sbfm(rd, rn_, non_shift_bits, high_bit); in EmitExtendShift()
/third_party/protobuf/php/ext/google/protobuf/
Dphp-upb.c3615 const uint32_t high_bit = 1 << 30; in field_rank() local
3616 UPB_ASSERT(ret < high_bit); in field_rank()
3618 ret |= high_bit; in field_rank()