Searched refs:StoreBytes (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.1-release/contrib/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp967 /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
970 unsigned StoreBytes) {
971 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
977 memcpy(Dst, Src, StoreBytes);
982 while (StoreBytes > sizeof(uint64_t)) {
983 StoreBytes -= sizeof(uint64_t);
985 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
989 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
995 const unsigned StoreBytes local
969 StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes) argument
[all...]

Completed in 53 milliseconds