/external/toybox/tests/ |
D | printf.test | 11 PRINTF="$(which printf)" 13 testing "printf text" "$PRINTF TEXT" "TEXT" "" "" 14 testing "printf escapes" "$PRINTF 'one\ntwo\n\v\t\r\f\e\b\athree'" \ 16 testing "printf %b escapes" "$PRINTF %b 'one\ntwo\n\v\t\r\f\e\b\athree'" \ 18 testing "printf null" "$PRINTF 'x\0y' | od -An -tx1" ' 78 00 79\n' "" "" 19 testing "printf trailing slash" "$PRINTF 'abc\'" 'abc\' "" "" 21 testing "printf not octal" "$PRINTF '\9'" '\9' "" "" 22 testing "printf hex" "$PRINTF 'A\x1b\x2B\x3Q\xa' | od -An -tx1" \ 24 testing "printf %x" "$PRINTF '%x\n' 0x2a" "2a\n" "" "" 26 testing "printf %d 42" "$PRINTF %d 42" "42" "" "" [all …]
|
/external/mesa3d/src/gallium/drivers/i915/ |
D | i915_debug_fp.c | 36 PRINTF( in PRINTF() function 139 PRINTF(stream, "T_DIFFUSE"); in print_reg_type_nr() 142 PRINTF(stream, "T_SPECULAR"); in print_reg_type_nr() 145 PRINTF(stream, "T_FOG_W"); in print_reg_type_nr() 148 PRINTF(stream, "T_TEX%d", nr); in print_reg_type_nr() 153 PRINTF(stream, "oC"); in print_reg_type_nr() 159 PRINTF(stream, "oD"); in print_reg_type_nr() 167 PRINTF(stream, "%s[%d]", regname[type], nr); in print_reg_type_nr() 188 PRINTF(stream, "."); in print_reg_neg_swizzle() 192 PRINTF(stream, "-"); in print_reg_neg_swizzle() [all …]
|
D | i915_debug.c | 70 PRINTF( in PRINTF() function 89 PRINTF(stream, "Error - zero length packet (0x%08x)\n", stream->ptr[0]); in debug() 95 PRINTF(stream, "%08x: ", stream->offset); in debug() 98 PRINTF(stream, "%s (%d dwords):\n", name, len); in debug() 100 PRINTF(stream, "\t0x%08x\n", ptr[i]); in debug() 101 PRINTF(stream, "\n"); in debug() 138 PRINTF(stream, "%s %s (%d dwords):\n", name, prim, len); in debug_prim() 139 PRINTF(stream, "\t0x%08x\n", ptr[0]); in debug_prim() 142 PRINTF(stream, "\t0x%08x // %f\n", ptr[i], *(float *)&ptr[i]); in debug_prim() 144 PRINTF(stream, "\t0x%08x\n", ptr[i]); in debug_prim() [all …]
|
/external/vboot_reference/ |
D | Makefile | 81 PRINTF := printf macro 83 PRINTF := : macro 864 @${PRINTF} " RM $(subst ${BUILD}/,,$@)\n" 866 @${PRINTF} " AR $(subst ${BUILD}/,,$@)\n" 873 @${PRINTF} " RM $(subst ${BUILD}/,,$@)\n" 875 @${PRINTF} " AR $(subst ${BUILD}/,,$@)\n" 882 @${PRINTF} " RM $(subst ${BUILD}/,,$@)\n" 884 @${PRINTF} " AR $(subst ${BUILD}/,,$@)\n" 891 @${PRINTF} " RM $(subst ${BUILD}/,,$@)\n" 893 @${PRINTF} " AR $(subst ${BUILD}/,,$@)\n" [all …]
|
/external/clang/test/CodeGen/ |
D | func-in-block.c | 4 extern void PRINTF(const char *); 9 PRINTF(__func__); in main() 12 PRINTF(__func__); in main()
|
/external/opencv3/modules/calib3d/src/ |
D | calibinit.cpp | 80 static int PRINTF( const char* fmt, ... ) in PRINTF() function 87 static int PRINTF( const char*, ... ) in PRINTF() function 374 PRINTF("Quad count: %d/%d\n", quad_count, expected_corners_num); in cvFindChessboardCorners() 426 PRINTF("Starting ordering of inner quads\n"); in cvFindChessboardCorners() 429 PRINTF("Orig count: %d After ordering: %d\n", icount, count); in cvFindChessboardCorners() 465 … PRINTF("Connected group: %d orig count: %d cleaned: %d\n", group_idx, icount, count); in cvFindChessboardCorners() 468 PRINTF("Connected group: %d count: %d cleaned: %d\n", group_idx, icount, count); in cvFindChessboardCorners() 693 PRINTF("col: %d row: %d\n", col, row); in icvOrderFoundConnectedQuads() 704 PRINTF("HIST[%d] = %d\n", i, col_hist[i]); in icvOrderFoundConnectedQuads() 720 PRINTF("Size: %dx%d Pattern: %dx%d\n", dcol, drow, w, h); in icvOrderFoundConnectedQuads() [all …]
|
/external/opencv/cv/src/ |
D | cvcalibinit.cpp | 67 static int PRINTF( const char* fmt, ... ) in PRINTF() function 75 static int PRINTF( const char*, ... ) in PRINTF() function 288 PRINTF("EX quad count: %d/%d\n", quad_count, expected_corners_num); in cvFindChessboardCorners() 333 PRINTF("Quad count: %d/%d\n", quad_count, expected_corners_num); in cvFindChessboardCorners() 384 PRINTF("Starting ordering of inner quads\n"); in cvFindChessboardCorners() 387 PRINTF("Orig count: %d After ordering: %d\n", icount, count); in cvFindChessboardCorners() 423 … PRINTF("Connected group: %d orig count: %d cleaned: %d\n", group_idx, icount, count); in cvFindChessboardCorners() 426 PRINTF("Connected group: %d count: %d cleaned: %d\n", group_idx, icount, count); in cvFindChessboardCorners() 613 PRINTF("col: %d row: %d\n", col, row); in icvOrderFoundConnectedQuads() 626 PRINTF("HIST[%d] = %d\n", i, col_hist[i+HSIZE]); in icvOrderFoundConnectedQuads() [all …]
|