Home
last modified time | relevance | path

Searched full:printf (Results 1 – 25 of 6184) sorted by relevance

12345678910>>...248

/third_party/alsa-utils/iecset/
Diecbits.c73 printf("Mode: consumer\n"); in dump_iec958()
74 printf("Data: "); in dump_iec958()
76 printf("audio\n"); in dump_iec958()
78 printf("non-audio\n"); in dump_iec958()
80 printf("Rate: "); in dump_iec958()
83 printf("22050 Hz\n"); in dump_iec958()
86 printf("24000 Hz\n"); in dump_iec958()
89 printf("32000 Hz\n"); in dump_iec958()
92 printf("44100 Hz\n"); in dump_iec958()
95 printf("48000 Hz\n"); in dump_iec958()
[all …]
/third_party/ffmpeg/libavutil/tests/
Dchannel_layout.c83 printf("Testing av_channel_layout_standard\n"); in main()
86 printf("%-14s ", bp.str); in main()
96 printf("%s\n", bp.str); in main()
100 printf("\nTesting av_channel_name\n"); in main()
102 printf("With AV_CHAN_FRONT_LEFT: %27s\n", bp.str); in main()
104 printf("With AV_CHAN_FRONT_RIGHT: %26s\n", bp.str); in main()
106 printf("With 63: %43s\n", bp.str); in main()
108 printf("With AV_CHAN_AMBISONIC_BASE: %23s\n", bp.str); in main()
110 printf("With AV_CHAN_AMBISONIC_END: %24s\n", bp.str); in main()
112 printf("Testing av_channel_description\n"); in main()
[all …]
/third_party/mesa3d/src/amd/drm-shim/
Damdgpu_dump_states.c104 printf(".mem = {\n"); in amdgpu_dump_memory()
105 printf(" .vram = {\n"); in amdgpu_dump_memory()
106 printf(" .total_heap_size = UINT64_C(%"PRIu64"),\n", (uint64_t)info.vram.total_heap_size); in amdgpu_dump_memory()
107 printf(" .usable_heap_size = UINT64_C(%"PRIu64"),\n", (uint64_t)info.vram.usable_heap_size); in amdgpu_dump_memory()
108 printf(" .heap_usage = UINT64_C(%"PRIu64"),\n", (uint64_t)info.vram.heap_usage); in amdgpu_dump_memory()
109 printf(" .max_allocation = UINT64_C(%"PRIu64"),\n", (uint64_t)info.vram.max_allocation); in amdgpu_dump_memory()
110 printf(" },\n"); in amdgpu_dump_memory()
111 printf(" .cpu_accessible_vram = {\n"); in amdgpu_dump_memory()
112 printf(" .total_heap_size = UINT64_C(%"PRIu64"),\n", in amdgpu_dump_memory()
114 printf(" .usable_heap_size = UINT64_C(%"PRIu64"),\n", in amdgpu_dump_memory()
[all …]
/third_party/ltp/testcases/kernel/device-drivers/drm/user_space/
Duser_tdrm.c61 printf in tdrmopen()
89 printf in tdrmopen()
114 printf("ERROR: Open of device %s failed %d errno = %d\n", in tdrmopen()
118 printf("Device opened successfully \n"); in tdrmopen()
140 printf("Test DRM Driver may not be loaded\n"); in main()
144 printf("\tBegin drm read system ioctl\n"); in main()
148 printf("Failed on drm ioctl DRM(get_magic) test\n"); in main()
150 printf("Success on drm ioctl DRM(get_magic) test\n"); in main()
155 printf("Failed on drm ioctl DRM(get_status) test\n"); in main()
157 printf("Success on drm ioctl DRM(get_status) test\n"); in main()
[all …]
/third_party/toybox/tests/
Dprintf.test11 PRINTF="$(which printf)"
13 testing "text" "$PRINTF TEXT" "TEXT" "" ""
14 testing "escapes" "$PRINTF 'one\ntwo\n\v\t\r\f\e\b\athree'" \
16 testing "%b escapes" "$PRINTF %b 'one\ntwo\n\v\t\r\f\e\b\athree'" \
18 testing "null" "$PRINTF 'x\0y' | od -An -tx1" ' 78 00 79\n' "" ""
19 testing "trailing slash" "$PRINTF 'abc\'" 'abc\' "" ""
20 testing "octal" "$PRINTF ' \1\002\429\045x'" ' \001\002"9%x' "" ""
21 testing "not octal" "$PRINTF '\9'" '\9' "" ""
22 testing "hex" "$PRINTF 'A\x1b\x2B\x3Q\xa' | od -An -tx1" \
24 testing "%x" "$PRINTF '%x\n' 0x2a" "2a\n" "" ""
[all …]
/third_party/mbedtls/tests/suites/
Dtest_suite_platform_printf.data1 # The test cases for printf and integers have two purposes: they exercise
2 # the printf function family, and they exercise the passing of integers
5 printf "%d", 0
8 printf "%d", -0
11 printf "%d", 0x0
14 printf "%d", 0x00
17 printf "%d", 0x000000000000000000000000000000000000000000
20 printf "%d", -0x0
23 printf "%d", 1
26 printf "%d", 0x1
[all …]
/third_party/FatFs/documents/res/
Dapp4.c51 printf("test_diskio(%u, %u, 0x%08X, 0x%08X)\n", pdrv, ncyc, (UINT)buff, sz_buff); in test_diskio()
54 printf("Insufficient work area to run the program.\n"); in test_diskio()
59 printf("**** Test cycle %u of %u start ****\n", cc, ncyc); in test_diskio()
61 printf(" disk_initalize(%u)", pdrv); in test_diskio()
64 printf(" - failed.\n"); in test_diskio()
67 printf(" - ok.\n"); in test_diskio()
70 printf("**** Get drive size ****\n"); in test_diskio()
71 printf(" disk_ioctl(%u, GET_SECTOR_COUNT, 0x%08X)", pdrv, (UINT)&sz_drv); in test_diskio()
75 printf(" - ok.\n"); in test_diskio()
77 printf(" - failed.\n"); in test_diskio()
[all …]
/third_party/libdrm/tests/modeprint/
Dmodeprint.c61 printf("Mode: %s\n", mode->name); in printMode()
62 printf("\tclock : %i\n", mode->clock); in printMode()
63 printf("\thdisplay : %i\n", mode->hdisplay); in printMode()
64 printf("\thsync_start : %i\n", mode->hsync_start); in printMode()
65 printf("\thsync_end : %i\n", mode->hsync_end); in printMode()
66 printf("\thtotal : %i\n", mode->htotal); in printMode()
67 printf("\thskew : %i\n", mode->hskew); in printMode()
68 printf("\tvdisplay : %i\n", mode->vdisplay); in printMode()
69 printf("\tvsync_start : %i\n", mode->vsync_start); in printMode()
70 printf("\tvsync_end : %i\n", mode->vsync_end); in printMode()
[all …]
/third_party/skia/m133/third_party/externals/libyuv/unit_test/
Dcpu_test.cc23 printf("Cpu Flags %d\n", cpu_flags); in TEST_F()
26 printf("Has ARM %d\n", has_arm); in TEST_F()
28 printf("Has NEON %d\n", has_neon); in TEST_F()
48 printf("Has X86 %d\n", has_x86); in TEST_F()
49 printf("Has SSE2 %d\n", has_sse2); in TEST_F()
50 printf("Has SSSE3 %d\n", has_ssse3); in TEST_F()
51 printf("Has SSE41 %d\n", has_sse41); in TEST_F()
52 printf("Has SSE42 %d\n", has_sse42); in TEST_F()
53 printf("Has AVX %d\n", has_avx); in TEST_F()
54 printf("Has AVX2 %d\n", has_avx2); in TEST_F()
[all …]
/third_party/alsa-lib/test/
Dcontrol.c22 printf("Card next error: %s\n", snd_strerror(err)); in main()
29 printf("Open error: %s\n", snd_strerror(err)); in main()
33 printf("HW info error: %s\n", snd_strerror(err)); in main()
36 printf("Soundcard #%i:\n", idx + 1); in main()
37 printf(" card - %i\n", snd_ctl_card_info_get_card(info)); in main()
38 printf(" id - '%s'\n", snd_ctl_card_info_get_id(info)); in main()
39 printf(" driver - '%s'\n", snd_ctl_card_info_get_driver(info)); in main()
40 printf(" name - '%s'\n", snd_ctl_card_info_get_name(info)); in main()
41 printf(" longname - '%s'\n", snd_ctl_card_info_get_longname(info)); in main()
42 printf(" mixername - '%s'\n", snd_ctl_card_info_get_mixername(info)); in main()
[all …]
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-policy2c/
Dminimal-secure-streams.c107 printf("/*\n * Autogenerated from the following JSON policy\n */\n\n#if 0\n"); in main()
117 printf("%.*s", n, buf); in main()
127 printf("\n\n Original JSON size: %zu\n#endif\n\n", json_size); in main()
165 printf("\nstatic const lws_ss_metadata_t "); in main()
179 printf("%s = {\n", curr); in main()
181 printf("\t.next = (void *)&%s, \n", prev); in main()
183 printf("\t.name = \"%s\",\n", (const char *)md->name); in main()
185 printf("\t.value__may_own_heap = (void *)\"%s\",\n", in main()
187 printf("\t.value_length = 0x%x,\n", in main()
192 printf("\t.length = %d,\n", idx++); // md->length); in main()
[all …]
/third_party/musl/libc-test/src/functionalext/adlt/base/dlopen_cpp/
Dtestdlopen.cpp27 printf("\tLoading library %s\n", filename); in openLib()
30 printf("Error loading library!\n"); in openLib()
39 printf("\tClosing library\n"); in closeLib()
44 printf("Testing CppDynamicLib::getVersion\n"); in testVer()
47 printf("Exiting!\n"); in testVer()
51 printf("\tLoading symbol create\n"); in testVer()
53 printf("\tLoading symbol destroy\n"); in testVer()
56 printf("Exiting!\n"); in testVer()
60 printf("\tInstantiating CppDynamicLib class\n"); in testVer()
63 printf("\tCalling getVerion\n"); in testVer()
[all …]
/third_party/libdrm/tests/
Ddrmdevice.c38 printf("device[%i]\n", i); in print_device_info()
39 printf("+-> available_nodes %#04x\n", device->available_nodes); in print_device_info()
40 printf("+-> nodes\n"); in print_device_info()
43 printf("| +-> nodes[%d] %s\n", j, device->nodes[j]); in print_device_info()
45 printf("+-> bustype %04x\n", device->bustype); in print_device_info()
47 printf("| +-> pci\n"); in print_device_info()
48 printf("| +-> domain %04x\n",device->businfo.pci->domain); in print_device_info()
49 printf("| +-> bus %02x\n", device->businfo.pci->bus); in print_device_info()
50 printf("| +-> dev %02x\n", device->businfo.pci->dev); in print_device_info()
51 printf("| +-> func %1u\n", device->businfo.pci->func); in print_device_info()
[all …]
/third_party/elfutils/libebl/
Deblobjnote.c58 printf (_("unknown SDT version %u\n"), type); in ebl_object_note()
76 printf (_("invalid SDT probe descriptor\n")); in ebl_object_note()
95 printf ("%s\n", elf_errmsg (-1)); in ebl_object_note()
126 printf (_(" PC: ")); in ebl_object_note()
127 printf ("%#" PRIx64 ",", pc); in ebl_object_note()
128 printf (_(" Base: ")); in ebl_object_note()
129 printf ("%#" PRIx64 ",", base); in ebl_object_note()
130 printf (_(" Semaphore: ")); in ebl_object_note()
131 printf ("%#" PRIx64 "\n", sem); in ebl_object_note()
132 printf (_(" Provider: ")); in ebl_object_note()
[all …]
/third_party/ltp/testcases/kernel/device-drivers/agp/user_space/
Duser_tagp.c63 printf in tagpopen()
91 printf in tagpopen()
116 printf("ERROR: Open of device %s failed %d errno = %d\n", in tagpopen()
120 printf("Device opened successfully \n"); in tagpopen()
143 printf("Open /dev/agpgart failed \n"); in agpgart_io_test()
157 printf("Test agpgart io failed\n"); in main()
159 printf("Test agpgart io success\n"); in main()
164 printf("Test AGP Driver may not be loaded\n"); in main()
170 printf("Success: Expected failure for pci_find_dev test\n"); in main()
172 printf("Fail on pci_find_dev test\n"); in main()
[all …]
/third_party/ncurses/
Dmk-1st.awk138 printf "rm -f %s; ", dst
140 printf "$(LN_S) %s %s; ", src, dst
145 printf "\t-rm -f %s/%s\n", directory, dst
180 printf "\t$(MK_SHARED_LIB) $(%s_OBJS) $(%s)\n", objs, shlib_list
184 printf "\tcd %s && (", directory
200 printf ")\n"
214 printf "%s : \\\n", dst_libs
218 printf "\t\t%s/%s \\\n", directory, end_name_of(base);
224 printf "\t\t%s/%s \\\n", "../lib", termlib_end_of();
226 printf "\t\t%s/%s \\\n", directory, termlib_end_of();
[all …]
/third_party/toybox/toys/pending/
Dipcs.c67 printf("\nMessage Queue msqid=%d\n" in show_msg_id()
70 printf ("cbytes=%ld\tqbytes=%ld\tqnum=%ld\tlspid=%d\tlrpid=%d\n", in show_msg_id()
74 printf("send_time=%-26.24s\nrcv_time=%-26.24s\nchange_time=%-26.24s\n\n", in show_msg_id()
94 printf("\nSemaphore Array semid=%d\n" in show_sem_id()
104 printf("ctime = %-26.24s\n" in show_sem_id()
118 printf("%-10d %-10d %-10d %-10d %-10d\n", i, val, nc, zc, pid); in show_sem_id()
135 printf("\nShared memory Segment shmid=%d\n" in show_shm_id()
144 printf("att_time=%-26.24s\n", in show_shm_id()
146 printf("det_time=%-26.24s\n", in show_shm_id()
148 printf("change_time=%-26.24s\n\n", ctime(&buf.shm_ctime)); in show_shm_id()
[all …]
/third_party/musl/libc-test/src/functionalext/adlt/base/backtrace2/
Dbt-lib_test.cpp30 printf("\tClosing library\n"); in closeLib()
36 printf("\tLoading library %s\n", fileName); in openLib()
39 printf("Error loading library!\n"); in openLib()
74 printf("Testing symbol lookup\n"); in test()
77 printf("Exiting!\n"); in test()
82 printf("Exiting!\n"); in test()
86 printf("\tLookup symbols %s, %s\n", symbolNameA, symbolNameB); in test()
89 printf("Error lookup symbol %s!\n", symbolNameA); in test()
90 printf("Exiting!\n"); in test()
95 printf("Error lookup symbol %s!\n", symbolNameB); in test()
[all …]
/third_party/curl/
Dconfigure351 printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
376 printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
432 test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\
505 printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
511 printf "%s\n" "$0: This script requires a shell more modern than all"
512 printf "%s\n" "$0: the shells that I found on your system."
514 printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should"
515 printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later."
517 printf "%s\n" "$0: Please tell bug-autoconf@gnu.org and a suitable curl
585 *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
[all …]
/third_party/python/
Dconfigure112 printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
137 printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
258 printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
264 printf "%s\n" "$0: This script requires a shell more modern than all"
265 printf "%s\n" "$0: the shells that I found on your system."
267 printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should"
268 printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later."
270 printf "%s\n" "$0: Please tell bug-autoconf@gnu.org and
338 *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
347 printf "%s\n" X"$as_dir" |
[all …]
/third_party/backends/tools/
Dsane-desc.c313 printf ("Usage: %s [-s dir] [-m mode] [-d level] [-h] [-V]\n", in print_usage()
315 printf (" -s|--search-dir dir " in print_usage()
319 printf (" -m|--mode mode " in print_usage()
322 printf (" -t|--title \"title\" The title used for HTML pages\n"); in print_usage()
323 printf (" -i|--intro \"intro\" A short description of the " in print_usage()
325 printf (" -d|--debug-level level Specify debug level (0-3)\n"); in print_usage()
326 printf (" -h|--help Print help message\n"); in print_usage()
327 printf (" -V|--version Print version information\n"); in print_usage()
328 printf ("Report bugs to <henning@meier-geinitz.de>\n"); in print_usage()
334 printf ("sane-desc %s (%s)\n", SANE_DESC_VERSION, PACKAGE_STRING); in print_version()
[all …]
/third_party/mesa3d/src/freedreno/ir2/
Ddisasm-a2xx.c59 printf("-"); in print_srcreg()
61 printf("|"); in print_srcreg()
62 printf("%c%u", type ? 'R' : 'C', num); in print_srcreg()
65 printf("."); in print_srcreg()
67 printf("%c", chan_names[(swiz + i) & 0x3]); in print_srcreg()
72 printf("|"); in print_srcreg()
78 printf("%s%u", dst_exp ? "export" : "R", num); in print_dstreg()
81 printf("."); in print_dstreg()
83 printf("%c", (mask & 0x1) ? chan_names[i] : '_'); in print_dstreg()
118 printf("\t; %s", name); in print_export_comment()
[all …]
/third_party/libuv/test/
Dtest-platform-output.c48 printf("uv_get_process_title: %s\n", buffer); in TEST_IMPL()
53 printf("uv_cwd: %s\n", buffer); in TEST_IMPL()
60 printf("uv_resident_set_memory: %llu\n", (unsigned long long) rss); in TEST_IMPL()
69 printf("uv_uptime: %f\n", uptime); in TEST_IMPL()
78 printf("uv_getrusage:\n"); in TEST_IMPL()
79 printf(" user: %llu sec %llu microsec\n", in TEST_IMPL()
82 printf(" system: %llu sec %llu microsec\n", in TEST_IMPL()
85 printf(" page faults: %llu\n", (unsigned long long) rusage.ru_majflt); in TEST_IMPL()
86 printf(" maximum resident set size: %llu\n", in TEST_IMPL()
91 printf("uv_available_parallelism: %u\n", par); in TEST_IMPL()
[all …]
/third_party/cups-filters/filter/
Dpcl-common.c48 printf("\033&l0O"); /* Set portrait orientation */ in pcl_set_media_size()
53 printf("\033&l71A"); /* Set page size */ in pcl_set_media_size()
55 printf("\033&l80A"); /* Set page size */ in pcl_set_media_size()
57 printf("\033&l72A"); /* Set page size */ in pcl_set_media_size()
59 printf("\033&l25A"); /* Set page size */ in pcl_set_media_size()
61 printf("\033&l5A"); /* Set page size */ in pcl_set_media_size()
63 printf("\033&l90A"); /* Set page size */ in pcl_set_media_size()
65 printf("\033&l91A"); /* Set page size */ in pcl_set_media_size()
67 printf("\033&l81A"); /* Set page size */ in pcl_set_media_size()
69 printf("\033&l100A"); /* Set page size */ in pcl_set_media_size()
[all …]
/third_party/ltp/testcases/kernel/device-drivers/base/user_base/
Duser_tbase.c63 printf in tbaseopen()
91 printf in tbaseopen()
116 printf("ERROR: Open of device %s failed %d errno = %d\n", in tbaseopen()
120 printf("Device opened successfully \n"); in tbaseopen()
144 printf("Test MOD Driver may not be loaded\n"); in main()
150 printf("Failed on bus rescan\n"); in main()
152 printf("Success on bus rescan\n"); in main()
156 printf("Failed on get driver\n"); in main()
158 printf("Success on get driver\n"); in main()
162 printf("Failed on put driver\n"); in main()
[all …]

12345678910>>...248