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

/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp831 /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
834 unsigned StoreBytes) {
835 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
841 memcpy(Dst, Src, StoreBytes);
846 while (StoreBytes > sizeof(uint64_t)) {
847 StoreBytes -= sizeof(uint64_t);
849 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
853 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
859 const unsigned StoreBytes local
833 StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes) argument
[all...]

Completed in 57 milliseconds