Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPInt.cpp3010 unsigned StoreBytes) { in StoreIntToMemory() argument
3011 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory()
3017 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory()
3022 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory()
3023 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory()
3025 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory()
3029 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPInt.h2308 void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes);