Searched refs:StoreBytes (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp3026 /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
3029 unsigned StoreBytes) {
3030 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
3036 memcpy(Dst, Src, StoreBytes);
3041 while (StoreBytes > sizeof(uint64_t)) {
3042 StoreBytes -= sizeof(uint64_t);
3044 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
3048 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1043 const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty); local
1050 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes);
1063 if (StoreBytes != sizeof(PointerTy))
1064 memset(&(Ptr->PointerVal), 0, StoreBytes);
1086 std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h2302 /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
2304 void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes);

Completed in 171 milliseconds