Searched refs:LoadBytes (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp3087 /// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting
3090 unsigned LoadBytes) {
3091 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!");
3098 memcpy(Dst, Src, LoadBytes);
3104 while (LoadBytes > sizeof(uint64_t)) {
3105 LoadBytes -= sizeof(uint64_t);
3107 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t));
3111 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1082 const unsigned LoadBytes = getDataLayout().getTypeStoreSize(Ty); local
1088 LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h2287 /// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting
2289 void LoadIntFromMemory(APInt &IntVal, const uint8_t *Src, unsigned LoadBytes);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp9520 uint64_t LoadBytes = Mem->getMemoryVT().getSizeInBits()/8; local
9521 if (ShiftAmount == Log2_32(LoadBytes))

Completed in 116 milliseconds