Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1039 const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty); in StoreValueToMemory() local
1046 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); in StoreValueToMemory()
1059 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory()
1060 memset(&(Ptr->PointerVal), 0, StoreBytes); in StoreValueToMemory()
1082 std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr); in StoreValueToMemory()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp3052 unsigned StoreBytes) { in StoreIntToMemory() argument
3053 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory()
3059 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory()
3064 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory()
3065 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory()
3067 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory()
3071 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h2416 unsigned StoreBytes);