Home
last modified time | relevance | path

Searched refs:UnalignedLoad (Results 1 – 22 of 22) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
Dendian_test.cc91 inline T UnalignedLoad(const char* p) { in UnalignedLoad() function
128 << "Expected: 0x" << UnalignedLoad<T>(expected_value) << "; " in GBSwapHelper()
129 << "actual: 0x" << UnalignedLoad<T>(actual_value); in GBSwapHelper()
/third_party/protobuf/src/google/protobuf/
Dparse_context.cc230 out->Add(UnalignedLoad<T>(ptr)); in ReadRepeatedFixed()
233 } while (UnalignedLoad<Tag>(ptr) == expected_tag&& ptr += sizeof(Tag)); in ReadRepeatedFixed()
264 dst[i] = UnalignedLoad<T>(ptr + i * sizeof(T)); in ReadPackedFixed()
279 for (int i = 0; i < num; i++) dst[i] = UnalignedLoad<T>(ptr + i * sizeof(T)); in ReadPackedFixed()
Dparse_context.h451 T UnalignedLoad(const char* p) {
527 uint32 value = UnalignedLoad<uint16>(*ptr);
678 uint64 value = UnalignedLoad<uint64>(ptr);
698 uint32 value = UnalignedLoad<uint32>(ptr);
Dextension_set_inl.h124 auto value = UnalignedLoad<CPPTYPE>(ptr); \ in ParseFieldWithExtensionInfo()
Dwrappers.pb.cc375 value_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad<double>(ptr); in _InternalParse()
570 value_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad<float>(ptr); in _InternalParse()
Dstruct.pb.cc630 _internal_set_number_value(::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad<double>(ptr)); in _InternalParse()
Dmap_type_handler.h480 *value = UnalignedLoad<F>(ptr);
Dwire_format.cc941 value = UnalignedLoad<CPPTYPE>(ptr); \ in _InternalParseAndMergeField()
Ddescriptor.pb.cc9792 double_value_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad<double>(ptr); in _InternalParse()
/third_party/node/deps/v8/src/compiler/
Ddecompression-optimizer.cc220 machine()->UnalignedLoad(compressed_load_rep)); in ChangeLoad()
Draw-machine-assembler.h210 Node* UnalignedLoad(MachineType type, Node* base) { in UnalignedLoad() function
211 return UnalignedLoad(type, base, IntPtrConstant(0)); in UnalignedLoad()
213 Node* UnalignedLoad(MachineType type, Node* base, Node* index) { in UnalignedLoad() function
220 return AddNode(machine()->UnalignedLoad(type), base, index); in UnalignedLoad()
940 return UnalignedLoad(type, PointerConstant(address), Int32Constant(offset));
Dmachine-operator.cc930 struct UnalignedLoad##Type##Operator final \
932 UnalignedLoad##Type##Operator() \
953 UnalignedLoad##Type##Operator kUnalignedLoad##Type; \
1337 const Operator* MachineOperatorBuilder::UnalignedLoad(LoadRepresentation rep) { in UnalignedLoad() function in v8::internal::compiler::MachineOperatorBuilder
Dcode-assembler.h776 TNode<Type> UnalignedLoad(TNode<RawPtrT> base, TNode<IntPtrT> offset) { in UnalignedLoad() function
778 return UncheckedCast<Type>(UnalignedLoad(mt, base, offset)); in UnalignedLoad()
1379 Node* UnalignedLoad(MachineType type, TNode<RawPtrT> base,
Dgraph-assembler.cc456 : machine()->UnalignedLoad(type); in LoadUnaligned()
Dmemory-lowering.cc392 ? machine()->UnalignedLoad(machine_type) in ReduceLoadFromObject()
Dmachine-operator.h952 const Operator* UnalignedLoad(LoadRepresentation rep); in NON_EXPORTED_BASE()
Dcode-assembler.cc757 Node* CodeAssembler::UnalignedLoad(MachineType type, TNode<RawPtrT> base, in UnalignedLoad() function in v8::internal::compiler::CodeAssembler
759 return raw_assembler()->UnalignedLoad(type, static_cast<Node*>(base), offset); in UnalignedLoad()
Dopcodes.h752 V(UnalignedLoad) \
Dint64-lowering.cc254 machine()->UnalignedLoad(MachineType::Int32())); in LowerNode()
Dwasm-compiler.cc3898 return mcgraph()->machine()->UnalignedLoad(mach_type); in GetSafeLoadOperator()
/third_party/astc-encoder/Source/UnitTest/
Dtest_simd.cpp262 TEST(vfloat4, UnalignedLoad) in TEST() argument
1142 TEST(vint4, UnalignedLoad) in TEST() argument
1896 TEST(vfloat8, UnalignedLoad) in TEST() argument
2608 TEST(vint8, UnalignedLoad) in TEST() argument
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc15850 TNode<Uint64T> data = UnalignedLoad<Uint64T>(ptr, IntPtrConstant(0)); in LoadSwissNameDictionaryCtrlTableGroup()