HomeSort by relevance Sort by last modified time
    Searched full:storebytes (Results 1 - 1 of 1) sorted by null

  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 838 /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
841 unsigned StoreBytes) {
842 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
848 memcpy(Dst, Src, StoreBytes);
853 while (StoreBytes > sizeof(uint64_t)) {
854 StoreBytes -= sizeof(uint64_t);
856 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
860 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
866 const unsigned StoreBytes = getDataLayout()->getTypeStoreSize(Ty)
    [all...]

Completed in 85 milliseconds