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

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 383 uint64_t CommonSize = 0;
391 CommonSize += Size;
394 if (CommonSize != 0) {
395 RWSectionSizes.push_back(CommonSize);
479 uint64_t CommonSize = 0;
501 CommonSize += Align + Size;
507 uint8_t *Addr = MemMgr.allocateDataSection(CommonSize, sizeof(void *),
512 Sections.push_back(SectionEntry("<common symbols>", Addr, CommonSize, 0));
513 memset(Addr, 0, CommonSize);
516 << format("%p", Addr) << " DataSize: " << CommonSize << "\n")
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 698 /// CommonSize - The size of the symbol, if it is 'common'.
699 uint64_t CommonSize;
764 CommonSize = Size;
771 return CommonSize;
    [all...]

Completed in 61 milliseconds