HomeSort by relevance Sort by last modified time
    Searched refs:StoreBytes (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 821 /// 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 = getTargetData()->getTypeStoreSize(Ty)
    [all...]
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.cpp 599 const unsigned int StoreBytes = mpTD->getTypeStoreSize(Ty);
604 bccAssert(((IntVal.getBitWidth() + 7) / 8 >= StoreBytes) &&
613 memcpy(Addr, Src, StoreBytes);
622 unsigned int i = StoreBytes;
649 if (StoreBytes != sizeof(llvm::PointerTy))
650 memset(Addr, 0, StoreBytes);
661 reinterpret_cast<uint8_t*>(Addr) + StoreBytes);
    [all...]

Completed in 3643 milliseconds