Searched refs:StoreBytes (Results 1 – 3 of 3) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 824 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/ |
D | ExecutionEngine.cpp | 1020 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 …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 1026 unsigned StoreBytes) { in StoreIntToMemory() argument 1027 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory() 1033 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory() 1038 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory() 1039 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory() 1041 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory() 1045 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory() 1051 const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty); in StoreValueToMemory() local 1058 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); in StoreValueToMemory() 1071 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory() [all …]
|