Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1020 const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty); in StoreValueToMemory() local
1027 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); in StoreValueToMemory()
1040 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory()
1041 memset(&(Ptr->PointerVal), 0, StoreBytes); in StoreValueToMemory()
1063 std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr); in StoreValueToMemory()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPInt.cpp3065 unsigned StoreBytes) { in StoreIntToMemory() argument
3066 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory()
3072 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory()
3077 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory()
3078 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory()
3080 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory()
3084 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DAPInt.h2295 void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes);