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

1234

/freebsd-10-stable/sys/dev/acpica/Osd/
H A DOsdHardware.c50 AcpiOsReadPort(ACPI_IO_ADDRESS InPort, UINT32 *Value, UINT32 Width) argument
53 switch (Width) {
69 AcpiOsWritePort(ACPI_IO_ADDRESS OutPort, UINT32 Value, UINT32 Width) argument
72 switch (Width) {
89 UINT32 Width)
92 if (Width == 64)
99 PciId->Function, Register, Width / 8);
107 UINT64 Value, UINT32 Width)
110 if (Width == 64)
117 Value, Width /
88 AcpiOsReadPciConfiguration(ACPI_PCI_ID *PciId, UINT32 Register, UINT64 *Value, UINT32 Width) argument
106 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-10-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutprint.c79 INT32 Width,
279 * Width - Field width
295 INT32 Width,
333 Width--;
338 Width--;
343 Width--;
348 Width--;
351 Width--;
367 Width -= Precision;
373 while (--Width >
290 AcpiUtFormatNumber( char *String, char *End, UINT64 Number, UINT8 Base, INT32 Width, INT32 Precision, UINT8 Type) argument
441 INT32 Width; local
[all...]
/freebsd-10-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-10-stable/contrib/llvm/tools/clang/lib/AST/
H A DItaniumCXXABI.cpp54 uint64_t Width = Target.getTypeWidth(PtrDiff); local
57 Width = 2 * Width;
58 return std::make_pair(Width, Align);
H A DMicrosoftCXXABI.cpp193 uint64_t Width = Ptrs * PtrSize + Ints * IntSize; local
195 Width = llvm::RoundUpToAlignment(Width, Align);
196 return std::make_pair(Width, Align);
/freebsd-10-stable/sys/contrib/dev/acpica/components/hardware/
H A Dhwvalid.c225 * Width Number of bits
239 UINT32 Width)
255 Status = AcpiHwValidateIoRequest (Address, Width);
258 Status = AcpiOsReadPort (Address, Value, Width);
272 for (i = 0, *Value = 0; i < Width; i += 8)
300 * Width Number of bits
314 UINT32 Width)
329 Status = AcpiHwValidateIoRequest (Address, Width);
332 Status = AcpiOsWritePort (Address, Value, Width);
346 for (i = 0; i < Width;
236 AcpiHwReadPort( ACPI_IO_ADDRESS Address, UINT32 *Value, UINT32 Width) argument
311 AcpiHwWritePort( ACPI_IO_ADDRESS Address, UINT32 Value, UINT32 Width) argument
[all...]
H A Dhwxface.c144 UINT32 Width; local
183 Width = Reg->BitWidth;
184 if (Width == 64)
186 Width = 32; /* Break into two 32-bit transfers */
190 Address, &ValueLo, Width);
243 UINT32 Width; local
274 Width = Reg->BitWidth;
275 if (Width == 64)
277 Width = 32; /* Break into two 32-bit transfers */
281 Address, ACPI_LODWORD (Value), Width);
[all...]
/freebsd-10-stable/contrib/ncurses/ncurses/base/
H A Dsafe_sprintf.c41 Flags, Width, Prec, Type, Format enumerator in enum:__anon3909
93 state = Width;
94 if (state == Width) {
106 state = Width;
107 if (state == Width) {
/freebsd-10-stable/contrib/llvm/include/llvm/IR/
H A DDataLayout.h210 bool isLegalInteger(unsigned Width) const {
212 if (LegalIntWidths[i] == Width)
217 bool isIllegalInteger(unsigned Width) const {
218 return !isLegalInteger(Width);
230 bool fitsInLegalInteger(unsigned Width) const {
232 if (Width <= LegalIntWidths[i])
369 /// least as big as Width bits.
370 Type *getSmallestLegalIntType(LLVMContext &C, unsigned Width = 0) const;
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/
H A DEncoding.h84 int Width = columnWidth(Tail.substr(0, TabPos), Encoding); local
85 assert(Width >= 0);
86 TotalWidth += Width;
/freebsd-10-stable/contrib/llvm/lib/Support/
H A DTargetRegistry.cpp145 size_t Width = 0; local
150 Width = std::max(Width, Targets.back().first.size());
158 OS.indent(Width - Targets[i].first.size()) << " - "
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h24 APSIntType(uint32_t Width, bool Unsigned) argument
25 : BitWidth(Width), IsUnsigned(Unsigned) {}
/freebsd-10-stable/sys/contrib/dev/acpica/include/
H A Dachware.h156 UINT32 Width);
162 UINT32 Width);
H A Dacpiosxf.h373 UINT32 Width);
381 UINT32 Width);
393 UINT32 Width);
401 UINT32 Width);
416 UINT32 Width);
425 UINT32 Width);
/freebsd-10-stable/contrib/llvm/include/llvm/Object/
H A DRelocVisitor.h35 char Width; member in struct:llvm::object::RelocToApply
36 RelocToApply(const RelocToApply &In) : Value(In.Value), Width(In.Width) {}
37 RelocToApply(int64_t Value, char Width) : Value(Value), Width(Width) {} argument
38 RelocToApply() : Value(0), Width(0) {}
/freebsd-10-stable/sys/contrib/dev/acpica/components/disassembler/
H A Ddmresrcs.c167 if (Resource->FixedDma.Width <= 5)
170 AcpiGbl_DtsDecode [Resource->FixedDma.Width]);
175 Resource->FixedDma.Width);
/freebsd-10-stable/sys/contrib/dev/acpica/os_specific/service_layers/
H A Dosunixxf.c1172 * Width - Number of bits
1185 UINT32 Width)
1200 * Width - Number of bits
1213 UINT32 Width)
1226 * Width - Number of bits
1238 UINT32 Width)
1241 switch (Width)
1273 * Width - Number of bits
1285 UINT32 Width)
1298 * Width
1181 AcpiOsReadPciConfiguration( ACPI_PCI_ID *PciId, UINT32 PciRegister, UINT64 *Value, UINT32 Width) argument
1209 AcpiOsWritePciConfiguration( ACPI_PCI_ID *PciId, UINT32 PciRegister, UINT64 Value, UINT32 Width) argument
1235 AcpiOsReadPort( ACPI_IO_ADDRESS Address, UINT32 *Value, UINT32 Width) argument
1282 AcpiOsWritePort( ACPI_IO_ADDRESS Address, UINT32 Value, UINT32 Width) argument
1308 AcpiOsReadMemory( ACPI_PHYSICAL_ADDRESS Address, UINT64 *Value, UINT32 Width) argument
1347 AcpiOsWriteMemory( ACPI_PHYSICAL_ADDRESS Address, UINT64 Value, UINT32 Width) argument
[all...]
/freebsd-10-stable/sys/boot/efi/include/
H A Defipciio.h133 @param Width Signifies the width of the memory or I/O operations.
154 IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
167 @param Width Signifies the width of the memory or I/O operations.
177 @retval EFI_UNSUPPORTED The address range specified by Offset, Width, and Count is not
187 IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
209 @param Width Signifies the width of the memory operations.
217 @retval EFI_UNSUPPORTED The address range specified by Offset, Width, and Count is not
220 @retval EFI_INVALID_PARAMETER Buffer is NULL or Width is invalid.
227 IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
249 @param Width Signifie
[all...]
H A Defiuga.h105 (DestinationX, DestinationY) (DestinationX + Width, DestinationY + Height).
109 (SourceX, SourceY) (SourceX + Width, SourceY + Height) and place it in
111 (DestinationX + Width, DestinationY + Height). If DestinationX or
116 (SourceX, SourceY) (SourceX + Width, SourceY + Height) directly to the
118 (DestinationX + Width, DestinationY + Height). If SourceX or SourceY is
123 (SourceX + Width, SourceY + Height) .to the video display rectangle
124 (DestinationX, DestinationY) (DestinationX + Width, DestinationY + Height).
130 buffer has a size of Width*Height*sizeof(EFI_UGA_PIXEL)
136 @param[in] Width - Width o
[all...]
H A Defigop.h109 IN UINTN Width,
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.cpp1031 int Width = 0; local
1033 Width = 64;
1035 Width = 32;
1037 Width = 16;
1039 Width = 8;
1041 Width = 4;
1043 Width = 2;
1049 int Num1s = (ImmS & (Width - 1)) + 1;
1052 if (Num1s == Width) return false;
1054 int Rotation = (ImmR & (Width
1063 Mask <<= Width; local
[all...]
/freebsd-10-stable/sys/contrib/dev/acpica/compiler/
H A Daslstubs.c77 UINT32 Width)
86 UINT32 Width)
74 AcpiHwReadPort( ACPI_IO_ADDRESS Address, UINT32 *Value, UINT32 Width) argument
83 AcpiHwWritePort( ACPI_IO_ADDRESS Address, UINT32 Value, UINT32 Width) argument
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/
H A DSpecifiers.h82 /*DeclSpec::TSW*/ unsigned Width : 2; member in struct:clang::WrittenBuiltinSpecs
/freebsd-10-stable/contrib/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp40 unsigned Base, Width, Offset; member in struct:__anon3877::EncodingField
42 : Base(B), Width(W), Offset(O) { }
52 void addField(unsigned Base, unsigned Width, unsigned Offset) { argument
53 Fields.push_back(EncodingField(Base, Width, Offset));
331 // Width of instructions
1073 << "(insn, " << OI->Base << ", " << OI->Width
1080 << "(insn, " << OI->Base << ", " << OI->Width
1784 unsigned Width = 0;
1797 OpInfo.addField(Base, Width, Offset);
1799 Width
[all...]

Completed in 342 milliseconds

1234