Home
last modified time | relevance | path

Searched refs:NumPages (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/sys/external/bsd/gnu-efi/dist/apps/
H A DAllocPages.c120 INTN NumPages = -1; in efi_main() local
153 NumPages = xtoi(argv[3]); in efi_main()
164 if ( (NumPages < 0) || (NumPages > MAX_NUM_PAGES) ) { in efi_main()
176 Print(L"AllocatPage(%d,%d,%d,%lx)\n", AllocType, MemType, NumPages, Addr); in efi_main()
178 efi_status = uefi_call_wrapper(BS->AllocatePages, 4, AllocType, MemType, NumPages, &Addr); in efi_main()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DMemory.inc118 const size_t NumPages = (NumBytes+PageSize-1)/PageSize;
124 void *Addr = ::mmap(reinterpret_cast<void *>(Start), PageSize*NumPages, Protect,
147 Result.AllocatedSize = PageSize*NumPages;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DWasmObjectWriter.cpp788 uint64_t NumPages = (DataSize + wasm::WasmPageSize - 1) / wasm::WasmPageSize; in writeImportSection() local
809 encodeULEB128(NumPages, W->OS); // initial in writeImportSection()