HomeSort by relevance Sort by last modified time
    Searched refs:high_bit (Results 1 - 11 of 11) sorted by null

  /external/v8/src/x64/
assembler-x64-inl.h 93 emit(0x48 | reg.high_bit() << 2 | rm_reg.high_bit());
108 emit(0x48 | reg.high_bit() << 2 | op.rex_);
119 emit(0x48 | rm_reg.high_bit());
129 emit(0x40 | reg.high_bit() << 2 | rm_reg.high_bit());
134 emit(0x40 | reg.high_bit() << 2 | op.rex_);
139 emit(0x40 | rm_reg.high_bit());
149 byte rex_bits = reg.high_bit() << 2 | rm_reg.high_bit();
    [all...]
macro-assembler-x64.h     [all...]
assembler-x64.h 137 int high_bit() const { return reg_code >> 3; }
235 int high_bit() const { return reg_code >> 3; }
    [all...]
  /external/python/cpython3/Lib/
enum.py 662 high_bit = _high_bit(last_value)
666 return 2 ** (high_bit+1)
    [all...]
  /external/v8/src/arm64/
assembler-arm64.cc 2494 unsigned high_bit = (8 << (extend & 0x3)) - 1; local
    [all...]
  /art/compiler/optimizing/
intrinsics_arm64.cc 478 size_t high_bit = (type == DataType::Type::kInt64) ? 63u : 31u; local
482 __ Mov(dst, UINT64_C(1) << high_bit); // MOV (bitmask immediate)
483 __ Bic(dst, dst, Operand(temp, LSL, high_bit - clz_high_bit)); // Clear dst if src was 0.
    [all...]
  /external/protobuf/php/ext/google/protobuf/
upb.h 7779 int high_bit = 63 - __builtin_clzll(val); \/* 0-based, undef if val == 0. *\/ local
    [all...]
upb.c 225 const uint32_t high_bit = 1 << 30; local
226 assert(ret < high_bit);
228 ret |= high_bit;
    [all...]
  /external/protobuf/ruby/ext/google/protobuf_c/
upb.h 8079 int high_bit = 63 - __builtin_clzll(val); \/* 0-based, undef if val == 0. *\/ local
    [all...]
upb.c 268 const uint32_t high_bit = 1 << 30; local
269 assert(ret < high_bit);
271 ret |= high_bit;
    [all...]
  /external/vixl/src/aarch64/
assembler-aarch64.cc     [all...]

Completed in 350 milliseconds