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

/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1017 /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
1020 unsigned StoreBytes) {
1021 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
1027 memcpy(Dst, Src, StoreBytes);
1032 while (StoreBytes > sizeof(uint64_t)) {
1033 StoreBytes -= sizeof(uint64_t);
1035 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
1039 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
1045 const unsigned StoreBytes local
1019 StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DExecutionEngine.cpp821 /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
824 unsigned StoreBytes) {
825 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
831 memcpy(Dst, Src, StoreBytes);
836 while (StoreBytes > sizeof(uint64_t)) {
837 StoreBytes -= sizeof(uint64_t);
839 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
843 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
849 const unsigned StoreBytes local
823 StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes) argument
[all...]

Completed in 78 milliseconds