Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/LD/
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()
/frameworks/av/services/audioflinger/
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()
/frameworks/compile/mclinker/lib/Object/
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()