Searched refs:LoadBytes (Results 1 – 4 of 4) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | APInt.cpp | 3091 unsigned LoadBytes) { in LoadIntFromMemory() argument 3092 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!"); in LoadIntFromMemory() 3099 memcpy(Dst, Src, LoadBytes); in LoadIntFromMemory() 3105 while (LoadBytes > sizeof(uint64_t)) { in LoadIntFromMemory() 3106 LoadBytes -= sizeof(uint64_t); in LoadIntFromMemory() 3108 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t)); in LoadIntFromMemory() 3112 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes); in LoadIntFromMemory()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/ |
| H A D | ExecutionEngine.cpp | 1071 const unsigned LoadBytes = getDataLayout().getTypeStoreSize(Ty); in LoadValueFromMemory() local 1077 LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes); in LoadValueFromMemory()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 2299 void LoadIntFromMemory(APInt &IntVal, const uint8_t *Src, unsigned LoadBytes);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 10964 uint64_t LoadBytes = Mem->getMemoryVT().getSizeInBits()/8; in shouldReduceLoadWidth() local 10965 if (ShiftAmount == Log2_32(LoadBytes)) in shouldReduceLoadWidth()
|