HomeSort by relevance Sort by last modified time
    Searched refs:bit_cast (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/v8/src/
property.cc 16 visitor->VisitPointer(bit_cast<Object**>(&current->holder_));
17 visitor->VisitPointer(bit_cast<Object**>(&current->transition_));
double.h 14 inline uint64_t double_to_uint64(double d) { return bit_cast<uint64_t>(d); }
15 inline double uint64_to_double(uint64_t d64) { return bit_cast<double>(d64); }
handles-inl.h 44 return *bit_cast<T**>(location_);
58 Object* object = *bit_cast<T**>(location_);
  /art/test/455-set-vreg/
set_vreg_jni.cc 64 CHECK(SetVReg(m, 2, bit_cast<uint32_t, float>(5.0f), kFloatVReg));
65 CHECK(SetVReg(m, 3, bit_cast<uint32_t, float>(4.0f), kFloatVReg));
66 CHECK(SetVReg(m, 4, bit_cast<uint32_t, float>(3.0f), kFloatVReg));
67 CHECK(SetVReg(m, 5, bit_cast<uint32_t, float>(2.0f), kFloatVReg));
68 CHECK(SetVReg(m, 6, bit_cast<uint32_t, float>(1.0f), kFloatVReg));
74 CHECK(SetVRegPair(m, 4, bit_cast<uint64_t, double>(5.0), kDoubleLoVReg, kDoubleHiVReg));
75 CHECK(SetVRegPair(m, 6, bit_cast<uint64_t, double>(4.0), kDoubleLoVReg, kDoubleHiVReg));
76 CHECK(SetVRegPair(m, 8, bit_cast<uint64_t, double>(3.0), kDoubleLoVReg, kDoubleHiVReg));
77 CHECK(SetVRegPair(m, 10, bit_cast<uint64_t, double>(2.0), kDoubleLoVReg, kDoubleHiVReg));
78 CHECK(SetVRegPair(m, 12, bit_cast<uint64_t, double>(1.0), kDoubleLoVReg, kDoubleHiVReg))
    [all...]
  /external/v8/src/compiler/
common-node-cache.h 26 return float64_constants_.Find(zone_, bit_cast<int64_t>(value));
35 return number_constants_.Find(zone_, bit_cast<int64_t>(value));
js-graph.cc 137 if (bit_cast<int64_t>(value) == bit_cast<int64_t>(0.0)) return ZeroConstant();
138 if (bit_cast<int64_t>(value) == bit_cast<int64_t>(1.0)) return OneConstant();
simplified-operator-reducer.h 34 return ReplaceInt32(bit_cast<int32_t>(value));
operator.h 162 return static_cast<int>(bit_cast<int64_t>(a));
165 return bit_cast<int64_t>(a) == bit_cast<int64_t>(b);
js-graph.h 69 return Int32Constant(bit_cast<int32_t>(value));
node-cache.cc 34 return ComputeLongHash(bit_cast<int64_t>(key));
  /external/clang/test/SemaCXX/
warn-memset-bad-sizeof.cpp 20 inline Dest bit_cast(const Source& source) { function
91 bit_cast<char*>(puc);
94 bit_cast<int*>(pf);
  /external/v8/src/base/
bits.h 127 *val = bit_cast<int32_t>(res);
141 *val = bit_cast<int32_t>(res);
macros.h 179 // bit_cast<Dest,Source> is a template function that implements the
185 // int i = bit_cast<int32>(f);
218 // bit_cast<> calls memcpy() which is blessed by the standard,
220 // bit_cast<> wraps up the nasty logic in one place.
233 V8_INLINE Dest bit_cast(Source const& source) { function
  /art/runtime/base/
casts.h 79 inline Dest bit_cast(const Source& source) { function in namespace:art
  /system/extras/perfprofd/quipper/base/
macros.h 158 // bit_cast<Dest,Source> is a template function that implements the
164 // int i = bit_cast<int32>(f);
197 // bit_cast<> calls memcpy() which is blessed by the standard,
199 // bit_cast<> wraps up the nasty logic in one place.
213 inline Dest bit_cast(const Source& source) { function
  /art/compiler/jni/
jni_compiler_test.cc     [all...]
  /art/runtime/
memory_region.h 83 return bit_cast<T, U>(equivalent_unsigned_integer_value);
92 U equivalent_unsigned_integer_value = bit_cast<U, T>(value);
  /art/test/454-get-vreg/
get_vreg_jni.cc 60 uint32_t cast = bit_cast<uint32_t, float>(1.0f);
100 uint64_t cast = bit_cast<uint64_t, double>(2.0);
  /art/test/457-regs/
regs_jni.cc 72 uint32_t cast = bit_cast<uint32_t, float>(4.0f);
141 int32_t cast = bit_cast<int32_t, float>(float_value);
  /external/v8/test/cctest/
test-macro-assembler-mips.cc 152 bit_cast<uint64_t>(value) ==
153 bit_cast<uint64_t>(
  /external/openfst/src/include/fst/
compat.h 67 inline Dest bit_cast(const Source& source) { function in namespace:fst
  /external/lldb/source/Expression/
IRDynamicChecks.cpp 379 BitCastInst *bit_cast = new BitCastInst(dereferenced_ptr,
388 arg_array[0] = bit_cast;
476 BitCastInst *bit_cast = new BitCastInst(target_object, local
485 arg_array[0] = bit_cast;
  /art/compiler/utils/arm/
constants_arm.h 334 return bit_cast<float, uint32_t>(imm32);
341 return bit_cast<double, uint64_t>(imm64);
  /art/compiler/optimizing/
code_generator.h 305 return bit_cast<int32_t, float>(constant->AsFloatConstant()->GetValue());
315 return bit_cast<int32_t, float>(constant->AsFloatConstant()->GetValue());
320 return bit_cast<int64_t, double>(constant->AsDoubleConstant()->GetValue());
ssa_builder.cc 430 result = new (allocator) HFloatConstant(bit_cast<float, int32_t>(constant->GetValue()));
436 DCHECK_EQ((bit_cast<int32_t, float>(result->GetValue())), constant->GetValue());
453 result = new (allocator) HDoubleConstant(bit_cast<double, int64_t>(constant->GetValue()));
459 DCHECK_EQ((bit_cast<int64_t, double>(result->GetValue())), constant->GetValue());

Completed in 475 milliseconds

1 2 3 4