HomeSort by relevance Sort by last modified time
    Searched refs:Format (Results 351 - 375 of 1259) sorted by null

<<11121314151617181920>>

  /external/skia/src/core/
SkScalerContext.h 160 SkMask::Format getFormat() const {
161 return static_cast<SkMask::Format>(fMaskFormat);
219 SkMask::Format getMaskFormat() const {
220 return (SkMask::Format)fRec.fMaskFormat;
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
ArrayDataMethodItem.java 29 package org.jf.baksmali.Adaptors.Format;
InstructionMethodItemFactory.java 29 package org.jf.baksmali.Adaptors.Format;
56 switch (instruction.getOpcode().format) {
OffsetInstructionFormatMethodItem.java 29 package org.jf.baksmali.Adaptors.Format;
63 switch (opcode.format) {
  /external/swiftshader/src/D3D9/
Direct3DSurface9.hpp 31 Direct3DSurface9(Direct3DDevice9 *device, Unknown *container, int width, int height, D3DFORMAT format, D3DPOOL pool, D3DMULTISAMPLE_TYPE multiSample, unsigned int quality, bool lockableOverride, unsigned long usage);
59 static sw::Format translateFormat(D3DFORMAT format);
60 static int bytes(D3DFORMAT format);
63 static unsigned int memoryUsage(int width, int height, D3DFORMAT format);
69 const D3DFORMAT format; member in class:D3D9::Direct3DSurface9
Direct3DVolume9.hpp 33 Direct3DVolume9(Direct3DDevice9 *device, Direct3DVolumeTexture9 *container, int width, int height, int depth, D3DFORMAT format, D3DPOOL pool, unsigned long usage);
53 static sw::Format translateFormat(D3DFORMAT format);
54 static unsigned int memoryUsage(int width, int height, int depth, D3DFORMAT format);
62 const D3DFORMAT format; member in class:D3D9::Direct3DVolume9
  /external/swiftshader/src/OpenGL/libGL/
Image.hpp 32 Image(Texture *parentTexture, GLsizei width, GLsizei height, GLenum format, GLenum type);
33 Image(Texture *parentTexture, GLsizei width, GLsizei height, sw::Format internalFormat, int multiSampleDepth, bool lockable, bool renderTarget);
35 void loadImageData(GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLint unpackAlignment, const void *input);
46 virtual sw::Format getInternalFormat();
53 static sw::Format selectInternalFormat(GLenum format, GLenum type);
85 const GLenum format; member in class:gl::Image
87 const sw::Format internalFormat;
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/
Renderbuffer.cpp 130 sw::Format RenderbufferTexture2D::getInternalFormat() const
203 sw::Format Renderbuffer::getInternalFormat() const
255 format = GL_RGBA4_OES;
276 return format;
279 sw::Format RenderbufferStorage::getInternalFormat() const
298 format = sw2es::ConvertBackBufferFormat(internalFormat);
303 Colorbuffer::Colorbuffer(int width, int height, GLenum format, GLsizei samples) : mRenderTarget(nullptr)
307 sw::Format requestedFormat = es2sw::ConvertRenderbufferFormat(format);
323 this->format = format
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
DiffLog.cpp 27 StringRef LogBuilder::getFormat() const { return Format; }
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-filepath.cc 119 String dot_extension(String::Format(".%s", extension));
182 file = String::Format("%s.%s", base_name.c_str(), extension);
184 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
196 return FilePath(String::Format("%s%c%s", dir.c_str(), kPathSeparator,
  /frameworks/base/media/java/android/media/
MediaMuxer.java 74 metadata track, track's mime format must start with prefix "application/", e.g. "applicaton/gyro".
75 Metadata's format/layout will be defined by the application. Writing metadata is nearly the same as
80 the metadata's mime format. When using{@link android.media.MediaExtractor} to extract the file with
81 metadata track, the mime format of the metadata will be extracted into {@link android.media.MediaFormat}.
254 * Defines the output format. These constants are used with constructor.
261 /** MPEG4 media file format*/
263 /** WEBM media file format*/
265 /** 3GPP media file format*/
276 public @interface Format {}
279 private static native long nativeSetup(@NonNull FileDescriptor fd, int format)
    [all...]
  /prebuilts/go/darwin-x86/src/text/tabwriter/
example_test.go 16 // Format in tab-separated columns with a tab stop of 8.
23 // Format right-aligned in space-separated columns of minimal width 5
  /prebuilts/go/darwin-x86/src/time/
zoneinfo_test.go 28 const format = "Mon, 02 Jan 2006 15:04:05 -0700 (MST)"
54 s := time.Unix(test.unix, 0).In(z).Format(format)
58 s = time.Unix(test.unix+1, 0).In(z).Format(format)
  /prebuilts/go/linux-x86/src/text/tabwriter/
example_test.go 16 // Format in tab-separated columns with a tab stop of 8.
23 // Format right-aligned in space-separated columns of minimal width 5
  /prebuilts/go/linux-x86/src/time/
zoneinfo_test.go 28 const format = "Mon, 02 Jan 2006 15:04:05 -0700 (MST)"
54 s := time.Unix(test.unix, 0).In(z).Format(format)
58 s = time.Unix(test.unix+1, 0).In(z).Format(format)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimationContentAssist.java 23 import com.android.ide.common.api.IAttributeInfo.Format;
129 EnumSet<Format> formats = desc.getAttributeInfo().getFormats();
130 if (formats.contains(Format.INTEGER)
131 || formats.contains(Format.FLOAT)) {
  /sdk/find_java2/src/
JavaPath.cpp 48 s.Format(_T("%d.%d"), JAVA_MAJOR(mVersion), JAVA_MINOR(mVersion));
  /system/vold/fs/
F2fs.cpp 72 status_t Format(const std::string& source) {
  /external/mesa3d/src/mesa/main/
accum.c 154 if (accRb->Format == MESA_FORMAT_SIGNED_RGBA_16) {
209 if (accRb->Format == MESA_FORMAT_SIGNED_RGBA_16) {
287 if (accRb->Format == MESA_FORMAT_SIGNED_RGBA_16) {
298 _mesa_unpack_rgba_row(colorRb->Format, width, colorMap, rgba);
379 if (accRb->Format == MESA_FORMAT_SIGNED_RGBA_16) {
401 _mesa_unpack_rgba_row(colorRb->Format, width, colorMap, dest);
422 _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),
  /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/swiftshader/src/OpenGL/common/
Image.hpp 43 sw::Format ConvertFormatType(GLenum format, GLenum type);
44 sw::Format SelectInternalFormat(GLenum format, GLenum type);
45 GLsizei ComputePitch(GLsizei width, GLenum format, GLenum type, GLint alignment);
46 GLsizei ComputeCompressedSize(GLsizei width, GLsizei height, GLenum format);
47 size_t ComputePackingOffset(GLenum format, GLenum type, GLsizei width, GLsizei height, GLint alignment, GLint skipImages, GLint skipRows, GLint skipPixels);
53 Image(Texture *parentTexture, GLsizei width, GLsizei height, GLenum format, GLenum type)
54 : sw::Surface(parentTexture->getResource(), width, height, 1, SelectInternalFormat(format, type), true, true),
55 width(width), height(height), format(format), type(type), internalFormat(SelectInternalFormat(format, type)), depth(1)
180 const GLenum format; member in class:egl::Image
    [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);

Completed in 660 milliseconds

<<11121314151617181920>>