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

  /external/llvm/include/llvm/MC/
MCSymbol.h 130 uint64_t CommonSize;
331 return CommonSize;
340 CommonSize = Size;
365 if(CommonSize != Size || getCommonAlignment() != Align)
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 394 uint64_t CommonSize = 0;
401 CommonSize += Size;
404 if (CommonSize != 0) {
405 RWSectionSizes.push_back(CommonSize);
488 uint64_t CommonSize = 0;
509 CommonSize += Align + Size;
515 uint8_t *Addr = MemMgr.allocateDataSection(CommonSize, sizeof(void *),
521 SectionEntry("<common symbols>", Addr, CommonSize, CommonSize, 0));
522 memset(Addr, 0, CommonSize);
    [all...]
  /external/llvm/tools/gold/
gold-plugin.cpp 98 unsigned CommonSize = 0;
465 if (Size >= Res.CommonSize) {
466 Res.CommonSize = Size;

Completed in 520 milliseconds