Searched defs:low_bits (Results 1 - 9 of 9) sorted by relevance

/external/v8/test/cctest/
H A Dtest-log-stack-tracer.cc138 int64_t low_bits = *reinterpret_cast<uint64_t*>(*args[0]) >> 32; local
140 Address fp = reinterpret_cast<Address>(high_bits | low_bits);
226 int32_t low_bits = reinterpret_cast<int32_t>(calling_frame->fp()); local
227 args.This()->Set(v8_str("low_bits"), v8_num(low_bits >> 1));
230 int32_t low_bits = static_cast<int32_t>(fp & 0xffffffff); local
232 args.This()->Set(v8_str("low_bits"), v8_num(low_bits));
260 " %s(fp.low_bits, fp.high_bits);"
H A Dtest-api.cc14187 static double DoubleFromBits(uint32_t high_bits, uint32_t low_bits) { argument
14188 return DoubleFromBits((static_cast<uint64_t>(high_bits) << 32) | low_bits);
/external/v8/src/x64/
H A Dassembler-x64.h151 int low_bits() const { function in struct:v8::internal::Register
258 int low_bits() const {
1545 emit_operand(reg.low_bits(), adr);
1555 emit(0xC0 | reg.low_bits() << 3 | rm_reg.low_bits());
1562 emit(0xC0 | code << 3 | rm_reg.low_bits());
H A Ddisasm-x64.cc358 int base_reg(int low_bits) { return low_bits | ((rex_ & 0x01) << 3); } argument
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest.cc1283 const UInt32 low_bits = *bits & ((static_cast<UInt32>(1) << n) - 1); local
1285 return low_bits;
/external/chromium/testing/gtest/src/
H A Dgtest.cc1422 const UInt32 low_bits = *bits & ((static_cast<UInt32>(1) << n) - 1); local
1424 return low_bits;
/external/gtest/src/
H A Dgtest.cc1422 const UInt32 low_bits = *bits & ((static_cast<UInt32>(1) << n) - 1); local
1424 return low_bits;
/external/llvm/utils/unittest/googletest/
H A Dgtest.cc1422 const UInt32 low_bits = *bits & ((static_cast<UInt32>(1) << n) - 1); local
1424 return low_bits;
/external/protobuf/gtest/src/
H A Dgtest.cc1407 const UInt32 low_bits = *bits & ((static_cast<UInt32>(1) << n) - 1); local
1409 return low_bits;

Completed in 316 milliseconds