Lines Matching defs:StoreBytes
1022 /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
1025 unsigned StoreBytes) {
1026 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
1032 memcpy(Dst, Src, StoreBytes);
1037 while (StoreBytes > sizeof(uint64_t)) {
1038 StoreBytes -= sizeof(uint64_t);
1040 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
1044 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
1050 const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty);
1057 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes);
1070 if (StoreBytes != sizeof(PointerTy))
1071 memset(&(Ptr->PointerVal), 0, StoreBytes);
1092 std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr);