Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
DExecutionEngine.cpp824 unsigned StoreBytes) { in StoreIntToMemory() argument
825 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory()
831 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory()
836 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory()
837 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory()
839 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory()
843 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory()
849 const unsigned StoreBytes = getTargetData()->getTypeStoreSize(Ty); in StoreValueToMemory() local
853 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); in StoreValueToMemory()
866 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory()
[all …]
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp1020 unsigned StoreBytes) { in StoreIntToMemory() argument
1021 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory()
1027 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory()
1032 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory()
1033 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory()
1035 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory()
1039 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory()
1045 const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty); in StoreValueToMemory() local
1052 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); in StoreValueToMemory()
1065 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory()
[all …]