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

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

Completed in 100 milliseconds