HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 51 - 75 of 8082) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/ceres-solver/internal/ceres/
stringprintf.cc 51 void StringAppendV(string* dst, const char* format, va_list ap) {
60 int result = vsnprintf(space, sizeof(space), format, backup_ap);
74 result = vsnprintf(NULL, 0, format, backup_ap);
91 result = vsnprintf(buf, length, format, backup_ap);
102 string StringPrintf(const char* format, ...) {
104 va_start(ap, format);
106 StringAppendV(&result, format, ap);
111 const string& SStringPrintf(string* dst, const char* format, ...) {
113 va_start(ap, format);
115 StringAppendV(dst, format, ap)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
format_pack.h 51 _mesa_get_pack_ubyte_rgba_function(gl_format format);
55 _mesa_get_pack_float_rgba_function(gl_format format);
59 _mesa_get_pack_float_z_func(gl_format format);
63 _mesa_get_pack_uint_z_func(gl_format format);
67 _mesa_get_pack_ubyte_stencil_func(gl_format format);
72 _mesa_pack_float_rgba_row(gl_format format, GLuint n,
76 _mesa_pack_ubyte_rgba_row(gl_format format, GLuint n,
81 _mesa_pack_ubyte_rgba_rect(gl_format format, GLuint width, GLuint height,
86 _mesa_pack_float_z_row(gl_format format, GLuint n,
90 _mesa_pack_uint_z_row(gl_format format, GLuint n
    [all...]
format_unpack.h 28 _mesa_unpack_rgba_row(gl_format format, GLuint n,
32 _mesa_unpack_ubyte_rgba_row(gl_format format, GLuint n,
36 _mesa_unpack_uint_rgba_row(gl_format format, GLuint n,
40 _mesa_unpack_rgba_block(gl_format format,
46 _mesa_unpack_float_z_row(gl_format format, GLuint n,
51 _mesa_unpack_uint_z_row(gl_format format, GLuint n,
55 _mesa_unpack_ubyte_stencil_row(gl_format format, GLuint n,
59 _mesa_unpack_uint_24_8_depth_stencil_row(gl_format format, GLuint n,
  /external/mdnsresponder/mDNSShared/
mDNSDebug.c 53 mDNSexport void verbosedebugf_(const char *format, ...)
57 va_start(ptr,format);
58 buffer[mDNS_vsnprintf(buffer, sizeof(buffer), format, ptr)] = 0;
65 mDNSlocal void LogMsgWithLevelv(mDNSLogLevel_t logLevel, const char *format, va_list ptr)
68 buffer[mDNS_vsnprintf((char *)buffer, sizeof(buffer), format, ptr)] = 0;
75 va_start(ptr,format); \
76 LogMsgWithLevelv(L, format, ptr); \
82 void LogMsg_(const char *format, ...) LOG_HELPER_BODY(MDNS_LOG_MSG)
83 void LogOperation_(const char *format, ...) LOG_HELPER_BODY(MDNS_LOG_OPERATION)
84 void LogSPS_(const char *format, ...) LOG_HELPER_BODY(MDNS_LOG_SPS
    [all...]
  /external/mesa3d/src/mesa/main/
format_pack.h 51 _mesa_get_pack_ubyte_rgba_function(gl_format format);
55 _mesa_get_pack_float_rgba_function(gl_format format);
59 _mesa_get_pack_float_z_func(gl_format format);
63 _mesa_get_pack_uint_z_func(gl_format format);
67 _mesa_get_pack_ubyte_stencil_func(gl_format format);
72 _mesa_pack_float_rgba_row(gl_format format, GLuint n,
76 _mesa_pack_ubyte_rgba_row(gl_format format, GLuint n,
81 _mesa_pack_ubyte_rgba_rect(gl_format format, GLuint width, GLuint height,
86 _mesa_pack_float_z_row(gl_format format, GLuint n,
90 _mesa_pack_uint_z_row(gl_format format, GLuint n
    [all...]
format_unpack.h 28 _mesa_unpack_rgba_row(gl_format format, GLuint n,
32 _mesa_unpack_ubyte_rgba_row(gl_format format, GLuint n,
36 _mesa_unpack_uint_rgba_row(gl_format format, GLuint n,
40 _mesa_unpack_rgba_block(gl_format format,
46 _mesa_unpack_float_z_row(gl_format format, GLuint n,
51 _mesa_unpack_uint_z_row(gl_format format, GLuint n,
55 _mesa_unpack_ubyte_stencil_row(gl_format format, GLuint n,
59 _mesa_unpack_uint_24_8_depth_stencil_row(gl_format format, GLuint n,
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
Log.java 30 public void debug(String format, Object... args) {
32 info(format, args);
37 public void debugNoln(String format, Object... args) {
39 String s = String.format(format, args);
44 public void info(String format, Object... args) {
45 String s = String.format(format, args);
49 public void error(String format, Object... args) {
50 String s = String.format(format, args)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
videocommon.h 118 VideoFormat(const VideoFormat& format)
119 : width(format.width),
120 height(format.height),
121 interval(format.interval),
122 fourcc(format.fourcc) {
135 bool operator==(const VideoFormat& format) const {
136 return width == format.width && height == format.height &&
137 interval == format.interval && fourcc == format.fourcc
    [all...]
  /external/clang/test/Sema/
attr-format.c 5 void a(const char *a, ...) __attribute__((format(printf, 1,2))); // no-error
6 void b(const char *a, ...) __attribute__((format(printf, 1,1))); // expected-error {{'format' attribute parameter 3 is out of bounds}}
7 void c(const char *a, ...) __attribute__((format(printf, 0,2))); // expected-error {{'format' attribute parameter 2 is out of bounds}}
8 void d(const char *a, int c) __attribute__((format(printf, 1,2))); // expected-error {{format attribute requires variadic function}}
9 void e(char *str, int c, ...) __attribute__((format(printf, 2,3))); // expected-error {{format argument not a string type}}
12 void f(xpto c, va_list list) __attribute__((format(printf, 1, 0))); // no-erro
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_pixels.c 35 * Allocate a pixel format structure and fill it according to the given info.
40 SDL_PixelFormat *format; local
43 /* Allocate an empty pixel format structure */
44 format = SDL_malloc(sizeof(*format));
45 if ( format == NULL ) {
49 SDL_memset(format, 0, sizeof(*format));
50 format->alpha = SDL_ALPHA_OPAQUE;
52 /* Set up the format */
    [all...]
  /external/bluetooth/bluedroid/btif/co/
bta_ag_co.c 32 #define LOGI(format, ...) fprintf (stdout, LOG_TAG format"\n", ## __VA_ARGS__)
33 #define LOGD(format, ...) fprintf (stdout, LOG_TAG format"\n", ## __VA_ARGS__)
34 #define LOGV(format, ...) fprintf (stdout, LOG_TAG format"\n", ## __VA_ARGS__)
35 #define LOGE(format, ...) fprintf (stderr, LOG_TAG format"\n", ## __VA_ARGS__)
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_sampler.h 45 enum pipe_format format);
50 enum pipe_format format);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_format.h 31 nv30_format_info(struct pipe_screen *pscreen, enum pipe_format format)
33 return &nv30_format_info_table[format];
38 nv30_format(struct pipe_screen *pscreen, enum pipe_format format)
40 return &nv30_format_table[format];
45 nv30_vtxfmt(struct pipe_screen *pscreen, enum pipe_format format)
47 return &nv30_vtxfmt_table[format];
52 nv30_texfmt(struct pipe_screen *pscreen, enum pipe_format format)
54 return &nv30_texfmt_table[format];
  /external/clang/test/CodeGen/Inputs/
stdio.h 2 extern int vfprintf(struct FILE *s, const char *format, __builtin_va_list arg);
3 extern int vprintf(const char *format, __builtin_va_list arg);
  /external/clang/test/PCH/
va_arg.cpp 14 void f(char *buffer, unsigned count, const char* format, va_list argptr) {
15 vsnprintf(buffer, count, format, argptr);
  /external/clang/test/SemaCXX/
attr-format.cpp 3 static void f(const char*, ...) __attribute__((format(printf, 1, 2)));
7 // the format argument is argument 2 here.
8 void g(const char*, ...) __attribute__((format(printf, 2, 3)));
11 void h(const char*, ...) __attribute__((format(printf, 1, 4))); // \
12 expected-error{{implicit this argument as the format string}}
13 void h2(const char*, ...) __attribute__((format(printf, 2, 1))); // \
18 void operator() (const char*, ...) __attribute__((format(printf, 2, 3)));
22 struct A { void a(const char*,...) __attribute((format(printf,2,3))); };
32 __attribute__((format(printf, 2, 3)));
  /external/compiler-rt/lib/
eprintf.c 28 void __eprintf(const char* format, const char* assertion_expression,
31 fprintf(stderr, format, assertion_expression, line, file);
  /external/e2fsprogs/intl/
printf.c 1 /* Formatted output to strings, using POSIX/XSI format strings with positions.
80 libintl_vfprintf (FILE *stream, const char *format, va_list args)
82 if (strchr (format, '$') == NULL)
83 return vfprintf (stream, format, args);
87 char *result = libintl_vasnprintf (NULL, &length, format, args);
101 libintl_fprintf (FILE *stream, const char *format, ...)
106 va_start (args, format);
107 retval = libintl_vfprintf (stream, format, args);
114 libintl_vprintf (const char *format, va_list args)
116 return libintl_vfprintf (stdout, format, args)
    [all...]
  /external/elfutils/backends/
alpha_auxv.c 34 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format)
40 *format = "b"
i386_auxv.c 34 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format)
40 *format = "b"
ppc_auxv.c 34 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format)
40 *format = "b"
sparc_auxv.c 34 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format)
40 *format = "b"
  /external/harfbuzz/src/
harfbuzz-debug.h 18 void Android_Debug(const char* file, int line, const char* function, const char* format, ...)
19 __attribute__((format(printf, 4, 5))); /* 4=format 5=params */;
  /external/mesa3d/src/gallium/auxiliary/util/
u_sampler.h 45 enum pipe_format format);
50 enum pipe_format format);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_format.h 31 nv30_format_info(struct pipe_screen *pscreen, enum pipe_format format)
33 return &nv30_format_info_table[format];
38 nv30_format(struct pipe_screen *pscreen, enum pipe_format format)
40 return &nv30_format_table[format];
45 nv30_vtxfmt(struct pipe_screen *pscreen, enum pipe_format format)
47 return &nv30_vtxfmt_table[format];
52 nv30_texfmt(struct pipe_screen *pscreen, enum pipe_format format)
54 return &nv30_texfmt_table[format];

Completed in 1204 milliseconds

1 23 4 5 6 7 8 91011>>