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 830 /// 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 = getTargetData()->getTypeStoreSize(Ty)
    [all...]

Completed in 336 milliseconds