HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 476 - 500 of 6363) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/mesa/src/src/glx/
renderpix.c 69 * \param format Format of the image
83 GLenum format, GLenum type, const GLvoid * src,
95 (*gc->fillImage) (gc, dim, width, height, depth, format, type,
121 GLsizei width, GLsizei height, GLenum format,
129 compsize = __glImageSize(width, 1, 1, format, type, 0);
130 compsize2 = __glImageSize(height, 1, 1, format, type, 0);
146 __GLX_PUT_LONG(16, format);
150 (*gc->fillImage) (gc, 1, width, 1, 1, format, type,
155 (*gc->fillImage) (gc, 1, height, 1, 1, format, type
    [all...]
  /external/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
Android.mk 17 test_makefile := external/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/Android.mk
19 test_name := input.output/iostream.format/input.streams/istream.formatted/istream_extractors/signed_char
23 test_name := input.output/iostream.format/input.streams/istream.formatted/istream_extractors/unsigned_char_pointer
27 test_name := input.output/iostream.format/input.streams/istream.formatted/istream_extractors/unsigned_char
31 test_name := input.output/iostream.format/input.streams/istream.formatted/istream_extractors/basic_ios
35 test_name := input.output/iostream.format/input.streams/istream.formatted/istream_extractors/streambuf
39 test_name := input.output/iostream.format/input.streams/istream.formatted/istream_extractors/ios_base
43 test_name := input.output/iostream.format/input.streams/istream.formatted/istream_extractors/signed_char_pointer
47 test_name := input.output/iostream.format/input.streams/istream.formatted/istream_extractors/chart
51 test_name := input.output/iostream.format/input.streams/istream.formatted/istream_extractors/wchar_t_pointe
    [all...]
  /external/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/
Android.mk 17 test_makefile := external/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/Android.mk
19 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/CharT
23 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/signed_char
27 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_to_wide_pointer
31 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/unsigned_char_pointer
35 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char
39 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/unsigned_char
43 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_to_wide
47 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_pointer
51 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/signed_char_pointe
    [all...]
  /external/mesa3d/src/glx/
renderpix.c 69 * \param format Format of the image
83 GLenum format, GLenum type, const GLvoid * src,
95 (*gc->fillImage) (gc, dim, width, height, depth, format, type,
121 GLsizei width, GLsizei height, GLenum format,
129 compsize = __glImageSize(width, 1, 1, format, type, 0);
130 compsize2 = __glImageSize(height, 1, 1, format, type, 0);
146 __GLX_PUT_LONG(16, format);
150 (*gc->fillImage) (gc, 1, width, 1, 1, format, type,
155 (*gc->fillImage) (gc, 1, height, 1, 1, format, type
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsUtils.java 109 private static Size[] getOutputSizes(CameraCharacteristics ccs, int format)
116 return configMap.getOutputSizes(format);
121 int format = image.getFormat(); local
132 "Invalid image format passed to getDataFromImage: " + image.getFormat());
135 if (format == ImageFormat.JPEG) {
141 } else if (format == ImageFormat.YUV_420_888 || format == ImageFormat.RAW_SENSOR
142 || format == ImageFormat.RAW10) {
144 data = new byte[width * height * ImageFormat.getBitsPerPixel(format) / 8];
156 int bytesPerPixel = ImageFormat.getBitsPerPixel(format) / 8
207 int format = image.getFormat(); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
AlgorithmParametersSpi.java 26 protected boolean isASN1FormatString(String format)
28 return format == null || format.equals("ASN.1");
79 String format)
81 if (isASN1FormatString(format) || format.equalsIgnoreCase("X.509"))
139 String format)
142 if (format.equalsIgnoreCase("X.509")
143 || format.equalsIgnoreCase("ASN.1"))
149 throw new IOException("Unknown parameter format " + format)
    [all...]
  /external/deqp/framework/delibs/deimage/
deImage.c 29 static int deImageFormat_getBytesPerPixel (deImageFormat format)
31 DE_ASSERT(format == DE_IMAGEFORMAT_XRGB8888 || format == DE_IMAGEFORMAT_ARGB8888);
32 DE_UNREF(format);
38 int offset = ((y*image->width) + x) * deImageFormat_getBytesPerPixel(image->format);
44 deImage* deImage_create (int width, int height, deImageFormat format)
47 int bpp = deImageFormat_getBytesPerPixel(format);
53 image->format = format;
74 switch (image->format)
    [all...]
  /external/lldb/tools/debugserver/source/
DNBDataRef.cpp 330 const char *format
366 case TypeUInt8: str_offset += snprintf(str + str_offset, sizeof(str) - str_offset, format ? format : " %2.2x", Get8(&offset)); break;
370 str_offset += snprintf(str + str_offset, sizeof(str) - str_offset, format ? format : " %c", isprint(ch) ? ch : ' ');
373 case TypeUInt16: str_offset += snprintf(str + str_offset, sizeof(str) - str_offset, format ? format : " %4.4x", Get16(&offset)); break;
374 case TypeUInt32: str_offset += snprintf(str + str_offset, sizeof(str) - str_offset, format ? format : " %8.8x", Get32(&offset)); break;
375 case TypeUInt64: str_offset += snprintf(str + str_offset, sizeof(str) - str_offset, format ? format : " %16.16llx", Get64(&offset)); break
    [all...]
  /external/chromium_org/third_party/icu/source/io/
uprntf_p.c 66 /* C K is old format */
68 /* S U is old format */
77 * format specification, for example 'd' or 's'.
80 * information on the format specification.
98 * Struct encapsulating a single uprintf format specification.
119 /* Sets the sign of a format based on u_printf_spec_info */
122 u_printf_set_sign(UNumberFormat *format,
129 *prefixBufLen = unum_getTextAttribute(format,
136 /* unum_setSymbol(format, UNUM_PLUS_SIGN_SYMBOL, gSpaceStr, 1, &status); */
137 unum_setTextAttribute(format, UNUM_POSITIVE_PREFIX, gSpaceStr, 1, status)
278 UNumberFormat *format; local
354 UNumberFormat *format; local
489 UNumberFormat *format; local
558 UNumberFormat *format; local
678 UNumberFormat *format; local
803 UNumberFormat *format; local
876 UNumberFormat *format; local
    [all...]
  /external/icu/icu4c/source/io/
uprntf_p.c 66 /* C K is old format */
68 /* S U is old format */
77 * format specification, for example 'd' or 's'.
80 * information on the format specification.
98 * Struct encapsulating a single uprintf format specification.
119 /* Sets the sign of a format based on u_printf_spec_info */
122 u_printf_set_sign(UNumberFormat *format,
129 *prefixBufLen = unum_getTextAttribute(format,
136 /* unum_setSymbol(format, UNUM_PLUS_SIGN_SYMBOL, gSpaceStr, 1, &status); */
137 unum_setTextAttribute(format, UNUM_POSITIVE_PREFIX, gSpaceStr, 1, status)
278 UNumberFormat *format; local
354 UNumberFormat *format; local
489 UNumberFormat *format; local
558 UNumberFormat *format; local
678 UNumberFormat *format; local
803 UNumberFormat *format; local
876 UNumberFormat *format; local
    [all...]
  /external/libpcap/missing/
snprintf.c 290 const unsigned char *format = (const unsigned char *)char_format; local
293 while((c = *format++)) {
302 while((c = *format++)){
327 c = *format++;
331 c = *format++;
337 c = *format++;
341 c = *format++;
345 c = *format++;
353 c = *format++;
356 c = *format++
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
pmu.c 72 * Reading/parsing the default pmu format definition, which should be
74 * /sys/bus/event_source/devices/<dev>/format as sysfs group attributes.
76 static int pmu_format(const char *name, struct list_head *format)
87 "%s" EVENT_SOURCE_DEVICE_PATH "%s/format", sysfs, name);
90 return 0; /* no error if format does not exist */
92 if (perf_pmu__format_parse(path, format))
299 LIST_HEAD(format);
305 * type value and format definitions. Load both right
308 if (pmu_format(name, &format))
323 INIT_LIST_HEAD(&pmu->format);
378 struct perf_pmu_format *format; local
420 struct perf_pmu_format *format; local
542 struct perf_pmu_format *format; local
    [all...]
  /external/chromium_org/content/browser/media/capture/
desktop_capture_device_unittest.cc 45 scoped_refptr<Buffer>(media::VideoFrame::Format format,
163 media::VideoCaptureFormat format; local
171 SaveArg<2>(&format),
183 EXPECT_GT(format.frame_size.width(), 0);
184 EXPECT_GT(format.frame_size.height(), 0);
185 EXPECT_EQ(kFrameRate, format.frame_rate);
186 EXPECT_EQ(media::PIXEL_FORMAT_ARGB, format.pixel_format);
188 EXPECT_EQ(format.frame_size.GetArea() * 4, frame_size);
198 media::VideoCaptureFormat format; local
241 media::VideoCaptureFormat format; local
    [all...]
  /art/runtime/base/
stringprintf.h 34 void StringAppendV(std::string* dst, const char* format, va_list ap);
  /bootable/recovery/minadbd/
utils.h 56 char* buff_add (char* buff, char* buffEnd, const char* format, ... );
  /cts/tests/tests/text/src/android/text/format/cts/
LocaleUtils.java 17 package android.text.format.cts;
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyUtils.java 38 return DATE_FORMATTER.format(DATE);
  /development/perftests/panorama/feature_mos/src/mosaic_renderer/
FrameBuffer.cpp 24 bool FrameBuffer::Init(int width, int height, GLenum format) {
35 format,
39 format,
66 mFormat = format;
  /development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
TestHelper.java 34 String.format("Source comparison failure: expected:<%s> but was:<%s>", expected, actual),
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestCaseOutputAST.java 54 return String.format(" -> %s", treeString);
TestCaseOutputReturn.java 39 return String.format(" returns [%s]", script);
TestCaseOutputStdOut.java 43 return String.format(" -> \"%s\"", script);
  /external/chromium_org/chrome/browser/extensions/api/spellcheck/
spellcheck_api.cc 29 const std::string& format) {
30 if (format == "hunspell") {
32 } else if (format == "text") {
70 GetDictionaryFormat(spellcheck_info->format));
  /external/chromium_org/chrome/browser/sync_file_system/
logger.h 23 // Logs a message using printf format.
27 const char* format,
  /external/chromium_org/media/base/
video_frame.cc 30 // Rounds up |coded_size| if necessary for |format|.
31 static gfx::Size AdjustCodedSize(VideoFrame::Format format,
34 switch (format) {
52 VideoFrame::Format format,
57 DCHECK(format != VideoFrame::UNKNOWN &&
58 format != VideoFrame::NV12 &&
59 format != VideoFrame::NATIVE_TEXTURE);
61 DCHECK(format != VideoFrame::HOLE)
295 Format format; local
    [all...]

Completed in 2375 milliseconds

<<11121314151617181920>>