OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testScanf
(Results
1 - 2
of
2
) sorted by null
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_scanf_interceptor_test.cc
56
static void
testScanf
(const char *format, unsigned n, ...) {
89
testScanf
("%d", 1, I);
90
testScanf
("%d%d%d", 3, I, I, I);
91
testScanf
("ab%u%dc", 2, I, I);
92
testScanf
("%ld", 1, L);
93
testScanf
("%llu", 1, LL);
94
testScanf
("a %hd%hhx", 2, S, C);
95
testScanf
("%c", 1, C);
97
testScanf
("%%", 0);
98
testScanf
("a%%", 0)
[
all
...]
/external/clang/test/Sema/
format-strings-darwin.c
56
void
testScanf
(short *x, long *y) {
Completed in 138 milliseconds