/external/swiftshader/src/Main/ |
FrameBufferGDI.hpp | 29 void flip(void *source, Format sourceFormat, size_t sourceStride) override; 30 void blit(void *source, const Rect *sourceRect, const Rect *destRect, Format sourceFormat, size_t sourceStride) override; 32 void flip(HWND windowOverride, void *source, Format sourceFormat, size_t sourceStride) override; 33 void blit(HWND windowOverride, void *source, const Rect *sourceRect, const Rect *destRect, Format sourceFormat, size_t sourceStride) override;
|
FrameBufferWin.hpp | 36 virtual void flip(HWND windowOverride, void *source, Format sourceFormat, size_t sourceStride) = 0; 37 virtual void blit(HWND windowOverride, void *source, const Rect *sourceRect, const Rect *destRect, Format sourceFormat, size_t sourceStride) = 0;
|
FrameBufferX11.hpp | 38 void flip(void *source, Format sourceFormat, size_t sourceStride) override {blit(source, 0, 0, sourceFormat, sourceStride);}; 39 void blit(void *source, const Rect *sourceRect, const Rect *destRect, Format sourceFormat, size_t sourceStride) override;
|
/system/vold/fs/ |
F2fs.h | 32 status_t Format(const std::string& source);
|
/external/deqp/framework/opengl/ |
gluCallLogWrapper.cpp | 47 inline tcu::Format::ArrayPointer<T> getPointerStr (const T* arr, deUint32 size) 53 inline tcu::Format::ArrayPointer<T> getPointerStr (const T* arr, int size) 93 return str << tcu::Format::Enum<int, 2>(getFramebufferAttachmentTypeName, *fmt.value); 96 return str << tcu::Format::Enum<int, 2>(getCubeMapFaceName, *fmt.value); 99 return str << tcu::Format::Enum<int, 2>(getTypeName, *fmt.value); 102 return str << tcu::Format::Enum<int, 2>(getFramebufferColorEncodingName, *fmt.value); 105 return str << tcu::Format::Enum<int, 2>(getBooleanName, *fmt.value);
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
utilities.h | 44 bool IsCompressed(GLenum format, GLint clientVersion); 46 GLenum ValidateCompressedFormat(GLenum format, GLint clientVersion, bool expectCompressedFormats); 49 bool ValidReadPixelsFormatType(GLenum internalFormat, GLenum internalType, GLenum format, GLenum type, GLint clientVersion); 50 bool IsDepthTexture(GLenum format); 51 bool IsStencilTexture(GLenum format); 55 bool ValidateTextureFormatType(GLenum format, GLenum type, GLint internalformat, GLint clientVersion); 82 sw::Format ConvertRenderbufferFormat(GLenum format); 87 GLuint GetAlphaSize(sw::Format colorFormat); 88 GLuint GetRedSize(sw::Format colorFormat) [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/ |
Print.c | 24 VSPrint, Print, SPrint format specification has the follwoing form
91 IN CONST CHAR_W *Format,
98 SPrint function to process format and place the results in Buffer.
102 Buffer - Wide char buffer to print the results of the parsing of Format into.
107 Format - Format string see file header for more details.
109 ... - Vararg list consumed by processing Format.
120 VA_START (Marker, Format);
121 Return = VSPrint (Buffer, BufferSize, Format, Marker);
140 VSPrint function to process format and place the results in Buffer. Since a [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiDxeDebugLibReportStatusCode/ |
DebugLib.c | 30 the message specified by Format and the associated variable argument list to
33 If Format is NULL, then ASSERT().
36 @param Format Format string for the debug message to print.
43 IN CONST CHAR8 *Format,
55 // If Format is NULL, then ASSERT().
57 ASSERT (Format != NULL);
66 TotalSize = sizeof (EFI_DEBUG_INFO) + 12 * sizeof (UINT64) + AsciiStrLen (Format) + 1;
78 // 256 byte mini Var Arg stack. That is followed by the format string.
80 VA_START (Marker, Format);
[all...] |
/external/v8/src/wasm/ |
wasm-result.cc | 30 void ErrorThrower::Format(i::Handle<i::JSFunction> constructor, 31 const char* format, va_list args) { 36 base::OS::VSNPrintF(buffer, 255, format, args); 49 void ErrorThrower::TypeError(const char* format, ...) { 52 va_start(arguments, format); 53 Format(isolate_->type_error_function(), format, arguments); 57 void ErrorThrower::RangeError(const char* format, ...) { 60 va_start(arguments, format); 61 Format(isolate_->range_error_function(), format, arguments) [all...] |
/external/compiler-rt/lib/profile/ |
InstrProfilingPort.h | 87 #define PROF_ERR(Format, ...) \ 88 fprintf(stderr, "LLVM Profile Error: " Format, __VA_ARGS__); 90 #define PROF_WARN(Format, ...) \ 91 fprintf(stderr, "LLVM Profile Warning: " Format, __VA_ARGS__); 93 #define PROF_NOTE(Format, ...) \ 94 fprintf(stderr, "LLVM Profile Note: " Format, __VA_ARGS__);
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
GCOV.cpp | 11 // 'gcov' format. 30 /// isGCDAFile - Return true if Format identifies a .gcda file. 31 static bool isGCDAFile(GCOVFormat Format) { 32 return Format == GCDA_402 || Format == GCDA_404; 35 /// isGCNOFile - Return true if Format identifies a .gcno file. 36 static bool isGCNOFile(GCOVFormat Format) { 37 return Format == GCNO_402 || Format == GCNO_404; 42 GCOVFormat Format = Buffer.readGCOVFormat() [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/ |
AttributeInfo.java | 26 import static com.android.ide.common.api.IAttributeInfo.Format.BOOLEAN; 27 import static com.android.ide.common.api.IAttributeInfo.Format.COLOR; 28 import static com.android.ide.common.api.IAttributeInfo.Format.DIMENSION; 29 import static com.android.ide.common.api.IAttributeInfo.Format.ENUM; 30 import static com.android.ide.common.api.IAttributeInfo.Format.FLAG; 31 import static com.android.ide.common.api.IAttributeInfo.Format.FLOAT; 32 import static com.android.ide.common.api.IAttributeInfo.Format.FRACTION; 33 import static com.android.ide.common.api.IAttributeInfo.Format.INTEGER; 34 import static com.android.ide.common.api.IAttributeInfo.Format.STRING; 49 * the attribute was declared. This must include a format (string, reference, float, etc.) [all...] |
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/PrePiLib/ |
ReportStatusCode.c | 109 by ErrorLevel, Marker, and Format. If type GUID in Data is
111 Format from the optional data area of the status code buffer specified by Data.
114 the Format. If the DEBUG() information could be extracted from Data, then
120 If Format is NULL, then ASSERT().
124 @param Marker Pointer to the variable argument list associated with Format.
125 @param Format Pointer to a Null-terminated ASCII format string of a
129 specified by ErrorLevel, Marker, and Format.
140 OUT CHAR8 **Format
148 ASSERT (Format != NULL); [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/BasePrintLib/ |
PrintLibInternal.c | 282 based on a Null-terminated format string and a VA_LIST argument list.
284 VSPrint function to process format and place the results in Buffer. Since a
291 parsing of Format into.
297 @param[in] Format A Null-terminated format string.
299 processing Format.
301 by processing Format.
313 IN CONST CHAR8 *Format,
394 // Make sure format string cannot contain more than PcdMaximumUnicodeStringLength
397 ASSERT (StrSize ((CHAR16 *) Format) != 0); [all...] |
/external/skia/src/core/ |
SkBlitMask.h | 18 * Returns true if the device config and mask format were supported. 67 * May return nullptr if config or format are not supported. 69 static RowProc RowFactory(SkColorType, SkMask::Format, RowFlags); 75 static RowProc PlatformRowProcs(SkColorType, SkMask::Format, RowFlags);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/ |
BuilderInstruction.java | 34 import org.jf.dexlib2.Format; 56 public abstract Format getFormat();
|
/packages/apps/Gallery2/jni_jpegstream/src/ |
jpeg_reader.h | 36 * Call setup with a valid InputStream reference and pixel format. 46 Jpeg_Config::Format format); 83 Jpeg_Config::Format mFormat;
|
jpeg_writer.h | 37 * width, pixel format, and compression quality in range (0, 100]. 42 Jpeg_Config::Format format, int32_t quality); 78 Jpeg_Config::Format mFormat;
|
/device/linaro/bootloader/edk2/ArmPkg/Library/SemiHostingDebugLib/ |
DebugLib.c | 35 the message specified by Format and the associated variable argument list to
38 If Format is NULL, then ASSERT().
41 @param Format Format string for the debug message to print.
48 IN CONST CHAR8 *Format,
56 // If Format is NULL, then ASSERT().
58 ASSERT (Format != NULL);
70 VA_START (Marker, Format);
71 AsciiVSPrint (AsciiBuffer, sizeof (AsciiBuffer), Format, Marker);
112 // Generate the ASSERT() message in Unicode format
[all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/ |
VariableFormat.h | 32 UINT8 Format;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseDebugLibNull/ |
DebugLib.c | 30 the message specified by Format and the associated variable argument list to
33 If Format is NULL, then ASSERT().
36 @param Format Format string for the debug message to print.
43 IN CONST CHAR8 *Format,
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseDebugLibSerialPort/ |
DebugLib.c | 54 GetDebugPrintErrorLevel (), then print the message specified by Format and the
57 If Format is NULL, then ASSERT().
60 @param Format Format string for the debug message to print.
62 based on the format string specified by Format.
69 IN CONST CHAR8 *Format,
77 // If Format is NULL, then ASSERT().
79 ASSERT (Format != NULL);
91 VA_START (Marker, Format);
[all...] |
/external/clang/include/clang/Frontend/ |
PCHContainerOperations.h | 47 /// PCHGenerator that produces a wrapper file format containing a 61 /// Equivalent to the format passed to -fmodule-format= 105 const PCHContainerWriter *getWriterOrNull(StringRef Format) { 106 return Writers[Format].get(); 108 const PCHContainerReader *getReaderOrNull(StringRef Format) { 109 return Readers[Format].get();
|
/external/gemmlowp/internal/ |
kernel_SSE.h | 36 Format; 46 std::int32_t run_depth_cells = run_depth / Format::kDepth; 209 Format; 219 const std::int64_t run_depth_cells = run_depth / Format::kDepth;
|
/external/llvm/tools/llvm-cov/ |
CoverageViewOptions.h | 33 OutputFormat Format;
|