Home | History | Annotate | Download | only in ExecutionEngine

Lines Matching defs:Dst

1022 /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
1024 static void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst,
1032 memcpy(Dst, Src, StoreBytes);
1040 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
1044 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
1099 uint8_t *Dst = reinterpret_cast<uint8_t *>(
1105 memcpy(Dst, Src, LoadBytes);
1114 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t));
1115 Dst += sizeof(uint64_t);
1118 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes);