Home
last modified time | relevance | path

Searched refs:num_errors (Results 1 – 13 of 13) sorted by relevance

/third_party/libunwind/tests/
DGtest-nomalloc.c34 int num_errors; variable
46 num_errors++; in malloc()
74 ++num_errors; in do_backtrace()
104 if (num_errors > 0) in main()
106 fprintf (stderr, "FAILURE: detected %d errors\n", num_errors); in main()
DLtest-nocalloc.c113 int i, num_errors; in main() local
127 num_errors = num_mallocs + num_callocs; in main()
128 if (num_errors > 0) in main()
132 num_errors, num_errors > 1 ? "s" : "", in main()
DGtest-trace.c49 int num_errors; variable
84 ++num_errors; in do_backtrace()
112 ++num_errors; in do_backtrace()
118 ++num_errors; in do_backtrace()
128 ++num_errors; in do_backtrace()
138 ++num_errors; in do_backtrace()
267 if (num_errors > 0) in main()
269 fprintf (stderr, "FAILURE: detected %d errors\n", num_errors); in main()
Dcheck-namespace.sh.in11 num_errors=0
52 num_errors=`expr $num_errors + 1`
375 num_errors=`expr $num_errors + 1`
394 if [ $num_errors -gt 0 ]; then
395 echo "FAILURE: Detected $num_errors errors"
DGtest-bt.c50 int num_errors; variable
112 ++num_errors; in do_backtrace()
249 if (num_errors > 0) in main()
251 fprintf (stderr, "FAILURE: detected %d errors\n", num_errors); in main()
/third_party/skia/third_party/externals/tint/fuzzers/
Dgenerate_spirv_corpus.py61 num_errors = 0
82 num_errors += 1
85 if num_errors > max_tolerated_errors:
86 … print("Too many (" + str(num_errors) + ") errors occured while generating the SPIR-V corpus.")
/third_party/boringssl/src/crypto/err/
Derr.c788 size_t num_errors; member
795 for (size_t i = 0; i < state->num_errors; i++) { in ERR_SAVE_STATE_free()
814 size_t num_errors = state->top >= state->bottom in ERR_save_state() local
817 assert(num_errors < ERR_NUM_ERRORS); in ERR_save_state()
818 ret->errors = OPENSSL_malloc(num_errors * sizeof(struct err_error_st)); in ERR_save_state()
823 OPENSSL_memset(ret->errors, 0, num_errors * sizeof(struct err_error_st)); in ERR_save_state()
824 ret->num_errors = num_errors; in ERR_save_state()
826 for (size_t i = 0; i < num_errors; i++) { in ERR_save_state()
834 if (state == NULL || state->num_errors == 0) { in ERR_restore_state()
844 for (size_t i = 0; i < state->num_errors; i++) { in ERR_restore_state()
[all …]
/third_party/gettext/gettext-tools/tests/
Dgettextpo-1-prg.c60 static int num_errors; variable
71 num_errors++; in my_xerror()
90 num_errors++; in my_xerror2()
412 num_errors = 0; in main()
414 ASSERT (num_errors == 0); in main()
961 num_errors = 0; in main()
963 ASSERT (num_errors == 0); in main()
969 num_errors = 0; in main()
971 ASSERT (num_errors == 0); in main()
973 num_errors = 0; in main()
[all …]
/third_party/e2fsprogs/lib/et/
Dcom_right.c89 int num_errors, in initialize_error_table_r() argument
105 tab->n_msgs = num_errors; in initialize_error_table_r()
Dcom_err.h58 int num_errors,
/third_party/ltp/testcases/kernel/fs/scsi/ltpscsi/
Dscsimain.c651 int num_errors = 0; in run_sg_scan_tests() local
669 for (k = 0, res = 0; (k < 1000) && (num_errors < MAX_ERRORS); in run_sg_scan_tests()
688 ++num_errors; in run_sg_scan_tests()
697 ++num_errors; in run_sg_scan_tests()
707 ++num_errors; in run_sg_scan_tests()
715 ++num_errors; in run_sg_scan_tests()
725 ++num_errors; in run_sg_scan_tests()
748 ++num_errors; in run_sg_scan_tests()
787 ++num_errors; in run_sg_scan_tests()
795 ++num_errors; in run_sg_scan_tests()
[all …]
/third_party/libxkbcommon/src/compose/
Dparser.c517 int num_errors = 0; in parse() local
688 num_errors++; in parse()
689 if (num_errors <= MAX_ERRORS) in parse()
/third_party/json/third_party/cpplint/
Dcpplint.py1116 num_errors = len(self._junit_errors)
1121 testsuite.attrib['errors'] = str(num_errors)
1124 if num_errors == 0 and num_failures == 0:
1129 testsuite.attrib['tests'] = str(num_errors + num_failures)
1130 if num_errors > 0: