Home
last modified time | relevance | path

Searched refs:Width (Results 1 – 25 of 320) sorted by relevance

12345678910>>...13

/netbsd-src/sys/dev/acpi/acpica/
H A DOsdHardware.c72 AcpiOsReadPort(ACPI_IO_ADDRESS Address, UINT32 *Value, UINT32 Width) in AcpiOsReadPort() argument
75 switch (Width) { in AcpiOsReadPort()
101 AcpiOsWritePort(ACPI_IO_ADDRESS Address, UINT32 Value, UINT32 Width) in AcpiOsWritePort() argument
104 switch (Width) { in AcpiOsWritePort()
130 AcpiOsReadMemory(ACPI_PHYSICAL_ADDRESS Address, UINT64 *Value, UINT32 Width) in AcpiOsReadMemory() argument
135 LogicalAddress = AcpiOsMapMemory(Address, Width / 8); in AcpiOsReadMemory()
139 switch (Width) { in AcpiOsReadMemory()
160 AcpiOsUnmapMemory(LogicalAddress, Width / 8); in AcpiOsReadMemory()
171 AcpiOsWriteMemory(ACPI_PHYSICAL_ADDRESS Address, UINT64 Value, UINT32 Width) in AcpiOsWriteMemory() argument
176 LogicalAddress = AcpiOsMapMemory(Address, Width / 8); in AcpiOsWriteMemory()
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/utilities/
H A Dutprint.c79 INT32 Width,
295 INT32 Width, in AcpiUtFormatNumber() argument
333 Width--; in AcpiUtFormatNumber()
338 Width--; in AcpiUtFormatNumber()
343 Width--; in AcpiUtFormatNumber()
348 Width--; in AcpiUtFormatNumber()
351 Width--; in AcpiUtFormatNumber()
367 Width -= Precision; in AcpiUtFormatNumber()
373 while (--Width >= 0) in AcpiUtFormatNumber()
393 while (--Width >= 0) in AcpiUtFormatNumber()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ShuffleDecodeConstantPool.cpp116 void DecodePSHUFBMask(const Constant *C, unsigned Width, in DecodePSHUFBMask() argument
118 assert((Width == 128 || Width == 256 || Width == 512) && in DecodePSHUFBMask()
119 C->getType()->getPrimitiveSizeInBits() >= Width && in DecodePSHUFBMask()
128 unsigned NumElts = Width / 8; in DecodePSHUFBMask()
154 void DecodeVPERMILPMask(const Constant *C, unsigned ElSize, unsigned Width, in DecodeVPERMILPMask() argument
156 assert((Width == 128 || Width == 256 || Width == 512) && in DecodeVPERMILPMask()
157 C->getType()->getPrimitiveSizeInBits() >= Width && in DecodeVPERMILPMask()
167 unsigned NumElts = Width / ElSize; in DecodeVPERMILPMask()
190 unsigned Width, SmallVectorImpl<int> &ShuffleMask) { in DecodeVPERMIL2PMask() argument
194 assert((MaskTySize == 128 || MaskTySize == 256) && Width >= MaskTySize && in DecodeVPERMIL2PMask()
[all …]
H A DX86ShuffleDecodeConstantPool.h26 void DecodePSHUFBMask(const Constant *C, unsigned Width,
30 void DecodeVPERMILPMask(const Constant *C, unsigned ElSize, unsigned Width,
35 unsigned Width, SmallVectorImpl<int> &ShuffleMask);
38 void DecodeVPPERMMask(const Constant *C, unsigned Width,
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DFormat.h133 : Str(S), Width(W), Justify(J) {}
137 unsigned Width;
145 inline FormattedString left_justify(StringRef Str, unsigned Width) {
146 return FormattedString(Str, Width, FormattedString::JustifyLeft);
152 inline FormattedString right_justify(StringRef Str, unsigned Width) {
153 return FormattedString(Str, Width, FormattedString::JustifyRight);
159 inline FormattedString center_justify(StringRef Str, unsigned Width) {
160 return FormattedString(Str, Width, FormattedString::JustifyCenter);
167 unsigned Width;
176 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
[all …]
H A DScaledNumber.h83 const int Width = getWidth<DigitsT>(); variable
84 if (Width == 64 || Digits <= std::numeric_limits<DigitsT>::max())
88 int Shift = 64 - Width - countLeadingZeros(Digits);
423 static void dump(uint64_t D, int16_t E, int Width);
424 static raw_ostream &print(raw_ostream &OS, uint64_t D, int16_t E, int Width,
426 static std::string toString(uint64_t D, int16_t E, int Width,
502 static constexpr int Width = sizeof(DigitsType) * 8; variable
503 static_assert(Width <= 64, "invalid integer width for digits");
545 if (Scale > 0 || Scale <= -Width) in isOne()
596 return ScaledNumberBase::toString(Digits, Scale, Width, Precision);
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/tools/examples/
H A Dextables.c337 [0001] Duty Cycle Width : 00
375 [0001] Bit Width : 08
377 [0001] Encoded Access Width : 01 [Byte Access:8]
386 [0001] Bit Width : 20
388 [0001] Encoded Access Width : 02 [Word Access:16]
393 [0001] Bit Width : 00
395 [0001] Encoded Access Width : 00 [Undefined/Legacy]
400 [0001] Bit Width : 10
402 [0001] Encoded Access Width : 02 [Word Access:16]
407 [0001] Bit Width : 00
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DAPFixedPoint.h35 FixedPointSemantics(unsigned Width, unsigned Scale, bool IsSigned, in FixedPointSemantics() argument
37 : Width(Width), Scale(Scale), IsSigned(IsSigned), in FixedPointSemantics()
39 assert(Width >= Scale && "Not enough room for the scale"); in FixedPointSemantics()
44 unsigned getWidth() const { return Width; } in getWidth()
57 return Width - Scale - 1; in getIntegralBits()
59 return Width - Scale; in getIntegralBits()
79 static FixedPointSemantics GetIntegerSemantics(unsigned Width, in GetIntegerSemantics() argument
81 return FixedPointSemantics(Width, /*Scale=*/0, IsSigned, in GetIntegerSemantics()
87 unsigned Width : 16;
/netbsd-src/sys/external/bsd/gnu-efi/dist/lib/
H A Dhw.c76 IN EFI_IO_WIDTH Width, in ReadPort() argument
83 … Status = uefi_call_wrapper(GlobalIoFncs->Io.Read, 5, GlobalIoFncs, Width, (UINT64)Port, 1, &Data); in ReadPort()
91 IN EFI_IO_WIDTH Width, in WritePort() argument
98 …Status = uefi_call_wrapper(GlobalIoFncs->Io.Write, 5, GlobalIoFncs, Width, (UINT64)Port, 1, &Data); in WritePort()
106 IN EFI_IO_WIDTH Width, in ReadPciConfig() argument
113 …Status = uefi_call_wrapper(GlobalIoFncs->Pci.Read, 5, GlobalIoFncs, Width, (UINT64)Address, 1, &Da… in ReadPciConfig()
121 IN EFI_IO_WIDTH Width, in WritePciConfig() argument
128 …Status = uefi_call_wrapper(GlobalIoFncs->Pci.Write, 5, GlobalIoFncs, Width, (UINT64)Address, 1, &D… in WritePciConfig()
/netbsd-src/external/gpl2/groff/dist/font/devps/generate/
H A Dfreeeuro.sfd28 Width: 750
64 Width: 750
100 Width: 750
133 Width: 750
166 Width: 741
203 Width: 800
240 Width: 734
273 Width: 800
307 Width: 756
343 Width: 796
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
H A DSectionSizes.cpp20 size_t Width = SectionNameTitle.size(); in getNameColumnWidth() local
22 Width = std::max(Width, It.first.size()); in getNameColumnWidth()
23 return Width; in getNameColumnWidth()
29 size_t Width = SectionSizeTitle.size(); in getSizeColumnWidth() local
32 Width = std::max(Width, NumWidth); in getSizeColumnWidth()
34 return Width; in getSizeColumnWidth()
/netbsd-src/sys/external/bsd/acpica/dist/os_specific/service_layers/
H A Doszephyr.c246 * Width - Number of bits (8,16,32, or 64)
249 * as a 64-bit integer, regardless of the read Width.
259 UINT32 Width) in AcpiOsReadMemory()
261 switch (Width) in AcpiOsReadMemory() argument
298 * Width - Number of bits (8,16,32, or 64)
310 UINT32 Width) in AcpiOsWriteMemory()
312 switch (Width) in AcpiOsWriteMemory() argument
349 * Width - Number of bits
361 UINT32 Width) in AcpiOsReadPort()
364 switch (Width) in AcpiOsReadPort()
363 AcpiOsReadPort(ACPI_IO_ADDRESS Address,UINT32 * Value,UINT32 Width) AcpiOsReadPort() argument
416 AcpiOsWritePort(ACPI_IO_ADDRESS Address,UINT32 Value,UINT32 Width) AcpiOsWritePort() argument
471 AcpiOsWritePciConfiguration(ACPI_PCI_ID * PciId,UINT32 Register,UINT64 Value,UINT32 Width) AcpiOsWritePciConfiguration() argument
533 AcpiOsReadPciConfiguration(ACPI_PCI_ID * PciId,UINT32 Register,UINT64 * Value,UINT32 Width) AcpiOsReadPciConfiguration() argument
[all...]
H A Doswinxf.c1200 UINT32 Width) in AcpiOsReadPciConfiguration() argument
1228 UINT32 Width) in AcpiOsWritePciConfiguration() argument
1253 UINT32 Width) in AcpiOsReadPort() argument
1258 switch (Width) in AcpiOsReadPort()
1277 ACPI_ERROR ((AE_INFO, "Bad width parameter: %X", Width)); in AcpiOsReadPort()
1303 UINT32 Width) in AcpiOsWritePort() argument
1308 if ((Width == 8) || (Width == 16) || (Width == 32)) in AcpiOsWritePort()
1313 ACPI_ERROR ((AE_INFO, "Bad width parameter: %X", Width)); in AcpiOsWritePort()
1337 UINT32 Width) in AcpiOsReadMemory() argument
1340 switch (Width) in AcpiOsReadMemory()
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/hardware/
H A Dhwvalid.c240 UINT32 Width) in AcpiHwReadPort() argument
256 Status = AcpiHwValidateIoRequest (Address, Width); in AcpiHwReadPort()
259 Status = AcpiOsReadPort (Address, Value, Width); in AcpiHwReadPort()
273 for (i = 0, *Value = 0; i < Width; i += 8) in AcpiHwReadPort()
315 UINT32 Width) in AcpiHwWritePort() argument
330 Status = AcpiHwValidateIoRequest (Address, Width); in AcpiHwWritePort()
333 Status = AcpiOsWritePort (Address, Value, Width); in AcpiHwWritePort()
347 for (i = 0; i < Width; i += 8) in AcpiHwWritePort()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVExpandAtomicPseudoInsts.cpp52 bool IsMasked, int Width,
56 AtomicRMWInst::BinOp, bool IsMasked, int Width,
60 int Width, MachineBasicBlock::iterator &NextMBBI);
200 static unsigned getLRForRMW(AtomicOrdering Ordering, int Width) { in getLRForRMW() argument
201 if (Width == 32) in getLRForRMW()
203 if (Width == 64) in getLRForRMW()
208 static unsigned getSCForRMW(AtomicOrdering Ordering, int Width) { in getSCForRMW() argument
209 if (Width == 32) in getSCForRMW()
211 if (Width == 64) in getSCForRMW()
220 AtomicRMWInst::BinOp BinOp, int Width) { in doAtomicBinOpExpansion() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.h146 unsigned getVgprClassId(const OpWidthTy Width) const;
147 unsigned getAgprClassId(const OpWidthTy Width) const;
148 unsigned getSgprClassId(const OpWidthTy Width) const;
149 unsigned getTtmpClassId(const OpWidthTy Width) const;
152 static MCOperand decodeFPImmed(OpWidthTy Width, unsigned Imm);
155 MCOperand decodeSrcOp(const OpWidthTy Width, unsigned Val) const;
156 MCOperand decodeDstOp(const OpWidthTy Width, unsigned Val) const;
160 MCOperand decodeSDWASrc(const OpWidthTy Width, unsigned Val) const;
H A DAMDGPUDisassembler.cpp1127 MCOperand AMDGPUDisassembler::decodeFPImmed(OpWidthTy Width, unsigned Imm) { in decodeFPImmed() argument
1132 switch (Width) { in decodeFPImmed()
1150 unsigned AMDGPUDisassembler::getVgprClassId(const OpWidthTy Width) const { in getVgprClassId()
1153 assert(OPW_FIRST_ <= Width && Width < OPW_LAST_); in getVgprClassId()
1154 switch (Width) { in getVgprClassId()
1171 unsigned AMDGPUDisassembler::getAgprClassId(const OpWidthTy Width) const { in getAgprClassId()
1174 assert(OPW_FIRST_ <= Width && Width < OPW_LAST_); in getAgprClassId()
1175 switch (Width) { in getAgprClassId()
1193 unsigned AMDGPUDisassembler::getSgprClassId(const OpWidthTy Width) const { in getSgprClassId()
1196 assert(OPW_FIRST_ <= Width && Width < OPW_LAST_); in getSgprClassId()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSILoadStoreOptimizer.cpp102 unsigned Width; member
528 Width = getOpcodeWidth(*I, TII); in setMI()
777 if (getBufferFormatWithCompCount(CI.Format, CI.Width + Paired.Width, STI) == 0) in offsetsCanBeCombined()
788 return (EltOffset0 + CI.Width == EltOffset1 || in offsetsCanBeCombined()
789 EltOffset1 + Paired.Width == EltOffset0) && in offsetsCanBeCombined()
856 const unsigned Width = (CI.Width + Paired.Width); in widthsFit() local
859 return (Width <= 4) && (STM.hasDwordx3LoadStores() || (Width != 3)); in widthsFit()
861 switch (Width) { in widthsFit()
1401 getBufferFormatWithCompCount(CI.Format, CI.Width + Paired.Width, *STM); in mergeTBufferLoadPair()
1479 getBufferFormatWithCompCount(CI.Format, CI.Width + Paired.Width, *STM); in mergeTBufferStorePair()
[all …]
H A DAMDGPUAsmPrinter.cpp807 unsigned Width = 0; in analyzeResourceUsage() local
886 Width = 1; in analyzeResourceUsage()
891 Width = 1; in analyzeResourceUsage()
896 Width = 1; in analyzeResourceUsage()
901 Width = 2; in analyzeResourceUsage()
904 Width = 2; in analyzeResourceUsage()
908 Width = 2; in analyzeResourceUsage()
911 Width = 3; in analyzeResourceUsage()
914 Width = 3; in analyzeResourceUsage()
918 Width = 3; in analyzeResourceUsage()
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-csharp-forms/
H A Dhello.cs50 LayoutControls(total.Width, total.Height); in HelloWindow()
51 ClientSize = new Size(border + total.Width + border, border + total.Height + border); in HelloWindow()
55 LayoutControls(ClientSize.Width - border - border, ClientSize.Height - border - border); in OnResize()
62 ok.Width); in ComputePreferredSizeWithoutBorder()
71 ok.Location = new Point(border + totalWidth - ok.Width, border + totalHeight - ok.Height); in LayoutControls()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
H A DCoverageReport.cpp33 unsigned Width; member
37 Column(StringRef Str, unsigned Width) in Column()
38 : Str(Str), Width(Width), Trim(WidthTrim), Alignment(LeftAlignment) {} in Column()
51 if (Str.size() <= Width) { in render()
53 OS.indent(Width - Str.size()); in render()
58 OS.indent(Width - Str.size()); in render()
67 OS << Str.substr(0, Width); in render()
70 OS << Str.substr(0, Width - 3) << "..."; in render()
81 Column column(StringRef Str, unsigned Width) { return Column(Str, Width); } in column() argument
84 Column column(StringRef Str, unsigned Width, const T &Value) { in column() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DBitTracker.h301 RegisterCell(uint16_t Width = DefaultBitN) : Bits(Width) {} in Bits()
336 static RegisterCell self(unsigned Reg, uint16_t Width);
338 static RegisterCell top(uint16_t Width);
364 BitTracker::RegisterCell::self(unsigned Reg, uint16_t Width) { in self() argument
365 RegisterCell RC(Width); in self()
366 for (uint16_t i = 0; i < Width; ++i) in self()
372 BitTracker::RegisterCell::top(uint16_t Width) { in top() argument
373 RegisterCell RC(Width); in top()
374 for (uint16_t i = 0; i < Width; ++i) in top()
/netbsd-src/sys/external/bsd/acpica/dist/include/
H A Dacpiosxf.h373 UINT32 Width);
381 UINT32 Width);
393 UINT32 Width);
401 UINT32 Width);
416 UINT32 Width);
425 UINT32 Width);
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.h27 MinimalTypeDumpVisitor(LinePrinter &P, uint32_t Width, bool RecordBytes, in MinimalTypeDumpVisitor() argument
33 : P(P), Width(Width), RecordBytes(RecordBytes), Hashes(Hashes), in MinimalTypeDumpVisitor()
57 uint32_t Width; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DScaledNumber.cpp201 std::string ScaledNumberBase::toString(uint64_t D, int16_t E, int Width, in toString() argument
253 uint64_t Error = UINT64_C(1) << (64 - Width); in toString()
316 int Width, unsigned Precision) { in print() argument
317 return OS << toString(D, E, Width, Precision); in print()
320 void ScaledNumberBase::dump(uint64_t D, int16_t E, int Width) { in dump() argument
321 print(dbgs(), D, E, Width, 0) << "[" << Width << ":" << D << "*2^" << E in dump()

12345678910>>...13