Home
last modified time | relevance | path

Searched refs:highOffsetBits (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/modules/NeuralNetworks/common/
H A DTypeUtils.cpp153 const uint32_t highOffsetBits = *reinterpret_cast<const uint32_t*>(&highBits); in getOffsetFromInts() local
154 const uint64_t offset = lowOffsetBits | (static_cast<uint64_t>(highOffsetBits) << 32); in getOffsetFromInts()
163 const int32_t highOffsetBits = *reinterpret_cast<const int32_t*>(&highBits); in getIntsFromOffset() local
164 return std::make_pair(lowOffsetBits, highOffsetBits); in getIntsFromOffset()
/aosp12/hardware/interfaces/neuralnetworks/utils/common/src/
H A DCommonUtils.cpp118 const auto [lowOffsetBits, highOffsetBits] = nn::getIntsFromOffset(memory.offset); in createHidlMemoryFrom()
119 const std::vector<int> ints = {memory.prot, lowOffsetBits, highOffsetBits}; in createHidlMemoryFrom()