HomeSort by relevance Sort by last modified time
    Searched refs:Format (Results 401 - 425 of 1402) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/mesa/main/
accum.c 141 if (accRb->Format == MESA_FORMAT_RGBA_SNORM16) {
196 if (accRb->Format == MESA_FORMAT_RGBA_SNORM16) {
274 if (accRb->Format == MESA_FORMAT_RGBA_SNORM16) {
285 _mesa_unpack_rgba_row(colorRb->Format, width, colorMap, rgba);
366 if (accRb->Format == MESA_FORMAT_RGBA_SNORM16) {
388 _mesa_unpack_rgba_row(colorRb->Format, width, colorMap, dest);
409 _mesa_pack_float_rgba_row(colorRb->Format, width,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
LayoutDescriptors.java 33 import com.android.ide.common.api.IAttributeInfo.Format;
241 Format.REFERENCE_SET);
343 Format.REFERENCE_SET ),
408 new AttributeInfo(ATTR_CLASS, Format.STRING_SET),
445 new AttributeInfo(ATTR_NAME, Format.STRING_SET),
452 new AttributeInfo(ATTR_TAG, Format.STRING_SET),
475 new AttributeInfo(ATTR_CLASS, Format.STRING_SET),
  /art/runtime/
dex_instruction.cc 44 Instruction::Format format) {
47 } else if ((format >= Instruction::Format::k10x) && (format <= Instruction::Format::k10t)) {
49 } else if ((format >= Instruction::Format::k20t) && (format <= Instruction::Format::k22c))
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/
stdio.h 25 const char * __restrict format, ...);
498 under control of the string pointed to by format that specifies how
500 arguments for the format, the behavior is indeterminate. If the format is
503 the end of the format string is encountered.
505 The format is interpreted as a multibyte character sequence, beginning and ending
506 in its initial shift state. The format is composed of zero or more directives:
    [all...]
  /external/fonttools/Lib/fontTools/
subset.py 166 if self.Format == 1:
174 assert 0, "unknown format: %s" % self.Format
178 if self.Format == 1:
191 assert 0, "unknown format: %s" % self.Format
195 if self.Format == 1:
197 elif self.Format == 2:
203 assert 0, "unknown format: %s" % self.Format
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Application/FirmwareUpdate/
FirmwareUpdate.c 114 IN CONST CHAR16 *Format,
124 ASSERT (Format != NULL);
125 ASSERT (((UINTN) Format & BIT0) == 0);
133 Return = UnicodeVSPrint (Buffer, BufferSize, Format, Marker);
160 CHAR16 *Format;
164 Format = HiiGetString (Handle, Token, NULL);
165 ASSERT (Format != NULL);
167 Return = InternalPrintToken (Format, gST->ConOut, Marker);
169 FreePool (Format);
  /external/swiftshader/src/OpenGL/libGL/
utilities.cpp 191 GLsizei ComputePitch(GLsizei width, GLenum format, GLenum type, GLint alignment)
195 GLsizei rawPitch = ComputePixelSize(format, type) * width;
199 GLsizei ComputeCompressedPitch(GLsizei width, GLenum format)
201 return ComputeCompressedSize(width, 1, format);
204 GLsizei ComputeCompressedSize(GLsizei width, GLsizei height, GLenum format)
206 switch(format)
219 bool IsCompressed(GLenum format)
221 return format == GL_COMPRESSED_RGB_S3TC_DXT1_EXT ||
222 format == GL_COMPRESSED_RGBA_S3TC_DXT1_EXT ||
223 format == GL_COMPRESSED_RGBA_S3TC_DXT3_EXT |
    [all...]
  /external/swiftshader/src/OpenGL/libGLES_CM/
utilities.cpp 28 bool IsCompressed(GLenum format)
30 return format == GL_COMPRESSED_RGB_S3TC_DXT1_EXT ||
31 format == GL_COMPRESSED_RGBA_S3TC_DXT1_EXT ||
32 format == GL_ETC1_RGB8_OES;
35 bool IsDepthTexture(GLenum format)
37 return format == GL_DEPTH_STENCIL_OES;
40 bool IsStencilTexture(GLenum format)
42 return format == GL_DEPTH_STENCIL_OES;
70 // Verify that format/type are one of the combinations from table 3.4.
71 bool CheckTextureFormatType(GLenum format, GLenum type
    [all...]
  /external/toolchain-utils/crosperf/
results_report.py 4 """A module to handle the report format."""
19 from cros_utils.tabulator import Format
67 # Strip the date and time off of local builds (which have the format
147 .format(ben_name, iterations))
160 new_column.extend(Column(LiteralResult(i), Format(), str(i + 1))
218 """Class to handle the report format."""
230 columns = [Column(RawResult(), Format()),
231 Column(MinResult(), Format()),
232 Column(MaxResult(), Format()),
233 Column(AmeanResult(), Format()),
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/
CreateBootDisk.sh 74 echo Format $EFI_BOOT_MEDIA ...
75 ## Format floppy disk
160 echo Format $EFI_BOOT_DEVICE ...
161 #Do format command.
192 echo Format $EFI_BOOT_DEVICE ...
193 #Do format command.
  /external/clang/include/clang/Frontend/
CompilerInstance.h 519 assert(Invocation && "cannot determine module format without invocation");
520 StringRef Format = getHeaderSearchOpts().ModuleFormat;
521 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
524 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
525 llvm::report_fatal_error("unknown module format");
533 assert(Invocation && "cannot determine module format without invocation");
534 StringRef Format = getHeaderSearchOpts().ModuleFormat;
535 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
538 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
539 llvm::report_fatal_error("unknown module format");
    [all...]
  /external/icu/icu4c/source/test/testdata/break_rules/
word.txt 24 Format = [\p{Word_Break = Format}];
65 ExtFmt = [Extend Format ZWJ];
word_POSIX.txt 23 Format = [\p{Word_Break = Format}];
64 ExtFmt = [Extend Format ZWJ];
  /external/swiftshader/src/OpenGL/libEGL/
Config.cpp 15 // Config.cpp: Implements the egl::Config class, describing the format, type
46 Config::Config(sw::Format displayFormat, EGLint minInterval, EGLint maxInterval, sw::Format renderTargetFormat, sw::Format depthStencilFormat, EGLint multiSample, bool conformant)
198 // Although we could support any format as an Android HWComposer compatible config by converting when necessary,
339 void ConfigSet::add(sw::Format displayFormat, EGLint minSwapInterval, EGLint maxSwapInterval, sw::Format renderTargetFormat, sw::Format depthStencilFormat, EGLint multiSample)
  /external/swiftshader/src/OpenGL/libGLESv2/
Renderbuffer.cpp 130 sw::Format RenderbufferTexture2D::getInternalFormat() const
207 sw::Format RenderbufferTexture3D::getInternalFormat() const
275 sw::Format RenderbufferTextureCubeMap::getInternalFormat() const
363 sw::Format Renderbuffer::getInternalFormat() const
425 format = GL_RGBA4;
446 return format;
449 sw::Format RenderbufferStorage::getInternalFormat() const
468 format = sw2es::ConvertBackBufferFormat(internalFormat);
473 Colorbuffer::Colorbuffer(int width, int height, GLenum format, GLsizei samples) : mRenderTarget(nullptr)
477 sw::Format requestedFormat = es2sw::ConvertRenderbufferFormat(format)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Frontend/
CompilerInstance.h 525 assert(Invocation && "cannot determine module format without invocation");
526 StringRef Format = getHeaderSearchOpts().ModuleFormat;
527 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
530 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
531 llvm::report_fatal_error("unknown module format");
539 assert(Invocation && "cannot determine module format without invocation");
540 StringRef Format = getHeaderSearchOpts().ModuleFormat;
541 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
544 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
545 llvm::report_fatal_error("unknown module format");
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Frontend/
CompilerInstance.h 525 assert(Invocation && "cannot determine module format without invocation");
526 StringRef Format = getHeaderSearchOpts().ModuleFormat;
527 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
530 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
531 llvm::report_fatal_error("unknown module format");
539 assert(Invocation && "cannot determine module format without invocation");
540 StringRef Format = getHeaderSearchOpts().ModuleFormat;
541 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
544 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
545 llvm::report_fatal_error("unknown module format");
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Frontend/
CompilerInstance.h 525 assert(Invocation && "cannot determine module format without invocation");
526 StringRef Format = getHeaderSearchOpts().ModuleFormat;
527 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
530 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
531 llvm::report_fatal_error("unknown module format");
539 assert(Invocation && "cannot determine module format without invocation");
540 StringRef Format = getHeaderSearchOpts().ModuleFormat;
541 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
544 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
545 llvm::report_fatal_error("unknown module format");
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
CompilerInstance.h 525 assert(Invocation && "cannot determine module format without invocation");
526 StringRef Format = getHeaderSearchOpts().ModuleFormat;
527 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
530 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
531 llvm::report_fatal_error("unknown module format");
539 assert(Invocation && "cannot determine module format without invocation");
540 StringRef Format = getHeaderSearchOpts().ModuleFormat;
541 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
544 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
545 llvm::report_fatal_error("unknown module format");
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Frontend/
CompilerInstance.h 525 assert(Invocation && "cannot determine module format without invocation");
526 StringRef Format = getHeaderSearchOpts().ModuleFormat;
527 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
530 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
531 llvm::report_fatal_error("unknown module format");
539 assert(Invocation && "cannot determine module format without invocation");
540 StringRef Format = getHeaderSearchOpts().ModuleFormat;
541 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
544 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
545 llvm::report_fatal_error("unknown module format");
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Frontend/
CompilerInstance.h 525 assert(Invocation && "cannot determine module format without invocation");
526 StringRef Format = getHeaderSearchOpts().ModuleFormat;
527 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
530 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
531 llvm::report_fatal_error("unknown module format");
539 assert(Invocation && "cannot determine module format without invocation");
540 StringRef Format = getHeaderSearchOpts().ModuleFormat;
541 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
544 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
545 llvm::report_fatal_error("unknown module format");
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Frontend/
CompilerInstance.h 525 assert(Invocation && "cannot determine module format without invocation");
526 StringRef Format = getHeaderSearchOpts().ModuleFormat;
527 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
530 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
531 llvm::report_fatal_error("unknown module format");
539 assert(Invocation && "cannot determine module format without invocation");
540 StringRef Format = getHeaderSearchOpts().ModuleFormat;
541 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
544 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
545 llvm::report_fatal_error("unknown module format");
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
CompilerInstance.h 525 assert(Invocation && "cannot determine module format without invocation");
526 StringRef Format = getHeaderSearchOpts().ModuleFormat;
527 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
530 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
531 llvm::report_fatal_error("unknown module format");
539 assert(Invocation && "cannot determine module format without invocation");
540 StringRef Format = getHeaderSearchOpts().ModuleFormat;
541 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
544 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
545 llvm::report_fatal_error("unknown module format");
    [all...]
  /external/libmtp/logs/
mtp-detect-asus-memo-pad7.txt 171 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
182 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
193 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
204 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
215 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
235 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
255 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
271 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
284 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
295 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONL
    [all...]
mtp-detect-asus-memo-pad7_2.txt 106 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
117 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
128 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
139 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
150 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
170 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
190 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
206 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
219 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
230 dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONL
    [all...]

Completed in 791 milliseconds

<<11121314151617181920>>