Lines Matching defs:StoreBytes
1017 /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
1020 unsigned StoreBytes) {
1021 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
1027 memcpy(Dst, Src, StoreBytes);
1032 while (StoreBytes > sizeof(uint64_t)) {
1033 StoreBytes -= sizeof(uint64_t);
1035 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
1039 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
1045 const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty);
1052 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes);
1065 if (StoreBytes != sizeof(PointerTy))
1066 memset(&(Ptr->PointerVal), 0, StoreBytes);
1087 std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr);