• Home
  • Raw
  • Download

Lines Matching refs:safe_mod

807   a=SCHAR_MIN; b=-1; EXPECT_FALSE(safe_mod(NULL, a, b));  in T_mod_s8()
808 a=100; b=0; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_s8()
809 a=10; b=2; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_s8()
816 a=SHRT_MIN; b=-1; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_s16()
817 a=100; b=0; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_s16()
818 a=10; b=2; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_s16()
825 a=INT_MIN; b=-1; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_s32()
826 a=100; b=0; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_s32()
827 a=10; b=2; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_s32()
834 a=SAFE_INT64_MIN; b=-1; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_s64()
835 a=100; b=0; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_s64()
836 a=10; b=2; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_s64()
843 a=LONG_MIN; b=-1; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_long()
844 a=100; b=0; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_long()
845 a=10; b=2; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_long()
851 a=LLONG_MIN; b=-1LL; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_longlong()
852 a=100LL; b=0LL; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_longlong()
853 a=10LL; b=2LL; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_longlong()
859 a=SSIZE_MIN; b=-1; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_ssizet()
860 a=100; b=0; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_ssizet()
861 a=10; b=2; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_ssizet()
868 a=0; b=UCHAR_MAX; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_u8()
869 a=100; b=0; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_u8()
870 a=10; b=2; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_u8()
877 a=0; b=USHRT_MAX; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_u16()
878 a=100; b=0; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_u16()
879 a=10; b=2; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_u16()
886 a=0; b=UINT_MAX; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_u32()
887 a=100; b=0; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_u32()
888 a=10; b=2; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_u32()
895 a=0; b=SAFE_INT64_MAX; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_u64()
896 a=100; b=0; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_u64()
897 a=10; b=2; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_u64()
904 a=0; b=LONG_MAX; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_ulong()
905 a=100; b=0; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_ulong()
906 a=10; b=2; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_ulong()
913 a=0ULL; b=~0ULL; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_ulonglong()
914 a=100ULL; b=0ULL; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_ulonglong()
915 a=10ULL; b=2ULL; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_ulonglong()
922 a=0; b=SIZE_MAX; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_sizet()
923 a=100; b=0; EXPECT_FALSE(safe_mod(NULL, a, b)); in T_mod_sizet()
924 a=10; b=2; EXPECT_TRUE(safe_mod(NULL, a, b)); in T_mod_sizet()