HomeSort by relevance Sort by last modified time
    Searched full:formats (Results 326 - 350 of 4480) sorted by null

<<11121314151617181920>>

  /external/deqp/framework/opengl/
gluContextInfo.cpp 202 vector<int> formats(numFormats);
204 gl.getIntegerv(GL_COMPRESSED_TEXTURE_FORMATS, &formats[0]);
209 std::copy(formats.begin(), formats.end(), std::inserter(formatSet, formatSet.begin()));
250 const set<int>& formats = m_compressedTextureFormats.getValue(m_context); local
251 return formats.find(format) != formats.end();
  /external/lldb/scripts/Python/interface/
SBTypeCategory.i 153 '''An accessor function that returns a list() that contains all formats in a lldb.SBCategory object.'''
154 formats = []
156 formats.append(self.GetFormatAtIndex(idx))
157 return formats
192 __swig_getmethods__["formats"] = get_formats_array
193 if _newclass: formats = property(get_formats_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFormat objects contained in this category''')
196 if _newclass: format = property(get_formats_access_object, None, doc=r'''A read only property that returns an object that you can use to look for formats by index or type name.''')
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_table.py 82 def write_format_table(formats):
95 u_format_pack.generate(formats)
97 for format in formats:
200 for format in formats:
212 formats = []
214 formats.extend(parse(arg))
215 write_format_table(formats)
  /external/mesa3d/src/gallium/drivers/svga/
svga_format.c 89 /* Float formats (only 1, 2 and 4-component formats supported) */
553 * deprecated/unsupported formats, and formats which are implicitely assumed to
587 * block_width and block_height are one for uncompressed formats and
588 * greater than one for compressed formats.
589 * Note: we don't handle formats that are unsupported, according to
  /external/pixman/test/
alphamap.c 8 static const pixman_format_code_t formats[] = variable
147 pixman_format_code_t sf = formats[s];
148 pixman_format_code_t df = formats[d];
242 * path even with 10bpc formats. This results in incorrect
243 * results here, so only do the red check for narrow formats
293 for (i = 0; i < ARRAY_LENGTH (formats); ++i)
295 for (j = 0; j < ARRAY_LENGTH (formats); ++j)
  /external/chromium_org/content/renderer/media/
media_stream_video_source_unittest.cc 43 media::VideoCaptureFormats formats; local
44 formats.push_back(media::VideoCaptureFormat(
46 formats.push_back(media::VideoCaptureFormat(
48 formats.push_back(media::VideoCaptureFormat(
50 formats.push_back(media::VideoCaptureFormat(
52 mock_source_->SetSupportedFormats(formats);
207 void SetSourceSupportedFormats(const media::VideoCaptureFormats& formats) {
208 mock_source_->SetSupportedFormats(formats);
443 media::VideoCaptureFormats formats; local
444 formats.push_back(media::VideoCaptureFormat
484 media::VideoCaptureFormats formats; local
724 media::VideoCaptureFormats formats; local
757 media::VideoCaptureFormats formats; local
    [all...]
media_stream_video_capturer_source.cc 159 // If there are no formats in use, try to retrieve the whole list of
183 const media::VideoCaptureFormats& formats) {
184 DVLOG(3) << "OnDeviceSupportedFormatsEnumerated: " << formats.size()
191 if (formats.size()) {
192 source_formats_callback_.Run(formats);
video_capture_message_filter.h 55 // Called upon reception of device's supported formats back from browser.
121 // Receive a device's supported formats back from browser process.
126 // Receive the formats in-use by a device back from browser process.
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 27 * graphic formats:
67 * Measurements are made for each of the graphic formats specified as
68 * positional parameters on the command-line. If no graphic formats
237 static vector<string> formats; variable
321 * 2. Form a list of command-line specified graphic formats. If
322 * no formats are specified, then form a list of all known formats.
390 // Positional parameters provide the names of graphic formats that
392 // known graphic formats when no positional parameters are provided.
394 // No command-line specified graphic formats
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputFinisher.java 348 InsnFormat[] formats = makeFormatsArray(); local
349 reserveRegisters(formats);
350 massageInstructions(formats);
362 * @return {@code non-null;} the array of formats
378 * them. It also updates the given {@code formats} array so
382 * @param formats {@code non-null;} array of per-instruction format selections
384 private void reserveRegisters(InsnFormat[] formats) {
392 int newReservedCount = calculateReservedCount(formats);
428 * {@code formats} list to help avoid extra work in future
431 * @param formats {@code non-null;} array of per-instruction format selection
    [all...]
  /dalvik/libdex/
InstrUtils.h 27 * Possible instruction formats associated with Dalvik opcodes.
30 * opcodes and instruction formats.
68 * formats include such an indexed reference (e.g., 21c and 35c).
115 u1* formats; /* InstructionFormat elements */ member in struct:InstructionInfoTables
178 return (InstructionFormat) gDexOpcodeInfo.formats[opcode];
  /external/chromium_org/ppapi/c/private/
ppb_flash_clipboard.h 46 * This enumeration contains the predefined clipboard data formats.
93 * sensible way by using the pepper API. Data stored in custom formats can
131 const uint32_t formats[],
156 const PP_Flash_Clipboard_Format formats[],
172 const uint32_t formats[],
  /external/chromium_org/ppapi/cpp/
image_data.h 48 /// image data formats. Refer to
78 /// <code>PP_IMAGEDATAFORMAT_RGBA_PREMUL</code> formats are always supported.
79 /// Other image formats do not make this guarantee, and should be checked
115 /// pixel formats.
124 /// pixel formats.
  /external/chromium_org/ppapi/cpp/private/
flash_clipboard.cc 111 const std::vector<uint32_t>& formats,
113 if (formats.size() != data_items.size())
129 formats_ptr = &formats[0];
151 formats_ptr = &formats[0];
167 old_formats.push_back(static_cast<PP_Flash_Clipboard_Format>(formats[i]));
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
shader-leak.c 20 enum pipe_format formats[] = { variable in typeref:enum:pipe_format
177 * Also, no easy way of querying supported formats if the screen
180 for (i = 0; formats[i] != PIPE_FORMAT_NONE; i++) {
182 formats[i],
197 templat.format = formats[i];
  /external/chromium_org/third_party/yasm/source/patched-yasm/
yasm_dbgfmts.7 6 .\" Manual: Yasm Supported Debug Formats
10 .TH "YASM_DBGFMTS" "7" "October 2006" "Yasm" "Yasm Supported Debug Formats"
22 yasm_dbgfmts \- Yasm Supported Debugging Formats
28 The standard Yasm distribution includes a number of modules for different debugging formats\&. The debugging information is embedded into the object file\&. Use of a non\-\(lqnull\(rq
38 The CV8 debug format is used by Microsoft Visual Studio 2005 (version 8\&.0) and is completely undocumented, although it bears strong similarities to earlier CodeView formats\&. Yasm\'s support for the CV8 debug format is currently limited to generating assembly\-level line number information (to allow some level of source\-level debugging)\&. The CV8 debug information is stored in the \&.debug$S and \&.debug$T sections of the Win64 object file\&.
  /external/chromium_org/ui/gfx/x/
x11_types.cc 48 XPixmapFormatValues* formats = XListPixmapFormats(dpy, &count); local
49 if (!formats)
54 if (formats[i].depth == depth) {
55 bits_per_pixel = formats[i].bits_per_pixel;
60 XFree(formats);
  /external/lzma/CPP/7zip/UI/Common/
LoadCodecs.h 164 CObjectVector<CArcInfoEx> Formats;
190 const CArcInfoEx &ai = Formats[formatIndex];
204 const CArcInfoEx &ai = Formats[formatIndex];
218 for (int i = 0; i < Formats.Size(); i++)
220 const CArcInfoEx &arc = Formats[i];
LoadCodecs.cpp 49 #define kFormatsFolderName TEXT("Formats")
289 Formats.Add(item);
385 startSize = Formats.Size();
387 used = used || (Formats.Size() != startSize);
425 Formats.Clear();
443 Formats.Add(item);
464 for (int i = 0; i < Formats.Size(); i++)
466 const CArcInfoEx &arc = Formats[i];
479 for (int i = 0; i < Formats.Size(); i++)
480 if (Formats[i].FindExtension(ext) >= 0)
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
shader-leak.c 20 enum pipe_format formats[] = { variable in typeref:enum:pipe_format
177 * Also, no easy way of querying supported formats if the screen
180 for (i = 0; formats[i] != PIPE_FORMAT_NONE; i++) {
182 formats[i],
197 templat.format = formats[i];
  /system/core/include/system/
graphics.h 46 * "linear" color pixel formats:
48 * The pixel formats below contain sRGB data but are otherwise treated
49 * as linear formats, i.e.: no special operation is performed when
50 * reading or writing into a buffer in one of these formats
59 * sRGB color pixel formats:
83 * This range is reserved for pixel formats that are specific to the HAL
85 * communicate video pixel formats between their HAL modules. These formats
87 * gralloc buffer of one of these formats must be supported for use with the
299 * Android flexible YCbCr formats
    [all...]
  /external/chromium_org/media/ffmpeg/
ffmpeg_common.h 119 // Converts FFmpeg's pixel formats to its corresponding supported video format.
123 // Converts video formats to its corresponding FFmpeg's pixel formats.
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
pmu.c 139 LIST_HEAD(formats);
151 ret = perf_pmu__format_parse(format, &formats);
155 ret = perf_pmu__config_terms(&formats, &attr, terms);
  /hardware/samsung_slsi/exynos5/original-kernel-headers/linux/
v4l2-mediabus.h 18 * These pixel codes uniquely identify data formats on the media bus. Mostly
19 * they correspond to similarly named V4L2_PIX_FMT_* formats, format 0 is
95 /* JPEG compressed formats - next is 0x4002 */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_arrays.py 4 formats = "bBhHiIlLqQfd" variable
6 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
16 for fmt in formats:
7 c_long, c_ulonglong, c_float, c_double, c_longdouble variable

Completed in 1834 milliseconds

<<11121314151617181920>>