Lines Matching refs:exp_1
23 int exp_1, exp_2, exp_3, exp_4; member
50 …ok(len == g_Tests[n].exp_1, "Expected len to be %i, was %i for %u (A)\n", g_Tests[n].exp_1, len, n… in test_basetypes()
64 ChTraitsCRT<char>::ConvertToBaseType(bufA, g_Tests[n].exp_1+1, g_Tests[n].strA); in test_basetypes()
65 char ch = bufA[g_Tests[n].exp_1]; in test_basetypes()
66 … ok(ch == '\0', "Expected %i to be \\0, was: %c (%i) for %u\n", g_Tests[n].exp_1, ch, (int)ch, n); in test_basetypes()
68 ch = bufA[g_Tests[n].exp_1+1]; in test_basetypes()
69 … ok(ch == 'x', "Expected %i to be 'x', was: %c (%i) for %u\n", g_Tests[n].exp_1+1, ch, (int)ch, n); in test_basetypes()
75 ChTraitsCRT<char>::ConvertToBaseType(bufA, g_Tests[n].exp_1+1, g_Tests[n].strW); in test_basetypes()
76 char ch = bufA[g_Tests[n].exp_1]; in test_basetypes()
77 … ok(ch == '\0', "Expected %i to be \\0, was: %c (%i) for %u\n", g_Tests[n].exp_1, ch, (int)ch, n); in test_basetypes()
79 ch = bufA[g_Tests[n].exp_1+1]; in test_basetypes()
80 … ok(ch == 'x', "Expected %i to be 'x', was: %c (%i) for %u\n", g_Tests[n].exp_1+1, ch, (int)ch, n); in test_basetypes()
85 …ok(len == g_Tests[n].exp_1, "Expected len to be %i, was %i for %u (A)\n", g_Tests[n].exp_1, len, n… in test_basetypes()
99 ChTraitsCRT<wchar_t>::ConvertToBaseType(bufW, g_Tests[n].exp_1+1, g_Tests[n].strA); in test_basetypes()
100 wchar_t ch = bufW[g_Tests[n].exp_1]; in test_basetypes()
101 … ok(ch == L'\0', "Expected %i to be \\0, was: %c (%i) for %u\n", g_Tests[n].exp_1, ch, (int)ch, n); in test_basetypes()
103 ch = bufW[g_Tests[n].exp_1+1]; in test_basetypes()
104 ok(ch == 30840, "Expected %i to be %i for %u\n", g_Tests[n].exp_1+1, (int)ch, n); in test_basetypes()
110 ChTraitsCRT<wchar_t>::ConvertToBaseType(bufW, g_Tests[n].exp_1+1, g_Tests[n].strW); in test_basetypes()
111 wchar_t ch = bufW[g_Tests[n].exp_1]; in test_basetypes()
112 … ok(ch == '\0', "Expected %i to be \\0, was: %c (%i) for %u\n", g_Tests[n].exp_1, ch, (int)ch, n); in test_basetypes()
114 ch = bufW[g_Tests[n].exp_1+1]; in test_basetypes()
115 ok(ch == 30840, "Expected %i to be %i for %u\n", g_Tests[n].exp_1+1, (int)ch, n); in test_basetypes()