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

/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp890 /// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting
892 static void LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes) { argument
893 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!");
899 memcpy(Dst, Src, LoadBytes);
905 while (LoadBytes > sizeof(uint64_t)) {
906 LoadBytes -= sizeof(uint64_t);
908 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t));
912 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes);
921 const unsigned LoadBytes local
[all...]

Completed in 18 milliseconds