/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
D | endian_test.cc | 91 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/ |
D | parse_context.cc | 230 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()
|
D | parse_context.h | 451 T UnalignedLoad(const char* p) { 527 uint32 value = UnalignedLoad<uint16>(*ptr); 678 uint64 value = UnalignedLoad<uint64>(ptr); 698 uint32 value = UnalignedLoad<uint32>(ptr);
|
D | extension_set_inl.h | 124 auto value = UnalignedLoad<CPPTYPE>(ptr); \ in ParseFieldWithExtensionInfo()
|
D | wrappers.pb.cc | 375 value_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad<double>(ptr); in _InternalParse() 570 value_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad<float>(ptr); in _InternalParse()
|
D | struct.pb.cc | 630 _internal_set_number_value(::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad<double>(ptr)); in _InternalParse()
|
D | map_type_handler.h | 480 *value = UnalignedLoad<F>(ptr);
|
D | wire_format.cc | 941 value = UnalignedLoad<CPPTYPE>(ptr); \ in _InternalParseAndMergeField()
|
D | descriptor.pb.cc | 9792 double_value_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad<double>(ptr); in _InternalParse()
|
/third_party/node/deps/v8/src/compiler/ |
D | decompression-optimizer.cc | 220 machine()->UnalignedLoad(compressed_load_rep)); in ChangeLoad()
|
D | raw-machine-assembler.h | 210 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));
|
D | machine-operator.cc | 930 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
|
D | code-assembler.h | 776 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,
|
D | graph-assembler.cc | 456 : machine()->UnalignedLoad(type); in LoadUnaligned()
|
D | memory-lowering.cc | 392 ? machine()->UnalignedLoad(machine_type) in ReduceLoadFromObject()
|
D | machine-operator.h | 952 const Operator* UnalignedLoad(LoadRepresentation rep); in NON_EXPORTED_BASE()
|
D | code-assembler.cc | 757 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()
|
D | opcodes.h | 752 V(UnalignedLoad) \
|
D | int64-lowering.cc | 254 machine()->UnalignedLoad(MachineType::Int32())); in LowerNode()
|
D | wasm-compiler.cc | 3898 return mcgraph()->machine()->UnalignedLoad(mach_type); in GetSafeLoadOperator()
|
/third_party/astc-encoder/Source/UnitTest/ |
D | test_simd.cpp | 262 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/ |
D | code-stub-assembler.cc | 15850 TNode<Uint64T> data = UnalignedLoad<Uint64T>(ptr, IntPtrConstant(0)); in LoadSwissNameDictionaryCtrlTableGroup()
|