Lines Matching refs:StoreBytes
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()
1066 memset(&(Ptr->PointerVal), 0, StoreBytes); in StoreValueToMemory()
1087 std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr); in StoreValueToMemory()