Home
last modified time | relevance | path

Searched refs:RequiredSize (Results 1 – 7 of 7) sorted by relevance

/src/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c302 ACPI_SIZE RequiredSize; in AcpiNsHandleToPathname() local
316 RequiredSize = AcpiNsBuildNormalizedPath (Node, NULL, 0, NoTrailing); in AcpiNsHandleToPathname()
317 if (!RequiredSize) in AcpiNsHandleToPathname()
324 Status = AcpiUtInitializeBuffer (Buffer, RequiredSize); in AcpiNsHandleToPathname()
333 (UINT32) RequiredSize, NoTrailing); in AcpiNsHandleToPathname()
336 (char *) Buffer->Pointer, (UINT32) RequiredSize)); in AcpiNsHandleToPathname()
/src/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_fake_stack.cpp51 uptr size = RequiredSize(stack_size_log); in Create()
61 (void *)(p + FakeStack::RequiredSize(stack_size_log)), stack_size_log, in Create()
75 uptr size = RequiredSize(stack_size_log_); in Destroy()
81 PoisonShadow(reinterpret_cast<uptr>(this), RequiredSize(stack_size_log()), in PoisonAll()
119 uptr end = reinterpret_cast<uptr>(this) + RequiredSize(stack_size_log); in AddrIsInFakeStack()
H A Dasan_fake_stack.h80 static uptr RequiredSize(uptr stack_size_log) { in RequiredSize() function
/src/sys/contrib/dev/acpica/common/
H A Ddmrestag.c767 ACPI_SIZE RequiredSize; in AcpiGetTagPathname() local
816 RequiredSize = AcpiNsBuildNormalizedPath (BufferNode, NULL, 0, FALSE); in AcpiGetTagPathname()
817 if (!RequiredSize) in AcpiGetTagPathname()
822 Pathname = ACPI_ALLOCATE_ZEROED (RequiredSize + ACPI_PATH_SEGMENT_LENGTH); in AcpiGetTagPathname()
829 RequiredSize, FALSE); in AcpiGetTagPathname()
844 PathnameEnd = Pathname + (RequiredSize - ACPI_NAMESEG_SIZE - 1); in AcpiGetTagPathname()
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DSectionMemoryManager.cpp49 uintptr_t RequiredSize = Alignment * ((Size + Alignment - 1) / Alignment + 1); in allocateSection() local
67 if (FreeMB.Free.allocatedSize() >= RequiredSize) { in allocateSection()
105 Purpose, RequiredSize, &MemGroup.Near, in allocateSection()
/src/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryByteStream.h183 uint64_t RequiredSize = Offset + Buffer.size(); in writeBytes() local
184 if (RequiredSize > Data.size()) in writeBytes()
185 Data.resize(RequiredSize); in writeBytes()
/src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86AsmPrinter.h52 void reset(unsigned RequiredSize) { in reset() argument
53 RequiredShadowSize = RequiredSize; in reset()