Lines Matching refs:failed
259 int j, failed = 0; in compare_expect_int64() local
276 ++failed; in compare_expect_int64()
298 ++failed; in compare_expect_int64()
305 return failed; in compare_expect_int64()
311 int j, failed = 0; in compare_expect_uint64() local
327 ++failed; in compare_expect_uint64()
348 ++failed; in compare_expect_uint64()
355 return failed; in compare_expect_uint64()
559 int i, j, failed = 0; in main() local
574 if ((failed = compare_expect_int64(int64_preds + i)) > 0) { in main()
575 printf(something_failed, failed); in main()
585 if ((failed = compare_expect_uint64(uint64_preds + i)) > 0) { in main()
586 printf(something_failed, failed); in main()
598 failed = 0; in main()
599 failed += test_i64_sext_i32(-1, -1LL); in main()
600 failed += test_i64_sext_i32(10, 10LL); in main()
601 failed += test_i64_sext_i32(0x7fffffff, 0x7fffffffLL); in main()
602 failed += test_i64_sext_i16(-1, -1LL); in main()
603 failed += test_i64_sext_i16(10, 10LL); in main()
604 failed += test_i64_sext_i16(0x7fff, 0x7fffLL); in main()
605 failed += test_i64_sext_i8(-1, -1LL); in main()
606 failed += test_i64_sext_i8(10, 10LL); in main()
607 failed += test_i64_sext_i8(0x7f, 0x7fLL); in main()
609 failed += test_i64_zext_i32(0xffffffff, 0x00000000ffffffffLLU); in main()
610 failed += test_i64_zext_i32(0x01234567, 0x0000000001234567LLU); in main()
611 failed += test_i64_zext_i16(0xffff, 0x000000000000ffffLLU); in main()
612 failed += test_i64_zext_i16(0x569a, 0x000000000000569aLLU); in main()
613 failed += test_i64_zext_i8(0xff, 0x00000000000000ffLLU); in main()
614 failed += test_i64_zext_i8(0xa0, 0x00000000000000a0LLU); in main()
616 if (failed > 0) { in main()
617 printf(" %d tests failed.\n", failed); in main()
624 failed = 0; in main()
626 …failed += test_i64_constant_shift("i64_shl_const", i64_shl_const, tval_a, 0x00047dc7ec114c00LL… in main()
627 …failed += test_i64_variable_shift("i64_shl", i64_shl, tval_a, 10, 0x00047dc7ec114c00LL… in main()
628 …failed += test_i64_constant_shift("i64_srl_const", i64_srl_const, tval_a, 0x0000000047dc7ec1LL… in main()
629 …failed += test_i64_variable_shift("i64_srl", i64_srl, tval_a, 10, 0x0000000047dc7ec1LL… in main()
630 …failed += test_i64_constant_shift("i64_sra_const", i64_sra_const, tval_a, 0x0000000047dc7ec1LL… in main()
631 …failed += test_i64_variable_shift("i64_sra", i64_sra, tval_a, 10, 0x0000000047dc7ec1LL… in main()
633 if (failed > 0) { in main()
634 printf(" %d tests ailed.\n", failed); in main()
641 failed = 0; in main()
643 …failed += test_u64_constant_shift("u64_shl_const", u64_shl_const, tval_f, 0xfffc1d404d7ae400L… in main()
644 …failed += test_u64_variable_shift("u64_shl", u64_shl, tval_f, 10, 0xfffc1d404d7ae400L… in main()
645 …failed += test_u64_constant_shift("u64_srl_const", u64_srl_const, tval_f, 0x003fffffc1d404d7L… in main()
646 …failed += test_u64_variable_shift("u64_srl", u64_srl, tval_f, 10, 0x003fffffc1d404d7L… in main()
647 …failed += test_i64_constant_shift("i64_sra_const", i64_sra_const, tval_f, 0xffffffffc1d404d7L… in main()
648 …failed += test_i64_variable_shift("i64_sra", i64_sra, tval_f, 10, 0xffffffffc1d404d7L… in main()
649 …failed += test_u64_constant_shift("u64_sra_const", u64_sra_const, tval_f, 0x003fffffc1d404d7L… in main()
650 …failed += test_u64_variable_shift("u64_sra", u64_sra, tval_f, 10, 0x003fffffc1d404d7L… in main()
652 if (failed > 0) { in main()
653 printf(" %d tests ailed.\n", failed); in main()