Searched refs:StoreBytes (Results 1 – 1 of 1) sorted by relevance
1025 unsigned StoreBytes) { in StoreIntToMemory() argument1026 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory()1032 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory()1037 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory()1038 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory()1040 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory()1044 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory()1050 const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty); in StoreValueToMemory() local1057 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); in StoreValueToMemory()1070 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory()[all …]