Home | History | Annotate | Download | only in fxcrt

Lines Matching refs:expected_output

20 void Check32BitBase16Itoa(int32_t input, const char* expected_output) {
25 EXPECT_STREQ(expected_output, buf);
29 void Check32BitBase10Itoa(int32_t input, const char* expected_output) {
34 EXPECT_STREQ(expected_output, buf);
38 void Check32BitBase2Itoa(int32_t input, const char* expected_output) {
43 EXPECT_STREQ(expected_output, buf);
47 void Check64BitBase16Itoa(int64_t input, const char* expected_output) {
52 EXPECT_STREQ(expected_output, buf);
56 void Check64BitBase10Itoa(int64_t input, const char* expected_output) {
61 EXPECT_STREQ(expected_output, buf);
65 void Check64BitBase2Itoa(int64_t input, const char* expected_output) {
70 EXPECT_STREQ(expected_output, buf);