Searched refs:Width (Results 1 - 25 of 184) sorted by relevance

12345678

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ShuffleDecodeConstantPool.h28 void DecodePSHUFBMask(const Constant *C, unsigned Width,
32 void DecodeVPERMILPMask(const Constant *C, unsigned ElSize, unsigned Width,
37 unsigned Width,
41 void DecodeVPPERMMask(const Constant *C, unsigned Width,
45 void DecodeVPERMVMask(const Constant *C, unsigned ElSize, unsigned Width,
49 void DecodeVPERMV3Mask(const Constant *C, unsigned ElSize, unsigned Width,
H A DX86ShuffleDecodeConstantPool.cpp114 void DecodePSHUFBMask(const Constant *C, unsigned Width, argument
116 assert((Width == 128 || Width == 256 || Width == 512) &&
117 C->getType()->getPrimitiveSizeInBits() >= Width &&
126 unsigned NumElts = Width / 8;
152 void DecodeVPERMILPMask(const Constant *C, unsigned ElSize, unsigned Width, argument
154 assert((Width == 128 || Width == 256 || Width
187 DecodeVPERMIL2PMask(const Constant *C, unsigned M2Z, unsigned ElSize, unsigned Width, SmallVectorImpl<int> &ShuffleMask) argument
243 DecodeVPPERMMask(const Constant *C, unsigned Width, SmallVectorImpl<int> &ShuffleMask) argument
295 DecodeVPERMVMask(const Constant *C, unsigned ElSize, unsigned Width, SmallVectorImpl<int> &ShuffleMask) argument
321 DecodeVPERMV3Mask(const Constant *C, unsigned ElSize, unsigned Width, SmallVectorImpl<int> &ShuffleMask) argument
[all...]
/freebsd-11-stable/sys/dev/acpica/Osd/
H A DOsdHardware.c63 AcpiOsReadPort(ACPI_IO_ADDRESS InPort, UINT32 *Value, UINT32 Width) argument
66 switch (Width) {
82 AcpiOsWritePort(ACPI_IO_ADDRESS OutPort, UINT32 Value, UINT32 Width) argument
85 switch (Width) {
102 UINT32 Width)
109 if (Width == 64)
116 PciId->Function, Register, Width / 8);
125 UINT64 Value, UINT32 Width)
132 if (Width == 64)
139 Value, Width /
101 AcpiOsReadPciConfiguration(ACPI_PCI_ID *PciId, UINT32 Register, UINT64 *Value, UINT32 Width) argument
124 AcpiOsWritePciConfiguration(ACPI_PCI_ID *PciId, UINT32 Register, UINT64 Value, UINT32 Width) argument
[all...]
H A DOsdMemory.c90 AcpiOsReadMemory(ACPI_PHYSICAL_ADDRESS Address, UINT64 *Value, UINT32 Width) argument
94 LogicalAddress = pmap_mapdev(Address, Width / 8);
98 switch (Width) {
113 pmap_unmapdev((vm_offset_t)LogicalAddress, Width / 8);
119 AcpiOsWriteMemory(ACPI_PHYSICAL_ADDRESS Address, UINT64 Value, UINT32 Width) argument
123 LogicalAddress = pmap_mapdev(Address, Width / 8);
127 switch (Width) {
142 pmap_unmapdev((vm_offset_t)LogicalAddress, Width / 8);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormat.h133 : Str(S), Width(W), Justify(J) {}
137 unsigned Width; member in class:llvm::FormattedString
143 /// \p Width characters. If \p Str is larger that \p Width, full string
145 inline FormattedString left_justify(StringRef Str, unsigned Width) { argument
146 return FormattedString(Str, Width, FormattedString::JustifyLeft);
150 /// \p Width characters. If \p Str is larger that \p Width, full string
152 inline FormattedString right_justify(StringRef Str, unsigned Width) { argument
153 return FormattedString(Str, Width, FormattedStrin
159 center_justify(StringRef Str, unsigned Width) argument
167 unsigned Width; member in class:llvm::FormattedNumber
186 format_hex(uint64_t N, unsigned Width, bool Upper = false) argument
199 format_hex_no_prefix(uint64_t N, unsigned Width, bool Upper = false) argument
211 format_decimal(int64_t N, unsigned Width) argument
[all...]
/freebsd-11-stable/lib/libvgl/
H A Dtext.c55 VGLTextFont->Width = 8;
62 fread(&VGLTextFont->Width, 1 , 1, fd);
65 (byte*)malloc(256*((VGLTextFont->Width + 7)/8)*VGLTextFont->Height);
67 (256*VGLTextFont->Width* VGLTextFont->Height), fd);
80 for(bit = 0; bit < VGLTextFont->Width; bit++) {
130 VGLBitmapPutChar(Object, x+(pos*VGLTextFont->Width), y,
134 VGLBitmapPutChar(Object, x, y-(pos*VGLTextFont->Width),
138 VGLBitmapPutChar(Object, x-(pos*VGLTextFont->Width), y,
142 VGLBitmapPutChar(Object, x, y+(pos*VGLTextFont->Width),
146 VGLBitmapPutChar(Object, x+(pos*VGLTextFont->Width),
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DFixedPoint.h35 FixedPointSemantics(unsigned Width, unsigned Scale, bool IsSigned, argument
37 : Width(Width), Scale(Scale), IsSigned(IsSigned),
39 assert(Width >= Scale && "Not enough room for the scale");
44 unsigned getWidth() const { return Width; }
57 return Width - Scale - 1;
59 return Width - Scale;
70 static FixedPointSemantics GetIntegerSemantics(unsigned Width, argument
72 return FixedPointSemantics(Width, /*Scale=*/0, IsSigned,
78 unsigned Width; member in class:clang::FixedPointSemantics
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/hardware/
H A Dhwvalid.c334 * Width Number of bits
348 UINT32 Width)
364 Status = AcpiHwValidateIoRequest (Address, Width);
367 Status = AcpiOsReadPort (Address, Value, Width);
381 for (i = 0, *Value = 0; i < Width; i += 8)
409 * Width Number of bits
423 UINT32 Width)
438 Status = AcpiHwValidateIoRequest (Address, Width);
441 Status = AcpiOsWritePort (Address, Value, Width);
455 for (i = 0; i < Width;
345 AcpiHwReadPort( ACPI_IO_ADDRESS Address, UINT32 *Value, UINT32 Width) argument
420 AcpiHwWritePort( ACPI_IO_ADDRESS Address, UINT32 Value, UINT32 Width) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.h118 unsigned getVgprClassId(const OpWidthTy Width) const;
119 unsigned getAgprClassId(const OpWidthTy Width) const;
120 unsigned getSgprClassId(const OpWidthTy Width) const;
121 unsigned getTtmpClassId(const OpWidthTy Width) const;
124 static MCOperand decodeFPImmed(OpWidthTy Width, unsigned Imm);
127 MCOperand decodeSrcOp(const OpWidthTy Width, unsigned Val) const;
128 MCOperand decodeDstOp(const OpWidthTy Width, unsigned Val) const;
132 MCOperand decodeSDWASrc(const OpWidthTy Width, unsigned Val) const;
H A DAMDGPUDisassembler.cpp886 MCOperand AMDGPUDisassembler::decodeFPImmed(OpWidthTy Width, unsigned Imm) { argument
891 switch (Width) {
907 unsigned AMDGPUDisassembler::getVgprClassId(const OpWidthTy Width) const {
910 assert(OPW_FIRST_ <= Width && Width < OPW_LAST_);
911 switch (Width) {
922 unsigned AMDGPUDisassembler::getAgprClassId(const OpWidthTy Width) const {
925 assert(OPW_FIRST_ <= Width && Width < OPW_LAST_);
926 switch (Width) {
985 decodeSrcOp(const OpWidthTy Width, unsigned Val) const argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.h27 MinimalTypeDumpVisitor(LinePrinter &P, uint32_t Width, bool RecordBytes, argument
33 : P(P), Width(Width), RecordBytes(RecordBytes), Hashes(Hashes),
57 uint32_t Width; member in class:llvm::pdb::MinimalTypeDumpVisitor
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBitTracker.h57 unsigned getNextPhysReg(unsigned PReg, unsigned Width) const;
65 ExtType(char t, uint16_t w) : Type(t), Width(w) {}
68 uint16_t Width = 0; member in struct:llvm::HexagonEvaluator::ExtType
H A DBitTracker.h300 RegisterCell(uint16_t Width = DefaultBitN) : Bits(Width) {}
335 static RegisterCell self(unsigned Reg, uint16_t Width);
337 static RegisterCell top(uint16_t Width);
363 BitTracker::RegisterCell::self(unsigned Reg, uint16_t Width) {
364 RegisterCell RC(Width);
365 for (uint16_t i = 0; i < Width; ++i)
371 BitTracker::RegisterCell::top(uint16_t Width) {
372 RegisterCell RC(Width);
373 for (uint16_t i = 0; i < Width;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DSummaryView.cpp26 unsigned Width)
27 : SM(Model), Source(S), DispatchWidth(Width?Width: Model.IssueWidth),
81 TempStream << "\nDispatch Width: " << DispatchWidth;
25 SummaryView(const MCSchedModel &Model, ArrayRef<MCInst> S, unsigned Width) argument
H A DSummaryView.h19 /// Dispatch Width: 2
70 unsigned Width);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.cpp87 // Use the fact that explicitly requesting 0 Width (%0s) results in UB and
88 // interpret Width == 0 as "no Width requested":
89 // Width == 0 - no Width requested
90 // Width < 0 - left-justify S within and pad it to -Width chars, if necessary
91 // Width > 0 - right-justify S, not implemented yet
92 static int appendString(char **Buffer, const char *BufferEnd, int Width, argument
103 while (Width <
138 u8 Width = 0; local
[all...]
/freebsd-11-stable/sys/contrib/edk2/Include/Library/
H A DPrintLib.h502 string specified by Buffer containing at most Width characters. No padding of spaces
503 is ever performed. If Width is 0 then a width of MAXIMUM_VALUE_CHARACTERS is assumed.
505 If the conversion contains more than Width characters, then only the first
506 Width characters are returned, and the total number of characters
512 If Width is 0, PREFIX_ZERO is ignored in Flags.
521 add up to Width characters.
527 If Width >= MAXIMUM_VALUE_CHARACTERS, then ASSERT()
533 @param Width The maximum number of Unicode characters to place in Buffer, not including
545 IN UINTN Width
554 string specified by Buffer containing at most Width character
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTargetRegistry.cpp119 size_t Width = 0; local
122 Width = std::max(Width, Targets.back().first.size());
129 OS.indent(Width - Targets[i].first.size()) << " - "
H A DScaledNumber.cpp201 std::string ScaledNumberBase::toString(uint64_t D, int16_t E, int Width,
253 uint64_t Error = UINT64_C(1) << (64 - Width);
316 int Width, unsigned Precision) {
317 return OS << toString(D, E, Width, Precision);
320 void ScaledNumberBase::dump(uint64_t D, int16_t E, int Width) {
321 print(dbgs(), D, E, Width, 0) << "[" << Width << ":" << D << "*2^" << E
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dachware.h264 UINT32 Width);
270 UINT32 Width);
H A Dacpiosxf.h481 UINT32 Width);
489 UINT32 Width);
501 UINT32 Width);
509 UINT32 Width);
524 UINT32 Width);
533 UINT32 Width);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h24 APSIntType(uint32_t Width, bool Unsigned) argument
25 : BitWidth(Width), IsUnsigned(Unsigned) {}
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVExpandPseudoInsts.cpp48 bool IsMasked, int Width,
52 AtomicRMWInst::BinOp, bool IsMasked, int Width,
56 int Width, MachineBasicBlock::iterator &NextMBBI);
217 static unsigned getLRForRMW(AtomicOrdering Ordering, int Width) { argument
218 if (Width == 32)
220 if (Width == 64)
225 static unsigned getSCForRMW(AtomicOrdering Ordering, int Width) { argument
226 if (Width == 32)
228 if (Width == 64)
237 AtomicRMWInst::BinOp BinOp, int Width) {
233 doAtomicBinOpExpansion(const RISCVInstrInfo *TII, MachineInstr &MI, DebugLoc DL, MachineBasicBlock *ThisMBB, MachineBasicBlock *LoopMBB, MachineBasicBlock *DoneMBB, AtomicRMWInst::BinOp BinOp, int Width) argument
295 doMaskedAtomicBinOpExpansion( const RISCVInstrInfo *TII, MachineInstr &MI, DebugLoc DL, MachineBasicBlock *ThisMBB, MachineBasicBlock *LoopMBB, MachineBasicBlock *DoneMBB, AtomicRMWInst::BinOp BinOp, int Width) argument
358 expandAtomicBinOp( MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, AtomicRMWInst::BinOp BinOp, bool IsMasked, int Width, MachineBasicBlock::iterator &NextMBBI) argument
407 expandAtomicMinMaxOp( MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, AtomicRMWInst::BinOp BinOp, bool IsMasked, int Width, MachineBasicBlock::iterator &NextMBBI) argument
528 expandAtomicCmpXchg( MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, bool IsMasked, int Width, MachineBasicBlock::iterator &NextMBBI) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSILoadStoreOptimizer.cpp120 unsigned Width; member in struct:__anon2119::SILoadStoreOptimizer::CombineInfo
506 Width = getOpcodeWidth(*I, TII);
755 if (getBufferFormatWithCompCount(CI.Format, CI.Width + Paired.Width, STI) == 0)
766 return (EltOffset0 + CI.Width == EltOffset1 ||
767 EltOffset1 + Paired.Width == EltOffset0) &&
812 const unsigned Width = (CI.Width + Paired.Width); local
815 return (Width <
1415 const unsigned Width = CI.Width + Paired.Width; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageReport.cpp33 unsigned Width; member in struct:__anon3292::Column
37 Column(StringRef Str, unsigned Width) argument
38 : Str(Str), Width(Width), Trim(WidthTrim), Alignment(LeftAlignment) {}
51 if (Str.size() <= Width) {
53 OS.indent(Width - Str.size());
58 OS.indent(Width - Str.size());
67 OS << Str.substr(0, Width);
70 OS << Str.substr(0, Width - 3) << "...";
81 Column column(StringRef Str, unsigned Width) { retur argument
84 column(StringRef Str, unsigned Width, const T &Value) argument
[all...]

Completed in 296 milliseconds

12345678