Home
last modified time | relevance | path

Searched refs:Granularity (Results 1 – 25 of 31) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DASanStackFrameLayout.cpp41 static size_t VarAndRedzoneSize(size_t Size, size_t Granularity, in VarAndRedzoneSize() argument
50 return alignTo(std::max(Res, 2 * Granularity), Alignment); in VarAndRedzoneSize()
55 size_t Granularity, size_t MinHeaderSize) { in ComputeASanStackFrameLayout() argument
56 assert(Granularity >= 8 && Granularity <= 64 && in ComputeASanStackFrameLayout()
57 (Granularity & (Granularity - 1)) == 0); in ComputeASanStackFrameLayout()
59 MinHeaderSize >= Granularity); in ComputeASanStackFrameLayout()
68 Layout.Granularity = Granularity; in ComputeASanStackFrameLayout()
69 Layout.FrameAlignment = std::max(Granularity, Vars[0].Alignment); in ComputeASanStackFrameLayout()
70 size_t Offset = std::max(std::max(MinHeaderSize, Granularity), in ComputeASanStackFrameLayout()
72 assert((Offset % Granularity) == 0); in ComputeASanStackFrameLayout()
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/resources/
H A Drsaddr.c74 * Address Granularity
80 {ACPI_RSC_MOVE16, ACPI_RS_OFFSET (Data.Address16.Address.Granularity),
81 AML_OFFSET (Address16.Granularity),
114 * Address Granularity
120 {ACPI_RSC_MOVE32, ACPI_RS_OFFSET (Data.Address32.Address.Granularity),
121 AML_OFFSET (Address32.Granularity),
154 * Address Granularity
160 {ACPI_RSC_MOVE64, ACPI_RS_OFFSET (Data.Address64.Address.Granularity),
161 AML_OFFSET (Address64.Granularity),
199 * Address Granularity
[all...]
H A Drsdumpinfo.c164 …{ACPI_RSD_UINT16, ACPI_RSD_OFFSET (Address16.Address.Granularity), "Granularity", …
177 …{ACPI_RSD_UINT32, ACPI_RSD_OFFSET (Address32.Address.Granularity), "Granularity", …
190 …{ACPI_RSD_UINT64, ACPI_RSD_OFFSET (Address64.Address.Granularity), "Granularity", …
203 …{ACPI_RSD_UINT64, ACPI_RSD_OFFSET (ExtAddress64.Address.Granularity), "Granularity", …
H A Drsxface.c64 ACPI_COPY_FIELD(Out, In, Address.Granularity); \
/netbsd-src/sys/external/bsd/acpica/dist/tests/misc/
H A Dbadcode.asl269 0x0000, // Granularity
278 0x0000, // Granularity
287 0x00000000, // Granularity
294 // Granularity must be (power-of-two -1)
304 0x0000000000000003, // Granularity
313 0x0000000000000001, // Granularity
322 0x00000000, // Granularity
331 0x00000001, // Granularity
340 0x00000001, // Granularity
347 // Granularity must be zero if non-zero length, min/max fixed
[all …]
H A Dgrammar.asl250 0x0000, // Address Space Granularity
256 0x0000, // Address Space Granularity
262 0x0000, // Address Space Granularity
269 0x0000, // Address Space Granularity
276 0x0000, // Address Space Granularity
283 0x00000000, // Address Space Granularity
290 0x00000000, // Address Space Granularity
297 0x00000000, // Address Space Granularity
303 0x0000000000000000, // Address Space Granularity
310 0x0000000000000000, // Address Space Granularity
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
H A DMemory.inc113 size_t Granularity = DefaultGranularity;
118 Granularity = LargePageGranularity;
121 size_t NumBlocks = (NumBytes + Granularity - 1) / Granularity;
129 if (Start && Start % Granularity != 0)
130 Start += Granularity - Start % Granularity;
134 size_t AllocSize = NumBlocks * Granularity;
/netbsd-src/sys/external/bsd/acpica/dist/compiler/
H A Daslrestype2e.c142 Descriptor->ExtAddress64.Granularity = InitializerOp->Asl.Value.Integer; in RsDoExtendedIoDescriptor()
144 CurrentByteOffset + ASL_RESDESC_OFFSET (ExtAddress64.Granularity)); in RsDoExtendedIoDescriptor()
220 Descriptor->ExtAddress64.Granularity, in RsDoExtendedIoDescriptor()
322 Descriptor->ExtAddress64.Granularity = InitializerOp->Asl.Value.Integer; in RsDoExtendedMemoryDescriptor()
324 CurrentByteOffset + ASL_RESDESC_OFFSET (ExtAddress64.Granularity)); in RsDoExtendedMemoryDescriptor()
401 Descriptor->ExtAddress64.Granularity, in RsDoExtendedMemoryDescriptor()
500 Descriptor->ExtAddress64.Granularity = InitializerOp->Asl.Value.Integer; in RsDoExtendedSpaceDescriptor()
502 CurrentByteOffset + ASL_RESDESC_OFFSET (ExtAddress64.Granularity)); in RsDoExtendedSpaceDescriptor()
564 Descriptor->ExtAddress64.Granularity, in RsDoExtendedSpaceDescriptor()
H A Daslresource.c183 * Granularity - Address granularity value
215 UINT64 Granularity, in RsLargeAddressCheck() argument
243 if (!Minimum && !Maximum && !Length && !Granularity) in RsLargeAddressCheck()
270 if (Granularity) in RsLargeAddressCheck()
272 if ((Granularity + 1) & in RsLargeAddressCheck()
273 Granularity) in RsLargeAddressCheck()
294 if (Granularity & Length) in RsLargeAddressCheck()
302 /* Fixed length, fixed location. Granularity must be zero */ in RsLargeAddressCheck()
304 if (Granularity != 0) in RsLargeAddressCheck()
348 if (Granularity in RsLargeAddressCheck()
[all...]
H A Daslrestype2q.c149 case 5: /* Address Granularity */ in RsDoQwordIoDescriptor()
151 Descriptor->Address64.Granularity = InitializerOp->Asl.Value.Integer; in RsDoQwordIoDescriptor()
153 CurrentByteOffset + ASL_RESDESC_OFFSET (Address64.Granularity)); in RsDoQwordIoDescriptor()
270 Descriptor->Address64.Granularity, in RsDoQwordIoDescriptor()
377 case 6: /* Address Granularity */ in RsDoQwordMemoryDescriptor()
379 Descriptor->Address64.Granularity = InitializerOp->Asl.Value.Integer; in RsDoQwordMemoryDescriptor()
381 CurrentByteOffset + ASL_RESDESC_OFFSET (Address64.Granularity)); in RsDoQwordMemoryDescriptor()
499 Descriptor->Address64.Granularity, in RsDoQwordMemoryDescriptor()
571 Descriptor->Address32.Granularity = 0x0; in RsDoQwordSpaceDescriptor()
654 (UINT64) Descriptor->Address32.Granularity, in RsDoQwordSpaceDescriptor()
[all...]
H A Daslrestype2w.c149 case 5: /* Address Granularity */ in RsDoWordIoDescriptor()
151 Descriptor->Address16.Granularity = (UINT16) InitializerOp->Asl.Value.Integer; in RsDoWordIoDescriptor()
153 CurrentByteOffset + ASL_RESDESC_OFFSET (Address16.Granularity)); in RsDoWordIoDescriptor()
270 (UINT64) Descriptor->Address16.Granularity, in RsDoWordIoDescriptor()
363 case 4: /* Address Granularity */ in RsDoWordBusNumberDescriptor()
365 Descriptor->Address16.Granularity = in RsDoWordBusNumberDescriptor()
368 CurrentByteOffset + ASL_RESDESC_OFFSET (Address16.Granularity)); in RsDoWordBusNumberDescriptor()
475 (UINT64) Descriptor->Address16.Granularity, in RsDoWordBusNumberDescriptor()
547 Descriptor->Address32.Granularity = 0x0; in RsDoWordSpaceDescriptor()
630 (UINT64) Descriptor->Address32.Granularity, in RsDoWordSpaceDescriptor()
[all...]
H A Daslrestype2d.c122 Descriptor->Address32.Granularity = 0x0; in RsDoDwordIoDescriptor()
205 (UINT64) Descriptor->Address32.Granularity, in RsDoDwordIoDescriptor()
305 case 5: /* Address Granularity */ in RsDoDwordMemoryDescriptor()
307 Descriptor->Address32.Granularity = in RsDoDwordMemoryDescriptor()
310 CurrentByteOffset + ASL_RESDESC_OFFSET (Address32.Granularity)); in RsDoDwordMemoryDescriptor()
435 (UINT64) Descriptor->Address32.Granularity, in RsDoDwordMemoryDescriptor()
543 case 6: /* Address Granularity */ in RsDoDwordSpaceDescriptor()
545 Descriptor->Address32.Granularity = in RsDoDwordSpaceDescriptor()
548 CurrentByteOffset + ASL_RESDESC_OFFSET (Address32.Granularity)); in RsDoDwordSpaceDescriptor()
670 (UINT64) Descriptor->Address32.Granularity, in RsDoDwordSpaceDescriptor()
[all...]
H A Daslcompiler.h1271 UINT64 Granularity,
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
H A DASanStackFrameLayout.h45 size_t Granularity; // Shadow granularity. member
54 size_t Granularity,
/netbsd-src/sys/external/bsd/acpica/dist/include/
H A Damlresrc.h342 UINT64 Granularity; member
358 UINT64 Granularity; member
371 UINT32 Granularity; member
384 UINT16 Granularity; member
H A Dacrestyp.h363 UINT16 Granularity; member
373 UINT32 Granularity; member
383 UINT64 Granularity; member
/netbsd-src/sys/external/bsd/acpica/dist/disassembler/
H A Ddmresrcl.c605 AcpiDmAddressFields (&Resource->Address16.Granularity, 16, Level); in AcpiDmWordDescriptor()
652 AcpiDmAddressFields (&Resource->Address32.Granularity, 32, Level); in AcpiDmDwordDescriptor()
699 AcpiDmAddressFields (&Resource->Address64.Granularity, 64, Level); in AcpiDmQwordDescriptor()
747 AcpiDmAddressFields (&Resource->ExtAddress64.Granularity, 64, Level); in AcpiDmExtendedDescriptor()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1539 MaybeAlign Alignment, unsigned Granularity, in doInstrumentAddress() argument
1547 (!Alignment || *Alignment >= Granularity || *Alignment >= TypeSize / 8)) in doInstrumentAddress()
1558 unsigned Granularity, uint32_t TypeSize, in instrumentMaskedLoadOrStore() argument
1589 Granularity, ElemTypeSize, IsWrite, SizeArgument, in instrumentMaskedLoadOrStore()
1637 unsigned Granularity = 1 << Mapping.Scale; in instrumentMop() local
1640 Addr, O.Alignment, Granularity, O.TypeSize, in instrumentMop()
1644 Granularity, O.TypeSize, O.IsWrite, nullptr, UseCalls, in instrumentMop()
1680 size_t Granularity = static_cast<size_t>(1) << Mapping.Scale; in createSlowPathCmp() local
1683 IRB.CreateAnd(AddrLong, ConstantInt::get(IntptrTy, Granularity - 1)); in createSlowPathCmp()
1773 size_t Granularity = 1ULL << Mapping.Scale; in instrumentAddress() local
[all …]
H A DMemProfiler.cpp134 Granularity = ClMappingGranularity; in ShadowMapping()
135 Mask = ~(Granularity - 1); in ShadowMapping()
139 int Granularity; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86LowerAMXType.cpp98 Value *getRowFromCol(Instruction *II, Value *V, unsigned Granularity);
102 unsigned Granularity) { in getRowFromCol() argument
111 ConstantInt *Gran = Builder.getInt16(Granularity); in getRowFromCol()
/netbsd-src/sys/dev/acpi/
H A Dacpi_resource.c270 res->Data.Address32.Address.Granularity); in acpi_resource_parse_callback()
285 res->Data.Address32.Address.Granularity); in acpi_resource_parse_callback()
324 res->Data.Address64.Address.Granularity); in acpi_resource_parse_callback()
339 res->Data.Address64.Address.Granularity); in acpi_resource_parse_callback()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/GlobalISel/
H A Dindex.rst31 * **Granularity** --- SelectionDAG and FastISel operate on individual basic
/netbsd-src/distrib/syspkg/notes/
H A DNOTES8 1. Package Granularity
H A DPROPOSAL9 1.2 Package Granularity
105 1.2 Package Granularity
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dwinioctl.d499 DWORD Granularity;

12