Lines Matching defs:Allocate
357 // Allocate common symbols
752 // Allocate memory for the section
829 uintptr_t Allocate;
858 Allocate = DataSize + PaddingSize + StubBufSize;
859 if (!Allocate)
860 Allocate = 1;
862 auto TLSSection = MemMgr.allocateTLSSection(Allocate, Alignment.value(),
867 Addr = MemMgr.allocateCodeSection(Allocate, Alignment.value(), SectionID,
870 Addr = MemMgr.allocateDataSection(Allocate, Alignment.value(), SectionID,
898 << " Allocate: " << Allocate << "\n");
903 Allocate = 0;
909 << " Allocate: " << Allocate << "\n");
913 SectionEntry(Name, Addr, DataSize, Allocate, (uintptr_t)pData));