Searched refs:unsigned_value (Results 1 – 1 of 1) sorted by relevance
/bionic/tests/ |
D | clang_fortify_tests.cpp | 300 const auto unsigned_value = declval<unsigned long long>(); in testFormatStrings() local 307 dprintf(some_fd, "%d", unsigned_value); in testFormatStrings() 309 dprintf(some_fd, unknown_string, unsigned_value); in testFormatStrings() 320 asprintf(&retval, "%d", unsigned_value); in testFormatStrings() 325 asprintf(&retval, unknown_string, unsigned_value); in testFormatStrings() 334 syslog(0, "%d", unsigned_value); in testFormatStrings() 336 syslog(0, unknown_string, unsigned_value); in testFormatStrings() 343 fprintf(file, "%d", unsigned_value); in testFormatStrings() 345 fprintf(file, unknown_string, unsigned_value); in testFormatStrings() 351 printf("%d", unsigned_value); in testFormatStrings() [all …]
|