HomeSort by relevance Sort by last modified time
    Searched defs:Width (Results 1 - 25 of 259) sorted by null

1 2 3 4 5 6 7 8 91011

  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
HwIoDebug.c 28 Argv[0] - "ioread"[.#] # is optional width 1, 2, or 4. Default 1
48 UINTN Width;
57 Width = WidthFromCommandName (Argv[0], 1);
59 if (Width == 1) {
61 } else if (Width == 2) {
63 } else if (Width == 4) {
78 Argv[0] - "iowrite"[.#] # is optional width 1, 2, or 4. Default 1
99 UINTN Width;
109 Width = WidthFromCommandName (Argv[0], 1);
111 if (Width == 1) {
    [all...]
  /external/libvpx/libvpx/vp8/common/
onyxd.h 28 int Width;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiLib/
Console.c 27 UINT32 Width;
192 {(CHAR16)0xFFEF, 1}, // Half width and full width forms. 0xFF00-0xFFEF
197 This function computes and returns the width of the Unicode character
202 @retval 0 The width if UnicodeChar could not be determined.
245 return Item->Width;
270 UINTN Width;
278 Width = GetGlyphWidth (*String);
279 if (Width == 0) {
283 Length += Width;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/
Callback.c 103 EFI_PCI_IO_PROTOCOL_WIDTH Width;
107 Width = (EFI_PCI_IO_PROTOCOL_WIDTH) 0;
110 Width = (EFI_PCI_IO_PROTOCOL_WIDTH) 1;
114 Width = (EFI_PCI_IO_PROTOCOL_WIDTH) 2;
118 Width = (EFI_PCI_IO_PROTOCOL_WIDTH) 3;
126 Width,
137 Width,
148 Width,
159 Width,
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformSmm/
SmmScriptSave.c 172 EFI_BOOT_SCRIPT_WIDTH Width;
179 Width = VA_ARG(Marker, EFI_BOOT_SCRIPT_WIDTH);
184 WidthInByte = (UINT8)(0x01 << (Width & 0x03));
193 Script.IoWrite->Width = Width;
217 EFI_BOOT_SCRIPT_WIDTH Width;
224 Width = VA_ARG(Marker, EFI_BOOT_SCRIPT_WIDTH);
229 WidthInByte = (UINT8)(0x01 << (Width & 0x03));
238 Script.PciWrite->Width = Width;
    [all...]
  /external/libcxxabi/test/
dynamic_cast_stress.pass.cpp 46 template <std::size_t Width, std::size_t Depth>
48 : public makeB<typename std::__make_tuple_indices<Width>::type, Depth>
54 const std::size_t Width = 10;
56 A<Width, Depth> a;
57 typedef B<Width/2, Depth> Destination;
58 // typedef A<Width, Depth> Destination;
62 b = dynamic_cast<Destination*>((C<Width/2, 0>*)&a);
76 B<Width/2, Depth> -O3 48.334 93.190 libc++abi 93% faster
77 B<Width/2, Depth> -Os 58.535 94.103 libc++abi 61% faster
78 A<Width, Depth> -O3 11.515 33.134 libc++abi 188% faste
    [all...]
  /external/llvm/lib/Support/
TargetRegistry.cpp 120 size_t Width = 0;
123 Width = std::max(Width, Targets.back().first.size());
131 OS.indent(Width - Targets[i].first.size()) << " - "
Unicode.cpp 217 /// on a terminal ("character width"). This depends on the implementation of the
218 /// terminal, and there's no standard definition of character width.
221 /// \return Character width:
356 int Width = charWidth(buf[0]);
357 if (Width < 0)
359 ColumnWidth += Width;
  /external/swiftshader/third_party/LLVM/lib/Support/
TargetRegistry.cpp 104 size_t Width = 0;
109 Width = std::max(Width, Targets.back().first.size());
117 OS.indent(Width - Targets[i].first.size()) << " - "
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/test/
dynamic_cast_stress.pass.cpp 46 template <std::size_t Width, std::size_t Depth>
48 : public makeB<typename std::__make_tuple_indices<Width>::type, Depth>
54 const std::size_t Width = 10;
56 A<Width, Depth> a;
57 typedef B<Width/2, Depth> Destination;
58 // typedef A<Width, Depth> Destination;
62 b = dynamic_cast<Destination*>((C<Width/2, 0>*)&a);
76 B<Width/2, Depth> -O3 48.334 93.190 libc++abi 93% faster
77 B<Width/2, Depth> -Os 58.535 94.103 libc++abi 61% faster
78 A<Width, Depth> -O3 11.515 33.134 libc++abi 188% faste
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
EditMenuBar.c 91 UINTN Width;
118 Width = MAX ((StrLen (NameString) + 6), 20);
119 if (((Col + Width) > LastCol)) {
130 Col += Width;
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 107 uint64_t Width = Target.getTypeWidth(PtrDiff);
110 Width = 2 * Width;
111 return std::make_pair(Width, Align);
  /external/llvm/lib/Target/Hexagon/
HexagonBitTracker.h 46 unsigned getNextPhysReg(unsigned PReg, unsigned Width) const;
53 uint16_t Width;
54 ExtType() : Type(0), Width(0) {}
55 ExtType(char t, uint16_t w) : Type(t), Width(w) {}
HexagonBitTracker.cpp 54 unsigned Width = 0;
56 Width = ATy->getIntegerBitWidth();
58 Width = 32;
61 if (Width == 0 || Width > 64)
63 InPhysReg = getNextPhysReg(InPhysReg, Width);
71 VRX.insert(std::make_pair(InVirtReg, ExtType(ExtType::SExt, Width)));
73 VRX.insert(std::make_pair(InVirtReg, ExtType(ExtType::ZExt, Width)));
201 assert(getRegBitWidth(Reg[N]) == W && "Register width mismatch");
207 assert(RW <= RC.width());
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
horizontal_device_metrics_table.cc 59 int32_t HorizontalDeviceMetricsTable::Width(int32_t record_index,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/
Print.c 26 %[flags][width]type
33 '0' - Prefix for width with zeros
37 width:
38 '*' - Get width from a UINTN argumnet from the argument list
39 Decimal number that represents width of print
168 UINTN Width;
201 Width = 0;
215 Width = VA_ARG (Marker, UINTN);
235 Width = Count;
257 EfiValueToHexStr (TempBuffer, Value, Flags, Width);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Smm/SmmScriptLib/
SmmScriptLib.c 45 EFI_BOOT_SCRIPT_WIDTH Width;
50 Width = VA_ARG (Marker, EFI_BOOT_SCRIPT_WIDTH);
58 Width,
79 EFI_BOOT_SCRIPT_WIDTH Width;
84 Width = VA_ARG (Marker, EFI_BOOT_SCRIPT_WIDTH);
92 Width,
113 EFI_BOOT_SCRIPT_WIDTH Width;
118 Width = VA_ARG (Marker, EFI_BOOT_SCRIPT_WIDTH);
126 Width,
147 EFI_BOOT_SCRIPT_WIDTH Width;
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/FrameworkUefiLib/
Console.c 22 UINT32 Width;
187 {(CHAR16)0xFFEF, 1}, // Half width and full width forms. 0xFF00-0xFFEF
192 Retrieves the width of a Unicode character.
194 This function computes and returns the width of the Unicode character specified
199 @retval 0 The width if UnicodeChar could not be determined.
242 return Item->Width;
254 width of String can be computed by summing the display widths of each Unicode character
255 in String. Unicode characters that are narrow glyphs have a width of 1, and Unicode
256 characters that are width glyphs have a width of 2.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Application/BootManagerMenuApp/
BootManagerMenu.h 38 UINTN Width;
  /device/linaro/bootloader/edk2/OvmfPkg/VirtioGpuDxe/
Gop.c 68 0, 0, 0, 0, // X, Y, Width, Height
142 UINT32 Width;
216 GopModeInfo->HorizontalResolution = mGopResolutions[ModeNumber].Width;
219 GopModeInfo->PixelsPerScanLine = mGopResolutions[ModeNumber].Width;
289 mGopResolutions[ModeNumber].Width, // Width
299 NewNumberOfBytes = mGopResolutions[ModeNumber].Width *
332 mGopResolutions[ModeNumber].Width, // Width
351 mGopResolutions[ModeNumber].Width, // Width
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/VirtioPciDeviceDxe/
VirtioPciDevice.c 79 EFI_PCI_IO_PROTOCOL_WIDTH Width;
89 Width = EfiPciIoWidthUint8;
93 Width = EfiPciIoWidthUint16;
99 // any alignment or width issues.
103 // is responsible for any alignment and I/O width issues which the
105 // some platforms, width requests of EfiPciIoWidthUint64 do not work.
113 Width = EfiPciIoWidthUint32;
123 Width,
161 EFI_PCI_IO_PROTOCOL_WIDTH Width;
169 Width = EfiPciIoWidthUint8;
    [all...]
  /external/llvm/include/llvm/Support/
Format.h 118 unsigned Width;
124 : Str(S), Width(W), RightJustify(R) { }
128 /// \p Width characters. If \p Str is larger that \p Width, full string
130 inline FormattedString left_justify(StringRef Str, unsigned Width) {
131 return FormattedString(Str, Width, false);
135 /// \p Width characters. If \p Str is larger that \p Width, full string
137 inline FormattedString right_justify(StringRef Str, unsigned Width) {
138 return FormattedString(Str, Width, true)
    [all...]
  /external/llvm/lib/Target/X86/
X86TargetObjectFile.cpp 103 unsigned Width = (AI.getBitWidth() / 8) * 2;
106 assert(Width >= Size && "hex string is too large!");
107 HexString.insert(HexString.begin(), Width - Size, '0');
  /external/llvm/tools/llvm-cov/
CoverageReport.cpp 28 unsigned Width;
32 Column(StringRef Str, unsigned Width)
33 : Str(Str), Width(Width), Trim(WidthTrim), Alignment(LeftAlignment) {}
55 if (Str.size() <= Width) {
57 OS.indent(Width - Str.size());
62 OS.indent(Width - Str.size());
71 OS << Str.substr(0, Width);
74 OS << "..." << Str.substr(Str.size() - Width + 3);
77 OS << Str.substr(0, Width - 3) << "..."
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
small_glyph_metrics.cc 34 int32_t SmallGlyphMetrics::Width() {
72 int32_t SmallGlyphMetrics::Builder::Width() {
76 void SmallGlyphMetrics::Builder::SetWidth(byte_t width) {
77 InternalWriteData()->WriteByte(Offset::kWidth, width);

Completed in 1885 milliseconds

1 2 3 4 5 6 7 8 91011