Searched refs:StoreBytes (Results 1 – 3 of 3) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 1024 const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty); in StoreValueToMemory() local 1031 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); in StoreValueToMemory() 1044 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory() 1045 memset(&(Ptr->PointerVal), 0, StoreBytes); in StoreValueToMemory() 1066 std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr); in StoreValueToMemory()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APInt.cpp | 3066 unsigned StoreBytes) { in StoreIntToMemory() argument 3067 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory() 3073 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory() 3078 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory() 3079 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory() 3081 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory() 3085 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | APInt.h | 2282 void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes);
|