HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 1551 - 1575 of 11127) sorted by null

<<61626364656667686970>>

  /external/chromium_org/third_party/libevent/
evutil.c 224 evutil_snprintf(char *buf, size_t buflen, const char *format, ...)
228 va_start(ap, format);
229 r = evutil_vsnprintf(buf, buflen, format, ap);
235 evutil_vsnprintf(char *buf, size_t buflen, const char *format, va_list ap)
238 int r = _vsnprintf(buf, buflen, format, ap);
243 return _vscprintf(format, ap);
245 int r = vsnprintf(buf, buflen, format, ap);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
image.h 45 GLenum format, GLenum type,
53 GLenum format, GLenum type,
60 GLenum format, GLenum type,
67 GLenum format, GLenum type,
74 GLenum format, GLenum type,
80 GLint width, GLenum format, GLenum type );
86 GLenum format, GLenum type );
teximage.h 86 gl_format format);
93 GLenum internalFormat, GLenum format, GLenum type);
131 GLint internalFormat, GLenum format, GLenum type,
146 _mesa_es_error_check_format_and_type(GLenum format, GLenum type,
180 GLenum format, GLenum type, const GLvoid *pixels );
186 GLenum format, GLenum type, const GLvoid *pixels );
192 GLenum format, GLenum type, const GLvoid *pixels );
198 GLint border, GLenum format, GLenum type,
207 GLenum format, GLenum type,
215 GLenum format, GLenum type
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
_h_d_m_x.py 52 format = ""
56 format = format + "%4d"
60 format = "%" + repr(maxNameLen) + 's:' + format + ' ;'
61 writer.write(format % (("ppem",) + tuple(ppems)))
71 writer.write(format % ((glyphName,) + tuple(row)))
82 assert topRow[0] == "ppem:", "illegal hdmx format"
91 assert line[0][-1] == ":", "illegal hdmx format"
97 assert len(line) == len(ppems), "illegal hdmx format"
    [all...]
  /external/lldb/include/lldb/Core/
Stream.h 115 /// Format a C string from a printf style format and variable
119 /// @param[in] format
120 /// A printf style format string.
123 /// Any additional arguments needed for the printf format string.
129 PrintfAsRawHex8 (const char *format, ...) __attribute__ ((format (printf, 2, 3)));
132 /// Format a C string from a printf style format and variable
136 /// @param[in] format
    [all...]
  /external/mesa3d/src/mesa/main/
image.h 45 GLenum format, GLenum type,
53 GLenum format, GLenum type,
60 GLenum format, GLenum type,
67 GLenum format, GLenum type,
74 GLenum format, GLenum type,
80 GLint width, GLenum format, GLenum type );
86 GLenum format, GLenum type );
teximage.h 86 gl_format format);
93 GLenum internalFormat, GLenum format, GLenum type);
131 GLint internalFormat, GLenum format, GLenum type,
146 _mesa_es_error_check_format_and_type(GLenum format, GLenum type,
180 GLenum format, GLenum type, const GLvoid *pixels );
186 GLenum format, GLenum type, const GLvoid *pixels );
192 GLenum format, GLenum type, const GLvoid *pixels );
198 GLint border, GLenum format, GLenum type,
207 GLenum format, GLenum type,
215 GLenum format, GLenum type
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_base.cpp 141 bool GrFmtFilterFactory::CheckExtension( const char* format )
146 if( !format || !m_description )
149 // find the right-most extension of the passed format string
152 const char* ext = strchr( format + 1, '.' );
154 format = ext;
157 len = GetExtensionLength( format );
159 if( format[0] != '.' || len == 0 )
176 int c1 = tolower(format[i+1]);
  /external/qemu/audio/
