Searched refs:format (Results 276 - 300 of 5209) sorted by relevance

<<11121314151617181920>>

/external/libdrm/tests/util/
H A Dformat.h56 uint32_t format; member in struct:util_format_info
63 const struct util_format_info *util_format_info_find(uint32_t format);
/external/libexif/libexif/canon/
H A Dmnote-canon-entry.h24 #include <libexif/exif-format.h>
32 ExifFormat format; member in struct:_MnoteCanonEntry
/external/libexif/libexif/fuji/
H A Dmnote-fuji-entry.h24 #include <libexif/exif-format.h>
34 ExifFormat format; member in struct:_MnoteFujiEntry
/external/libexif/libexif/olympus/
H A Dmnote-olympus-entry.h24 #include <libexif/exif-format.h>
32 ExifFormat format; member in struct:_MnoteOlympusEntry
/external/libexif/libexif/pentax/
H A Dmnote-pentax-entry.h24 #include <libexif/exif-format.h>
32 ExifFormat format; member in struct:_MnotePentaxEntry
/external/libjpeg-turbo/
H A Dtjutil.h32 #define snprintf(str, n, format, ...) \
33 _snprintf_s(str, n, _TRUNCATE, format, __VA_ARGS__)
/external/libvncserver/test/
H A Dtjutil.h32 #define snprintf(str, n, format, ...) \
33 _snprintf_s(str, n, _TRUNCATE, format, __VA_ARGS__)
/external/lisa/libs/utils/android/
H A Dsystem.py53 log.info("systrace_start: Enabling extra ftrace event {}".format(ev))
54 ev_file = target.target.execute("ls /sys/kernel/debug/tracing/events/*/{}/enable".format(ev))
55 cmd = "echo 1 > {}".format(ev_file)
59 tr_file = target.target.execute("ls /sys/kernel/debug/tracing/events/*/{}/trigger".format(ev))
60 cmd = "echo {} > {}".format(conf['systrace']['event_triggers'][ev], tr_file)
77 device = "-e {}".format(device)
79 trace_cmd = systrace_pattern.format(systrace_path, device,
82 trace_cmd += " -t {}".format(time)
103 .format(ap_mode), as_root=True)
107 .format(ap_stat
[all...]
/external/lzma/CPP/7zip/UI/FileManager/
H A DFormatUtils.cpp18 UString MyFormatNew(const UString &format, const UString &argument) argument
20 UString result = format;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_describe.c44 util_sprintf(buf, "pipe_buffer<%u>", (unsigned)util_format_get_stride(ptr->format, ptr->width0));
47 util_sprintf(buf, "pipe_texture1d<%u,%s,%u>", ptr->width0, util_format_short_name(ptr->format), ptr->last_level);
50 util_sprintf(buf, "pipe_texture2d<%u,%u,%s,%u>", ptr->width0, ptr->height0, util_format_short_name(ptr->format), ptr->last_level);
53 util_sprintf(buf, "pipe_texture_rect<%u,%u,%s>", ptr->width0, ptr->height0, util_format_short_name(ptr->format));
56 util_sprintf(buf, "pipe_texture_cube<%u,%u,%s,%u>", ptr->width0, ptr->height0, util_format_short_name(ptr->format), ptr->last_level);
59 util_sprintf(buf, "pipe_texture3d<%u,%u,%u,%s,%u>", ptr->width0, ptr->height0, ptr->depth0, util_format_short_name(ptr->format), ptr->last_level);
80 util_sprintf(buf, "pipe_sampler_view<%s,%s>", res, util_format_short_name(ptr->format));
89 util_format_short_name(ptr->format));
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_texture_desc.h40 unsigned r300_get_pixel_alignment(enum pipe_format format,
53 unsigned r300_stride_to_width(enum pipe_format format,
H A Dr300_texture.h43 uint32_t r300_translate_texformat(enum pipe_format format,
48 uint32_t r500_tx_format_msb_bit(enum pipe_format format);
50 boolean r300_is_colorbuffer_format_supported(enum pipe_format format);
52 boolean r300_is_zs_format_supported(enum pipe_format format);
54 boolean r300_is_sampler_format_supported(enum pipe_format format);
58 enum pipe_format format,
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_tex_layout.c42 mesa_format format)
56 * | YUV 4:2:2 format | 8 | 4 | 4 | 4 | 4 |
57 * | BC1-5 compressed format (DXTn/S3TC) | 4 | 4 | 4 | 4 | 4 |
58 * | FXT1 compressed format | 8 | 8 | 8 | 8 | 8 |
68 if (_mesa_is_format_compressed(format)) {
73 _mesa_get_format_block_size(format, &i, &j);
82 mesa_format format)
96 * | BC1-5 compressed format (DXTn/S3TC) | 4 | 4 | 4 | 4 | 4 |
97 * | FXT1 compressed format | 4 | 4 | 4 | 4 | 4 |
109 if (_mesa_is_format_compressed(format))
41 intel_horizontal_texture_alignment_unit(struct intel_context *intel, mesa_format format) argument
81 intel_vertical_texture_alignment_unit(struct intel_context *intel, mesa_format format) argument
116 intel_get_texture_alignment_unit(struct intel_context *intel, mesa_format format, unsigned int *w, unsigned int *h) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_surface.h42 mesa_format format; member in struct:nouveau_surface
51 unsigned flags, unsigned format,
/external/python/cpython2/Tools/scripts/
H A Dcheckpip.py17 "https://pypi.python.org/pypi/{}/json".format(project),
24 "has {}".format(project, upstream_version, version))
/external/syslinux/com32/lib/
H A Dvfprintf.c12 int vfprintf(FILE * file, const char *format, va_list ap) argument
17 rv = vsnprintf(buffer, BUFFER_SIZE, format, ap);
H A Dbufprintf.c6 int vbufprintf(struct print_buf *buf, const char *format, va_list ap) argument
12 rv = vsnprintf(NULL, 0, format, ap);
29 rv = vsnprintf(buf->buf + buf->len, buf->size - buf->len, format, ap2);
36 int bufprintf(struct print_buf *buf, const char *format, ...) argument
41 va_start(ap, format);
42 rv = vbufprintf(buf, format, ap);
/external/swiftshader/third_party/subzero/pydir/
H A Dszbuild.py42 print 'Invalid range syntax: {p}'.format(p=pattern)
115 'le32-nacl-ld.gold').format(root=nacl_root)
122 '{target_dir}/lib').format(root=nacl_root,
133 '{linklib}/crtbegin.o'.format(linklib=linklib)] +
136 'szrt_sb_{target}.o').format(root=nacl_root, target=target),
137 '{linklib}/libpnacl_irt_shim_dummy.a'.format(linklib=linklib),
139 '{linklib}/libgcc.a'.format(linklib=linklib),
140 '{linklib}/libcrt_platform.a'.format(linklib=linklib),
142 '{linklib}/crtend.o'.format(linklib=linklib),
152 'le32-nacl-ld.gold').format(roo
[all...]
/external/elfutils/tests/
H A Drun-nm-self.sh26 for format_arg in --format=bsd --format=sysv --format=posix; do
/external/icu/icu4c/source/i18n/
H A Dwinnmfmt.h21 #include "unicode/format.h"
62 virtual UnicodeString& format(double number,
76 virtual UnicodeString& format(int32_t number,
90 virtual UnicodeString& format(int64_t number,
94 using NumberFormat::format;
97 // virtual UnicodeString &format(double number, UnicodeString &appendTo) const;
98 // virtual UnicodeString &format(int32_t number, UnicodeString &appendTo) const;
99 // virtual UnicodeString &format(int64_t number, UnicodeString &appendTo) const;
150 UnicodeString &format(int32_t numDigits, UnicodeString &appendTo, const wchar_t *format,
[all...]
/external/llvm/tools/llvm-objdump/
H A DELFDump.cpp56 outs() << "off " << format(Fmt, (uint64_t)Phdr.p_offset) << "vaddr "
57 << format(Fmt, (uint64_t)Phdr.p_vaddr) << "paddr "
58 << format(Fmt, (uint64_t)Phdr.p_paddr)
59 << format("align 2**%u\n",
61 << " filesz " << format(Fmt, (uint64_t)Phdr.p_filesz)
62 << "memsz " << format(Fmt, (uint64_t)Phdr.p_memsz) << "flags "
/external/pdfium/testing/libfuzzer/
H A Dpdf_jpx_fuzzer.cc29 FXDIB_Format format; local
31 format = FXDIB_8bppRgb;
33 format = FXDIB_Rgb;
35 format = FXDIB_Rgb32;
38 format = FXDIB_Rgb;
42 if (!bitmap->Create(width, height, format))
/external/icu/android_icu4j/src/samples/java/android/icu/samples/text/datetimepatterngenerator/
H A DDateTimePatternGeneratorSample.java44 "hhmm", // 12-hour-cycle format, i.e., 1:32 PM
45 "jjmm" // preferred hour format for the given locale, i.e., 24-hour-cycle format for fr_FR
64 // Get the format of the given date
65 System.out.printf("%-35s",sdf.format(date));
84 // Use DateTime.getPatternInstance to produce the same Date/Time format with predefined constant field value
94 // Use DateFormat.getPatternInstance to get the date/time format for the locale,
95 // and apply the format to the given date
96 String df=DateFormat.getPatternInstance(skeleton,locale).format(date);
126 SimpleDateFormat format
[all...]
/external/icu/icu4j/samples/src/com/ibm/icu/samples/text/datetimepatterngenerator/
H A DDateTimePatternGeneratorSample.java43 "hhmm", // 12-hour-cycle format, i.e., 1:32 PM
44 "jjmm" // preferred hour format for the given locale, i.e., 24-hour-cycle format for fr_FR
63 // Get the format of the given date
64 System.out.printf("%-35s",sdf.format(date));
83 // Use DateTime.getPatternInstance to produce the same Date/Time format with predefined constant field value
93 // Use DateFormat.getPatternInstance to get the date/time format for the locale,
94 // and apply the format to the given date
95 String df=DateFormat.getPatternInstance(skeleton,locale).format(date);
125 SimpleDateFormat format
[all...]
/external/libunwind/src/coredump/
H A D_UCD_find_proc_info.c38 if (ui->edi.ktab.format != -1 && ip >= ui->edi.ktab.start_ip && ip < ui->edi.ktab.end_ip)
42 if ((ui->edi.di_cache.format != -1
45 || (ui->edi.di_debug.format != -1
48 || (ui->edi.di_debug.format != -1
81 if (ui->edi.di_cache.format != -1
83 ui->edi.di_cache.format = -1;
85 if (ui->edi.di_debug.format != -1
87 ui->edi.di_debug.format = -1;
89 if (ui->edi.di_cache.format == -1
91 && ui->edi.di_arm.format
[all...]

Completed in 695 milliseconds

<<11121314151617181920>>