Home
last modified time | relevance | path

Searched refs:tmp_data (Results 1 – 6 of 6) sorted by relevance

/aosp12/frameworks/compile/mclinker/lib/LD/
H A DRelocationFactory.cpp48 uint32_t tmp_data; in produce() local
52 pFragRef.memcpy(&tmp_data, 4); in produce()
53 tmp_data = mcld::bswap32(tmp_data); in produce()
54 target_data = tmp_data; in produce()
/aosp12/system/nvram/messages/
H A Dblob.cpp67 uint8_t* tmp_data = static_cast<uint8_t*>(realloc(data_, size)); in Resize() local
68 if (size != 0 && !tmp_data) { in Resize()
72 data_ = tmp_data; in Resize()
/aosp12/frameworks/av/media/libaudioprocessing/
H A DAudioResamplerFirProcess.h201 const TI *tmp_data = sP; // tmp_ptr seems to work better in ProcessBase() local
202 accum.acc(c, tmp_data); in ProcessBase()
209 tmp_data = sN; // tmp_ptr seems faster than directly using sN in ProcessBase()
210 accum.acc(c, tmp_data); in ProcessBase()
/aosp12/system/nvram/messages/include/nvram/messages/
H A Dvector.h63 ElementType* tmp_data = first.data_; in swap() local
67 second.data_ = tmp_data; in swap()
/aosp12/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp963 uint64_t tmp_data = 0; in writeRelocationResult() local
971 tmp_data = mcld::bswap16(pReloc.target()); in writeRelocationResult()
972 std::memcpy(target_addr, &tmp_data, 2); in writeRelocationResult()
976 tmp_data = mcld::bswap32(pReloc.target()); in writeRelocationResult()
977 std::memcpy(target_addr, &tmp_data, 4); in writeRelocationResult()
981 tmp_data = mcld::bswap64(pReloc.target()); in writeRelocationResult()
982 std::memcpy(target_addr, &tmp_data, 8); in writeRelocationResult()
/aosp12/hardware/google/camera/common/sensor_listener/
H A Dgoog_gralloc_wrapper.cc204 [&buffer, &data](const auto& tmp_error, const auto& tmp_data, in Lock()
210 data = tmp_data; in Lock()