winaudio.c 74 case WAVERR_BADFORMAT: reason="unsupported waveform-audio format"; break;
163 WAVEFORMATEX format; local
173 /* compute desired wave output format */
174 format.wFormatTag = WAVE_FORMAT_PCM;
175 format.nChannels = as->nchannels;
176 format.nSamplesPerSec = as->freq;
177 format.nAvgBytesPerSec = as->freq*as->nchannels;
187 fprintf(stderr, "qemu: winaudio: Bad output audio format: %d\n",
192 format.nAvgBytesPerSec = (format.nSamplesPerSec & format.nChannels) << shift;
409 WAVEFORMATEX format; local
    [all...]
  /frameworks/native/services/surfaceflinger/
Client.cpp 111 uint32_t w, uint32_t h, PixelFormat format, uint32_t flags,
128 PixelFormat format; member in class:android::MessageCreateLayer
133 uint32_t w, uint32_t h, PixelFormat format, uint32_t flags,
138 name(name), w(w), h(h), format(format), flags(flags) {
142 result = flinger->createLayer(name, client, w, h, format, flags,
149 name, this, w, h, format, flags, handle, gbp);
  /hardware/libhardware_legacy/audio/
AudioDumpInterface.h 40 int format,
49 virtual int format() const;
82 int format,
90 virtual int format() const;
123 int *format=0,
149 virtual size_t getInputBufferSize(uint32_t sampleRate, int format, int channelCount);
151 virtual AudioStreamIn* openInputStream(uint32_t devices, int *format, uint32_t *channels,
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
Support_Format.java 22 import java.text.Format;
37 protected void t_FormatWithField(int count, Format format, Object object,
38 String text, Format.Field field, int begin, int end) {
41 format.format(object, buffer, pos);
58 protected void t_Format(int count, Object object, Format format, Vector<FieldContainer> expectedResults) {
59 Vector<FieldContainer> results = findFields(format.formatToCharacterIterator(object));
61 format.format(object) + "\n"
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_Format.java 22 import java.text.Format;
36 protected void t_FormatWithField(int count, Format format, Object object,
37 String text, Format.Field field, int begin, int end) {
40 format.format(object, buffer, pos);
59 protected void t_Format(int count, Object object, Format format,
61 // System.out.println(format.format(object))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/
GLMessageFormatter.java 17 package com.android.ide.eclipse.gltrace.format;
28 * GLMessageFormatter is used to format and create a string representation for a {@link GLMessage}.
56 return String.format(" = (%s) %s", returnSpec.getCType(), //$NON-NLS-1$
63 return String.format("%s(%s)", apiSpec.getFunction(), //$NON-NLS-1$
103 return String.format("%f", var.getFloatValue(0)); //$NON-NLS-1$
122 return String.format("0x%x", var.getIntValue(0)); //$NON-NLS-1$
149 return String.format("[ %d bytes ]", var.getRawBytesList().get(0).size()); //$NON-NLS-1$
155 // Just format and return the pointer (points to device memory)
159 return String.format("0x%x", var.getIntValue(0)); //$NON-NLS-1$
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestClamp.java 96 message.append(String.format("%14.8g {%8x} %15a",
100 message.append(String.format("%14.8g {%8x} %15a",
104 message.append(String.format("%14.8g {%8x} %15a",
111 message.append(String.format("%14.8g {%8x} %15a",
176 message.append(String.format("%14.8g {%8x} %15a",
180 message.append(String.format("%14.8g {%8x} %15a",
184 message.append(String.format("%14.8g {%8x} %15a",
191 message.append(String.format("%14.8g {%8x} %15a",
256 message.append(String.format("%14.8g {%8x} %15a",
260 message.append(String.format("%14.8g {%8x} %15a"
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_main.c 308 const char *format; local
312 format = "%3lli";
316 format = "%5lli";
320 format = "%10lli";
324 format = "%20lli";
329 format = "?";
331 fprintf(fp, format, value);
335 const char *format; local
339 format = type.norm ? "%2x" : "%4llu";
343 format = type.norm ? "%4x" : "%6llx"
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
graw_util.h 39 enum pipe_format format; local
56 format = formats[i];
72 resource_temp.format = format;
89 surface_temp.format = resource_temp.format;
105 resource_temp.format = PIPE_FORMAT_S8_UINT_Z24_UNORM;
120 surface_temp.format = resource_temp.format;
221 int width, int height, enum pipe_format format,
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboTestCase.cpp 73 // Surface format and storage is choosen by render().
127 void FboTestCase::readPixels (tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias)
129 FboTestUtil::readPixels(*getCurrentContext(), dst, x, y, width, height, format, scale, bias); local
151 static bool isRequiredFormat (deUint32 format)
153 switch (format)
206 static std::vector<std::string> getEnablingExtensions (deUint32 format)
210 DE_ASSERT(!isRequiredFormat(format));
212 switch (format)
259 throw tcu::NotSupportedError("Format not supported");
262 static int getMinimumSampleCount (deUint32 format)
359 FboTestUtil::clearColorBuffer(*getCurrentContext(), format, value); local
    [all...]
  /external/deqp/modules/gles31/functional/
es31fFboTestCase.cpp 73 // Surface format and storage is choosen by render().
131 void FboTestCase::readPixels (tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias)
133 FboTestUtil::readPixels(*getCurrentContext(), dst, x, y, width, height, format, scale, bias); local
155 static bool isRequiredFormat (deUint32 format)
157 switch (format)
210 static std::vector<std::string> getEnablingExtensions (deUint32 format)
214 DE_ASSERT(!isRequiredFormat(format));
216 switch (format)
264 throw tcu::NotSupportedError("Format not supported");
267 static int getMinimumSampleCount (deUint32 format)
364 FboTestUtil::clearColorBuffer(*getCurrentContext(), format, value); local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_main.c 308 const char *format; local
312 format = "%3lli";
316 format = "%5lli";
320 format = "%10lli";
324 format = "%20lli";
329 format = "?";
331 fprintf(fp, format, value);
335 const char *format; local
339 format = type.norm ? "%2x" : "%4llu";
343 format = type.norm ? "%4x" : "%6llx"
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
graw_util.h 39 enum pipe_format format; local
56 format = formats[i];
72 resource_temp.format = format;
89 surface_temp.format = resource_temp.format;
105 resource_temp.format = PIPE_FORMAT_S8_UINT_Z24_UNORM;
120 surface_temp.format = resource_temp.format;
221 int width, int height, enum pipe_format format,
    [all...]
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
QueryController.java 121 * format: [container_selector, PATTERN=[INSTANCE=x, PATTERN=[the_pattern]]
243 Log.i(LOG_TAG, String.format(
268 Log.i(LOG_TAG, String.format("Matched selector: %s <<==>> [%s]", selector, fromNode));
274 * to translate the regular_selector portion. It has the following format:
296 Log.d(LOG_TAG, formatLog(String.format("%s",
329 Log.w(LOG_TAG, String.format(
332 Log.w(LOG_TAG, String.format("parent = %s", fromNode.toString()));
340 String.format("Skipping invisible child: %s", childNode.toString()));
353 * to translate the pattern_selector portion. It has the following format:
411 String.format("%s", subSelector.dumpToString(false))))
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcColorEquiv.cpp 28 * -r fmt - reference graphic format
51 * RGBA8888 graphic format. The -r option can be used to specify a
52 * non-default reference frame graphic format. The graphic format of
54 * parameter. Intentionally there is no default for the graphic format
237 case 'r': // Reference graphic format
241 "format of: %s", optarg);
260 // equivalence graphic format.
269 "format of: %s", argv[optind]);
274 testPrintI("refFormat: %u %s", refFormat->format, refFormat->desc)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/
MeteringTest.java 94 Log.v(TAG, String.format("Maximum number if metering area is %d", mMaxNumMeteringArea));
191 mDebugText += String.format(
195 mDebugText += String.format(
202 mDebugText += String.format(
206 mDebugText += String.format(
218 Log.v(TAG, String.format("%s", mDebugText));
254 Log.v(TAG, String.format("Running test for %d square with weights %d, %d",
256 mReferenceLogs.add(String.format(
274 mReferenceLogs.add(String.format(
293 mReferenceLogs.add(String.format(
    [all...]
  /external/chromium_org/v8/src/
utils.cc 80 void PrintF(const char* format, ...) {
82 va_start(arguments, format);
83 base::OS::VPrint(format, arguments);
88 void PrintF(FILE* out, const char* format, ...) {
90 va_start(arguments, format);
91 base::OS::VFPrint(out, format, arguments);
96 void PrintPID(const char* format, ...) {
99 va_start(arguments, format);
100 base::OS::VPrint(format, arguments);
105 int SNPrintF(Vector<char> str, const char* format, ...)
    [all...]

Completed in 2129 milliseconds

<<61626364656667686970>>