HomeSort by relevance Sort by last modified time
    Searched refs:fmt (Results 1 - 25 of 5263) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/
v4l2_test.h 16 #define dprintf1(fmt) printf(fmt)
17 #define dprintf(fmt, ...) printf(fmt, __VA_ARGS__)
19 #define dprintf1(fmt)
20 #define dprintf(fmt, ...)
  /device/linaro/bootloader/edk2/StdLib/Include/
err.h 20 void errx (int eval, const char *fmt, ...);
21 void err (int eval, const char *fmt, ...);
22 void warnx(const char *fmt, ...);
23 void warn (const char *fmt, ...);
  /external/clang/test/Sema/Inputs/
format-unused-system-args.h 4 #define PRINT2(fmt, a1, a2) \
5 printf((fmt), (a1), (a2))
7 #define PRINT1(fmt, a1) \
8 PRINT2((fmt), (a1), 0)
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/vetpkg/
b.go 3 import "fmt"
6 fmt.Printf("%d")
c.go 5 import "fmt"
8 fmt.Printf("%d", 3, 4)
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/vetpkg/
b.go 3 import "fmt"
6 fmt.Printf("%d")
  /external/clang/test/PCH/
__va_list_tag.c 13 int myvprintf(const char *fmt, va_list args) {
14 return myvfprintf(fmt, args);
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_test_log.h 48 * \param fmt Message to be logged
50 void SDLTest_Log(const char *fmt, ...);
55 * \param fmt Message to be logged
57 void SDLTest_LogError(const char *fmt, ...);
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_test_log.h 48 * \param fmt Message to be logged
50 void SDLTest_Log(const char *fmt, ...);
55 * \param fmt Message to be logged
57 void SDLTest_LogError(const char *fmt, ...);
  /prebuilts/misc/windows/sdl2/include/
SDL_test_log.h 48 * \param fmt Message to be logged
50 void SDLTest_Log(const char *fmt, ...);
55 * \param fmt Message to be logged
57 void SDLTest_LogError(const char *fmt, ...);
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_test_log.h 48 * \param fmt Message to be logged
50 void SDLTest_Log(const char *fmt, ...);
55 * \param fmt Message to be logged
57 void SDLTest_LogError(const char *fmt, ...);
  /system/chre/platform/slpi/include/chre/target_platform/
log.h 29 #define CHRE_SLPI_LOG(level, fmt, ...) \
32 ashLog(ASH_SOURCE_CHRE, level, fmt, ##__VA_ARGS__); \
36 #define LOGE(fmt, ...) CHRE_SLPI_LOG(ASH_LOG_ERROR, fmt, ##__VA_ARGS__)
37 #define LOGW(fmt, ...) CHRE_SLPI_LOG(ASH_LOG_WARN, fmt, ##__VA_ARGS__)
38 #define LOGI(fmt, ...) CHRE_SLPI_LOG(ASH_LOG_INFO, fmt, ##__VA_ARGS__)
39 #define LOGD(fmt, ...) CHRE_SLPI_LOG(ASH_LOG_DEBUG, fmt, ##__VA_ARGS__
    [all...]
  /system/chre/util/include/chre/util/nanoapp/
log.h 44 #define CHRE_LOG(level, fmt, ...) \
47 chreLog(level, LOG_TAG " " fmt, ##__VA_ARGS__); \
52 #define LOGE(fmt, ...) CHRE_LOG(CHRE_LOG_ERROR, fmt, ##__VA_ARGS__)
54 #define LOGE(fmt, ...) CHRE_LOG_NULL(fmt, ##__VA_ARGS__)
58 #define LOGW(fmt, ...) CHRE_LOG(CHRE_LOG_WARN, fmt, ##__VA_ARGS__)
60 #define LOGW(fmt, ...) CHRE_LOG_NULL(fmt, ##__VA_ARGS__
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
sscanf.c 15 sscanf(const char *__restrict str, char const *__restrict fmt, ...)
19 while (*fmt != '\0') {
20 if (*fmt++ == '%') {
  /external/curl/src/
tool_msgs.h 26 void warnf(struct GlobalConfig *config, const char *fmt, ...);
27 void notef(struct GlobalConfig *config, const char *fmt, ...);
29 void helpf(FILE *errors, const char *fmt, ...);
  /system/chre/platform/linux/include/chre/target_platform/
log.h 31 #define CHRE_LINUX_LOG(level, color, fmt, ...) \
32 printf("\e[" color "m%s %s:%d\t" fmt "\e[0m\n", \
37 #define CHRE_LINUX_LOG(level, color, fmt, ...) \
39 "\e[" color "m%s %s:%d\t" fmt "\e[0m", \
43 #define LOGE(fmt, ...) CHRE_LINUX_LOG("E", "91", fmt, ##__VA_ARGS__)
44 #define LOGW(fmt, ...) CHRE_LINUX_LOG("W", "93", fmt, ##__VA_ARGS__)
45 #define LOGI(fmt, ...) CHRE_LINUX_LOG("I", "96", fmt, ##__VA_ARGS__
    [all...]
  /external/compiler-rt/test/asan/TestCases/
printf-5.c 17 volatile char fmt[2]; local
18 memcpy((char *)fmt, "%c %d %f %s\n", sizeof(fmt));
19 printf((char *)fmt, c, x, f, s);
  /external/deqp/framework/qphelper/
qpDebugOut.h 33 void qpPrintf (const char* fmt, ...);
34 void qpPrintv (const char* fmt, va_list va);
36 void qpDief (const char* fmt, ...);
37 void qpDiev (const char* fmt, va_list va);
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_format.h 36 translate_texture_format(enum pipe_format fmt);
39 translate_rs_format(enum pipe_format fmt);
42 translate_rs_format_rb_swap(enum pipe_format fmt);
45 translate_vertex_format_type(enum pipe_format fmt);
  /external/selinux/libsemanage/tests/
utilities.c 30 semanage_handle_t * handle, const char *fmt, ...)
  /prebuilts/go/darwin-x86/doc/play/
hello.go 3 import "fmt"
6 fmt.Println("Hello, ??")
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/local/easysub/
easysub.go 3 import "fmt"
6 fmt.Println("easysub.Hello")
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/local/sub/sub/
subsub.go 3 import "fmt"
6 fmt.Println("subsub.Hello")
  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/testdata/
imports.go 3 import "fmt"
5 var Hello = fmt.Sprintf("Hello, world")
  /prebuilts/go/linux-x86/doc/play/
hello.go 3 import "fmt"
6 fmt.Println("Hello, ??")

Completed in 841 milliseconds

1 2 3 4 5 6 7 8 91011>>