annotate test/callback_suite/cases.h @ 663:127b569978cc default tip

- another tweak handling clang trying to be too smart (see last commit)
author Tassilo Philipp
date Sun, 24 Mar 2024 13:52:44 +0100
parents e56241bba0f5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
513
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
1 #define F0(ID,R) void ID(void* addr) { write_V_##R(0, (( R(*)())addr)());}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
2 #define F1(ID,R,M0) void ID(void* addr) { write_V_##R(1, (( R(*)(M0))addr)(K_##M0[0]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
3 #define F2(ID,R,M0,M1) void ID(void* addr) { write_V_##R(2, (( R(*)(M0,M1))addr)(K_##M0[0],K_##M1[1]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
4 #define F3(ID,R,M0,M1,M2) void ID(void* addr) { write_V_##R(3, (( R(*)(M0,M1,M2))addr)(K_##M0[0],K_##M1[1],K_##M2[2]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
5 #define F4(ID,R,M0,M1,M2,M3) void ID(void* addr) { write_V_##R(4, (( R(*)(M0,M1,M2,M3))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
6 #define F5(ID,R,M0,M1,M2,M3,M4) void ID(void* addr) { write_V_##R(5, (( R(*)(M0,M1,M2,M3,M4))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
7 #define F6(ID,R,M0,M1,M2,M3,M4,M5) void ID(void* addr) { write_V_##R(6, (( R(*)(M0,M1,M2,M3,M4,M5))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
8 #define F7(ID,R,M0,M1,M2,M3,M4,M5,M6) void ID(void* addr) { write_V_##R(7, (( R(*)(M0,M1,M2,M3,M4,M5,M6))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
9 #define F8(ID,R,M0,M1,M2,M3,M4,M5,M6,M7) void ID(void* addr) { write_V_##R(8, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
10 #define F9(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8) void ID(void* addr) { write_V_##R(9, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
11 #define F10(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9) void ID(void* addr) { write_V_##R(10, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
12 #define F11(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10) void ID(void* addr) { write_V_##R(11, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
13 #define F12(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11) void ID(void* addr) { write_V_##R(12, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
14 #define F13(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12) void ID(void* addr) { write_V_##R(13, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
15 #define F14(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13) void ID(void* addr) { write_V_##R(14, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
16 #define F15(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14) void ID(void* addr) { write_V_##R(15, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
17 #define F16(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15) void ID(void* addr) { write_V_##R(16, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
18 #define F17(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16) void ID(void* addr) { write_V_##R(17, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
19 #define F18(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17) void ID(void* addr) { write_V_##R(18, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
20 #define F19(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18) void ID(void* addr) { write_V_##R(19, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
21 #define F20(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19) void ID(void* addr) { write_V_##R(20, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
22 #define F21(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20) void ID(void* addr) { write_V_##R(21, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
23 #define F22(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21) void ID(void* addr) { write_V_##R(22, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
24 #define F23(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22) void ID(void* addr) { write_V_##R(23, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
25 #define F24(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23) void ID(void* addr) { write_V_##R(24, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
26 #define F25(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24) void ID(void* addr) { write_V_##R(25, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
27 #define F26(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25) void ID(void* addr) { write_V_##R(26, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
28 #define F27(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26) void ID(void* addr) { write_V_##R(27, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
29 #define F28(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27) void ID(void* addr) { write_V_##R(28, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
30 #define F29(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28) void ID(void* addr) { write_V_##R(29, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
31 #define F30(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29) void ID(void* addr) { write_V_##R(30, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
32 #define F31(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30) void ID(void* addr) { write_V_##R(31, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
33 #define F32(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31) void ID(void* addr) { write_V_##R(32, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
34 #define F33(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32) void ID(void* addr) { write_V_##R(33, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
35 #define F34(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33) void ID(void* addr) { write_V_##R(34, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
36 #define F35(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34) void ID(void* addr) { write_V_##R(35, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
37 #define F36(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35) void ID(void* addr) { write_V_##R(36, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
38 #define F37(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36) void ID(void* addr) { write_V_##R(37, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
39 #define F38(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37) void ID(void* addr) { write_V_##R(38, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
40 #define F39(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38) void ID(void* addr) { write_V_##R(39, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
41 #define F40(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39) void ID(void* addr) { write_V_##R(40, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
42 #define F41(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40) void ID(void* addr) { write_V_##R(41, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
43 #define F42(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41) void ID(void* addr) { write_V_##R(42, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
44 #define F43(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42) void ID(void* addr) { write_V_##R(43, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
45 #define F44(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43) void ID(void* addr) { write_V_##R(44, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
46 #define F45(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44) void ID(void* addr) { write_V_##R(45, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
47 #define F46(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45) void ID(void* addr) { write_V_##R(46, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
48 #define F47(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46) void ID(void* addr) { write_V_##R(47, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
49 #define F48(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47) void ID(void* addr) { write_V_##R(48, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46],K_##M47[47]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
50 #define F49(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48) void ID(void* addr) { write_V_##R(49, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46],K_##M47[47],K_##M48[48]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
51 #define F50(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49) void ID(void* addr) { write_V_##R(50, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46],K_##M47[47],K_##M48[48],K_##M49[49]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
52 #define F51(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50) void ID(void* addr) { write_V_##R(51, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46],K_##M47[47],K_##M48[48],K_##M49[49],K_##M50[50]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
53 #define F52(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51) void ID(void* addr) { write_V_##R(52, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46],K_##M47[47],K_##M48[48],K_##M49[49],K_##M50[50],K_##M51[51]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
54 #define F53(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52) void ID(void* addr) { write_V_##R(53, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46],K_##M47[47],K_##M48[48],K_##M49[49],K_##M50[50],K_##M51[51],K_##M52[52]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
55 #define F54(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53) void ID(void* addr) { write_V_##R(54, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46],K_##M47[47],K_##M48[48],K_##M49[49],K_##M50[50],K_##M51[51],K_##M52[52],K_##M53[53]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
56 #define F55(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53,M54) void ID(void* addr) { write_V_##R(55, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53,M54))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46],K_##M47[47],K_##M48[48],K_##M49[49],K_##M50[50],K_##M51[51],K_##M52[52],K_##M53[53],K_##M54[54]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
57 #define F56(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53,M54,M55) void ID(void* addr) { write_V_##R(56, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53,M54,M55))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46],K_##M47[47],K_##M48[48],K_##M49[49],K_##M50[50],K_##M51[51],K_##M52[52],K_##M53[53],K_##M54[54],K_##M55[55]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
58 #define F57(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53,M54,M55,M56) void ID(void* addr) { write_V_##R(57, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53,M54,M55,M56))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46],K_##M47[47],K_##M48[48],K_##M49[49],K_##M50[50],K_##M51[51],K_##M52[52],K_##M53[53],K_##M54[54],K_##M55[55],K_##M56[56]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
59 #define F58(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53,M54,M55,M56,M57) void ID(void* addr) { write_V_##R(58, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53,M54,M55,M56,M57))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46],K_##M47[47],K_##M48[48],K_##M49[49],K_##M50[50],K_##M51[51],K_##M52[52],K_##M53[53],K_##M54[54],K_##M55[55],K_##M56[56],K_##M57[57]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
60 #define F59(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53,M54,M55,M56,M57,M58) void ID(void* addr) { write_V_##R(59, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53,M54,M55,M56,M57,M58))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46],K_##M47[47],K_##M48[48],K_##M49[49],K_##M50[50],K_##M51[51],K_##M52[52],K_##M53[53],K_##M54[54],K_##M55[55],K_##M56[56],K_##M57[57],K_##M58[58]));}
95f6f43178ed test/callback_suite simplifications:
Tassilo Philipp
parents: 509
diff changeset
61 #define F60(ID,R,M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53,M54,M55,M56,M57,M58,M59) void ID(void* addr) { write_V_##R(60, (( R(*)(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16,M17,M18,M19,M20,M21,M22,M23,M24,M25,M26,M27,M28,M29,M30,M31,M32,M33,M34,M35,M36,M37,M38,M39,M40,M41,M42,M43,M44,M45,M46,M47,M48,M49,M50,M51,M52,M53,M54,M55,M56,M57,M58,M59))addr)(K_##M0[0],K_##M1[1],K_##M2[2],K_##M3[3],K_##M4[4],K_##M5[5],K_##M6[6],K_##M7[7],K_##M8[8],K_##M9[9],K_##M10[10],K_##M11[11],K_##M12[12],K_##M13[13],K_##M14[14],K_##M15[15],K_##M16[16],K_##M17[17],K_##M18[18],K_##M19[19],K_##M20[20],K_##M21[21],K_##M22[22],K_##M23[23],K_##M24[24],K_##M25[25],K_##M26[26],K_##M27[27],K_##M28[28],K_##M29[29],K_##M30[30],K_##M31[31],K_##M32[32],K_##M33[33],K_##M34[34],K_##M35[35],K_##M36[36],K_##M37[37],K_##M38[38],K_##M39[39],K_##M40[40],K_##M41[41],K_##M42[42],K_##M43[43],K_##M44[44],K_##M45[45],K_##M46[46],K_##M47[47],K_##M48[48],K_##M49[49],K_##M50[50],K_##M51[51],K_##M52[52],K_##M53[53],K_##M54[54],K_##M55[55],K_##M56[56],K_##M57[57],K_##M58[58],K_##M59[59]));}
528
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
62 F52(f0,l,S,C,l,i,L,p,j,s,s,s,J,c,p,d,f,i,c,C,B,C,c,S,l,L,j,l,d,d,d,s,I,B,C,i,p,c,J,I,d,C,s,J,J,f,I,i,L,j,l,s,I,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
63 F19(f1,c,l,I,s,p,p,S,p,p,S,s,f,I,l,l,j,B,I,I,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
64 F38(f2,c,I,I,p,S,I,f,B,S,f,S,C,p,d,I,L,p,C,s,j,B,B,l,C,f,B,I,L,f,f,f,j,p,B,l,j,j,J,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
65 F56(f3,f,s,i,J,i,J,s,s,d,B,J,j,C,d,f,J,l,i,S,L,S,i,j,j,l,j,s,J,s,f,S,L,S,B,c,s,C,B,i,s,C,i,f,f,j,S,s,p,C,C,l,l,C,J,s,J,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
66 F1(f4,j,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
67 F1(f5,B,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
68 F26(f6,p,s,J,L,s,C,s,C,i,L,J,I,f,c,i,d,i,J,L,B,f,f,d,s,L,p,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
69 F14(f7,f,d,J,B,S,L,d,S,B,p,J,i,l,L,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
70 F16(f8,s,p,f,j,B,p,L,l,d,j,f,I,c,J,s,B,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
71 F37(f9,i,f,J,L,I,J,J,L,L,c,s,s,c,I,p,C,d,j,p,j,f,j,c,C,i,I,s,B,J,C,p,B,j,i,L,l,c,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
72 F3(f10,j,p,j,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
73 F49(f11,p,B,C,f,L,L,L,B,C,J,S,l,L,f,i,p,d,C,L,i,I,J,J,l,L,B,s,I,C,s,j,s,f,l,i,c,c,C,S,I,c,C,s,S,c,B,J,c,J,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
74 F59(f12,d,d,c,S,c,c,J,f,l,S,i,f,c,s,j,l,S,p,S,I,j,c,f,i,S,f,l,i,c,J,B,I,d,L,i,l,l,B,p,C,C,f,p,J,d,l,j,s,S,L,C,J,s,I,c,C,L,c,S,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
75 F11(f13,B,j,I,l,L,J,B,I,d,L,l,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
76 F4(f14,d,p,S,p,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
77 F51(f15,v,i,s,S,j,d,S,C,L,L,J,J,c,B,l,J,B,B,B,J,c,B,S,i,p,f,f,J,f,l,p,j,s,c,f,p,s,I,c,J,f,s,f,p,I,S,L,c,i,S,d,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
78 F46(f16,v,c,S,I,s,l,C,j,p,I,d,B,p,C,J,B,C,d,c,S,L,I,I,J,p,f,j,c,s,S,l,s,j,i,J,d,l,s,i,i,f,c,C,L,I,s,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
79 F41(f17,I,I,s,j,p,f,s,S,J,J,p,L,s,j,i,I,L,f,B,l,S,p,S,C,p,d,I,f,J,c,j,S,j,S,l,I,j,l,i,L,j,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
80 F45(f18,J,c,f,L,I,d,i,i,d,d,B,J,j,i,J,p,c,j,B,I,i,C,f,C,d,B,d,p,i,p,j,S,j,l,C,c,j,i,f,s,L,L,f,C,L,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
81 F1(f19,l,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
82 F31(f20,j,p,c,s,L,C,f,S,l,S,i,f,i,B,L,c,f,I,S,j,L,c,l,i,J,s,L,j,l,I,f,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
83 F48(f21,B,f,S,p,c,L,f,c,i,s,J,s,p,c,J,d,L,B,p,C,i,i,c,p,J,B,I,I,d,L,j,J,j,S,j,s,i,C,C,d,B,B,S,L,c,d,C,p,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
84 F39(f22,S,i,B,p,C,I,p,B,p,B,J,c,l,c,f,J,f,s,d,I,p,C,j,f,L,j,I,J,s,J,d,L,c,p,B,s,S,j,J,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
85 F47(f23,s,L,i,j,I,c,I,L,p,j,B,I,f,B,I,l,C,I,S,L,L,I,p,J,c,L,j,J,j,p,c,C,f,f,J,B,j,j,L,d,S,d,d,S,C,j,J,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
86 F43(f24,L,d,L,l,L,B,d,C,p,l,i,j,L,C,I,p,i,c,d,i,L,l,s,i,d,I,s,d,f,j,p,s,B,i,B,L,s,I,S,J,f,l,B,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
87 F13(f25,B,j,I,B,C,f,p,s,c,J,i,p,j,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
88 F52(f26,S,p,I,c,f,i,L,p,J,j,J,L,s,d,l,S,d,L,B,l,l,f,I,f,L,j,p,f,j,C,B,S,l,i,f,J,c,B,s,l,s,I,j,c,s,s,p,C,j,C,J,B,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
89 F58(f27,C,B,s,C,L,i,L,B,j,C,c,s,i,J,I,I,J,f,p,c,j,i,C,s,d,L,C,l,c,L,f,L,L,S,l,C,p,I,d,L,C,B,j,f,d,C,f,i,j,s,B,i,d,f,J,f,c,c,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
90 F41(f28,c,i,J,f,p,j,j,I,f,S,d,l,c,f,S,f,J,I,J,i,f,j,p,f,i,j,c,C,p,f,d,B,C,l,f,S,d,C,p,j,s,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
91 F36(f29,v,d,j,L,c,I,f,I,J,d,I,s,s,p,c,I,p,J,j,J,J,s,i,I,d,i,C,d,c,l,f,B,J,d,d,L,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
92 F48(f30,L,j,L,I,c,c,s,C,L,j,f,I,C,p,p,p,l,c,s,J,L,f,J,I,i,f,C,i,I,C,B,S,S,C,d,f,j,l,p,j,C,j,L,p,c,j,f,f,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
93 F51(f31,S,l,i,J,s,c,d,B,S,C,B,c,B,c,C,c,d,s,C,f,l,d,j,c,d,i,i,C,i,L,i,d,J,L,c,S,l,I,S,B,L,C,f,l,J,f,S,i,B,L,p,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
94 F41(f32,i,l,l,j,c,B,I,B,C,C,j,B,f,j,d,S,l,c,p,j,i,S,p,L,j,B,c,l,s,d,s,j,s,S,s,d,i,I,L,s,C,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
95 F15(f33,C,l,C,I,i,l,L,s,L,d,S,p,I,L,i,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
96 F40(f34,v,I,C,s,J,S,I,C,f,l,c,J,B,J,l,s,L,i,J,I,p,J,l,l,B,l,J,S,J,J,B,f,J,J,f,I,p,B,f,B,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
97 F54(f35,B,i,j,d,S,l,i,l,p,c,J,J,c,c,S,c,J,S,L,d,B,C,j,c,J,p,i,s,l,J,B,B,c,p,J,d,i,c,d,C,i,p,I,S,i,c,j,c,j,I,L,L,j,d,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
98 F12(f36,L,f,J,j,i,f,d,d,j,c,l,S,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
99 F9(f37,v,d,j,J,L,s,d,i,J,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
100 F15(f38,I,l,L,B,C,S,L,f,J,L,p,C,l,B,J,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
101 F29(f39,d,s,j,c,i,c,i,c,L,p,j,l,i,B,B,c,L,p,i,J,i,S,p,l,l,J,p,J,C,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
102 F7(f40,J,l,d,l,J,C,p,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
103 F55(f41,L,C,c,l,s,i,B,d,B,c,d,J,c,S,c,L,I,c,f,S,J,C,c,L,S,C,L,L,L,d,J,J,J,J,j,J,J,L,f,f,S,I,f,B,C,I,l,p,f,L,S,j,C,l,p,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
104 F16(f42,i,l,s,c,p,d,l,p,d,i,L,j,d,f,f,S,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
105 F20(f43,J,j,c,p,B,p,d,j,p,f,p,p,I,L,s,I,c,l,i,S,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
106 F13(f44,S,c,c,l,L,p,l,d,d,C,p,i,J,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
107 F44(f45,S,L,f,f,C,j,l,C,l,i,B,s,j,f,L,L,L,B,B,i,L,L,l,f,L,l,i,B,C,i,d,C,L,S,C,c,l,I,l,l,J,C,s,B,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
108 F40(f46,l,J,i,s,B,s,l,i,L,l,i,i,S,I,f,C,j,d,J,C,s,J,j,d,p,I,L,J,I,p,d,i,p,I,l,B,c,p,L,d,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
109 F16(f47,s,s,L,C,s,j,B,s,J,I,d,i,f,j,l,c,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
110 F42(f48,l,j,d,J,L,d,C,l,L,c,L,f,d,s,B,s,S,B,j,B,C,j,f,B,C,d,i,c,l,S,B,J,i,L,s,S,p,p,c,S,d,s,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
111 F46(f49,f,B,p,C,B,d,c,S,J,i,S,l,C,p,s,C,d,l,f,B,l,f,L,i,i,l,d,S,i,J,s,L,B,d,C,L,d,l,f,C,L,d,s,p,i,s,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
112 F19(f50,L,f,j,f,p,c,I,L,f,L,p,i,i,l,B,d,d,S,l,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
113 F7(f51,i,s,f,B,L,S,c,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
114 F53(f52,p,c,c,c,j,l,i,I,l,S,l,I,c,i,j,S,C,C,I,l,c,I,L,d,j,C,c,j,f,c,s,S,L,l,l,s,l,s,J,f,j,I,l,f,d,B,S,j,L,S,j,S,s,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
115 F4(f53,i,S,I,s,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
116 F53(f54,j,j,C,C,S,i,B,c,S,c,S,I,l,c,s,j,p,c,s,d,p,I,c,c,s,j,i,I,i,C,j,J,f,i,B,l,p,l,l,i,d,I,f,S,I,f,S,i,s,S,s,c,C,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
117 F44(f55,C,j,s,S,C,J,I,B,c,C,I,C,J,J,i,d,C,S,S,j,s,C,f,l,S,p,S,S,s,S,i,I,p,d,I,J,l,I,d,I,d,C,S,C,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
118 F50(f56,c,L,l,S,B,i,j,C,C,J,s,J,s,l,j,c,B,L,I,I,f,s,B,J,L,J,c,j,i,s,i,S,S,c,c,C,S,j,p,j,s,J,i,L,S,l,I,c,B,I,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
119 F5(f57,S,l,f,f,B,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
120 F11(f58,S,c,s,C,p,I,i,d,J,c,p,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
121 F36(f59,S,i,B,i,f,I,B,j,J,l,S,C,f,s,j,L,i,f,f,J,C,j,s,j,i,i,B,c,j,S,C,L,s,B,d,B,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
122 F36(f60,s,f,d,C,C,p,s,I,S,B,f,f,J,c,S,c,s,d,C,f,f,j,p,I,J,B,C,j,j,I,s,B,l,l,C,C,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
123 F42(f61,L,L,S,S,i,S,p,l,s,L,f,I,d,d,S,i,i,l,i,i,s,B,L,L,d,p,s,l,S,S,S,c,f,S,L,C,I,c,f,s,S,L,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
124 F2(f62,i,c,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
125 F42(f63,l,s,d,B,B,S,l,d,c,d,p,s,d,L,J,L,S,f,B,I,i,s,d,B,I,f,S,d,I,J,S,l,i,f,j,j,c,B,f,c,c,L,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
126 F27(f64,C,S,L,i,B,S,I,d,L,I,J,f,J,L,d,L,f,s,l,B,J,C,d,j,p,I,I,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
127 F4(f65,i,s,p,J,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
128 F19(f66,d,C,l,I,i,i,d,l,s,I,S,l,S,J,j,J,C,j,B,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
129 F42(f67,B,f,i,B,L,p,C,l,i,C,i,i,d,s,L,f,i,I,c,s,d,s,f,p,l,j,i,S,C,s,s,J,B,i,j,B,J,l,C,p,i,B,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
130 F54(f68,C,i,c,d,J,c,j,p,S,L,s,l,j,C,s,I,i,c,I,S,C,L,c,p,l,s,l,B,f,j,l,f,p,l,C,S,S,B,l,p,S,s,B,s,I,c,L,S,c,f,f,j,s,l,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
131 F38(f69,B,I,l,d,s,L,j,p,p,B,l,J,I,J,J,l,L,c,d,d,f,L,I,j,S,S,p,f,c,l,j,c,j,l,s,L,i,j,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
132 F43(f70,I,I,j,B,j,j,B,S,I,d,p,l,B,I,c,d,S,j,p,l,c,J,C,I,I,J,B,C,I,f,s,f,s,I,c,I,i,i,d,C,S,l,c,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
133 F6(f71,i,p,B,j,f,J,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
134 F15(f72,f,d,C,I,d,p,B,J,l,i,l,i,l,p,B,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
135 F11(f73,c,B,l,c,i,f,L,S,p,C,j,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
136 F32(f74,I,p,J,d,L,j,S,J,s,S,J,I,d,s,s,I,S,c,d,L,S,d,J,c,p,j,C,C,B,I,s,I,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
137 F39(f75,i,s,d,p,C,l,s,j,S,p,j,d,I,s,C,j,I,s,i,d,j,J,p,I,L,l,j,c,J,B,s,c,i,c,i,i,p,l,C,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
138 F13(f76,S,f,i,p,d,B,l,d,f,i,c,p,B,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
139 F37(f77,v,d,j,p,B,I,J,S,d,s,L,f,B,C,S,f,d,B,B,d,I,l,I,I,i,C,f,s,B,I,L,p,C,s,l,S,l,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
140 F36(f78,C,i,L,C,L,p,j,d,B,c,d,j,J,d,d,J,L,d,j,S,s,I,S,l,c,C,B,i,I,s,I,c,f,L,C,L,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
141 F37(f79,v,p,L,C,J,s,i,i,c,d,c,c,C,S,I,p,c,B,s,L,c,d,J,i,l,d,S,i,s,c,C,p,J,c,d,J,p,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
142 F1(f80,v,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
143 F37(f81,d,c,c,j,c,c,f,l,j,p,L,L,d,S,i,B,s,L,I,j,f,I,i,L,f,B,C,d,j,c,d,L,s,j,L,S,L,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
144 F7(f82,B,p,C,p,I,I,B,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
145 F21(f83,C,J,c,I,d,C,i,i,B,L,d,d,c,f,I,J,i,p,J,p,j,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
146 F29(f84,j,s,C,s,p,d,B,B,c,i,s,f,l,B,S,d,i,f,B,I,S,i,d,I,f,i,L,J,p,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
147 F39(f85,j,d,j,S,c,c,j,J,f,p,B,j,j,C,C,l,f,J,s,C,c,d,L,j,s,I,S,l,B,B,B,i,i,i,d,c,f,J,J,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
148 F7(f86,v,f,L,p,L,l,i,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
149 F21(f87,S,J,i,L,C,C,s,S,J,c,d,c,i,i,I,B,C,L,C,j,p,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
150 F27(f88,C,d,J,S,i,l,l,I,L,J,S,J,l,J,p,l,C,S,d,B,f,i,I,B,i,J,L,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
151 F44(f89,B,B,I,f,S,c,l,p,p,f,i,B,l,L,C,C,f,d,S,i,j,J,d,J,L,i,j,c,C,s,d,J,l,c,I,J,B,C,J,l,s,j,J,c,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
152 F44(f90,J,l,i,i,L,d,f,f,p,J,d,p,s,f,f,c,f,l,c,l,d,j,p,L,c,f,B,p,c,S,f,I,S,B,C,s,S,B,s,p,c,i,I,I,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
153 F13(f91,c,c,j,J,i,C,J,j,C,j,I,d,L,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
154 F57(f92,f,f,B,J,B,J,l,d,l,p,s,j,i,S,s,L,j,s,c,p,S,j,J,J,C,S,f,B,B,p,d,I,C,c,j,I,I,p,I,i,d,C,J,B,j,f,i,d,B,f,c,i,i,J,L,J,L,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
155 F56(f93,i,i,p,L,f,C,S,B,c,c,s,B,J,d,C,C,s,B,j,s,C,i,C,C,c,J,s,j,i,C,L,s,d,B,B,d,l,L,p,c,C,s,i,s,C,i,L,d,f,S,s,C,l,L,p,I,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
156 F24(f94,J,L,J,c,f,j,j,B,L,l,d,i,I,f,p,f,d,I,L,C,s,S,s,S,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
157 F34(f95,C,B,B,d,c,S,I,S,l,s,C,J,C,S,J,p,p,s,s,S,l,s,j,s,j,I,I,L,c,f,S,f,l,B,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
158 F55(f96,p,j,I,I,J,c,I,B,S,d,i,d,i,J,I,j,p,l,C,f,c,c,c,l,S,I,i,s,I,B,L,i,J,p,s,j,J,f,p,C,C,p,B,S,f,I,f,C,d,C,l,J,i,d,c,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
159 F52(f97,I,p,C,C,p,i,B,l,B,l,j,C,d,C,L,f,S,c,c,d,B,J,s,c,C,c,l,p,l,L,i,s,i,C,j,i,j,l,C,B,j,c,i,f,p,i,s,f,d,c,s,c,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
160 F32(f98,f,j,B,C,c,C,d,j,B,c,c,p,i,L,p,J,B,J,p,i,f,B,S,c,L,d,i,I,C,d,L,I,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
161 F53(f99,J,s,L,j,B,L,p,i,S,C,S,c,c,p,i,L,L,i,p,s,B,s,f,j,L,i,c,I,C,C,C,I,d,j,p,J,L,L,i,f,B,S,p,I,c,j,j,s,f,s,j,J,l,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
162 F13(f100,j,l,j,c,S,i,J,i,d,I,C,S,L,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
163 F45(f101,v,I,I,I,L,J,C,i,f,p,I,d,f,S,J,c,C,C,S,f,i,d,d,i,S,l,p,i,l,s,c,j,d,f,i,i,S,S,l,C,d,p,j,I,f,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
164 F20(f102,l,d,s,c,J,i,C,J,p,f,i,s,c,I,f,p,p,j,c,c,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
165 F13(f103,d,s,c,J,S,B,i,i,S,B,J,L,d,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
166 F22(f104,l,L,l,l,B,f,j,L,c,S,d,J,s,p,c,J,p,c,L,B,s,c,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
167 F46(f105,C,B,L,i,l,S,p,d,l,i,B,s,I,f,p,f,j,I,i,p,J,I,d,L,l,p,i,I,s,B,C,L,p,d,C,S,f,C,c,j,C,I,I,I,i,L,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
168 F48(f106,B,C,d,L,f,f,j,S,B,p,C,c,c,l,f,p,B,j,B,l,L,l,i,J,l,c,c,L,L,p,l,p,L,J,J,l,p,J,S,l,l,f,B,B,c,I,J,I,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
169 F23(f107,l,L,C,C,i,c,B,S,d,f,c,s,S,i,B,L,f,p,J,j,i,i,J,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
170 F22(f108,J,p,J,s,C,c,l,j,C,p,C,J,s,i,i,L,S,j,S,B,L,c,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
171 F19(f109,C,I,I,I,J,J,d,S,d,B,c,f,J,l,j,J,l,C,S,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
172 F29(f110,l,C,L,J,L,L,i,C,B,d,L,c,I,c,J,i,j,s,s,f,S,l,d,c,B,i,i,j,l,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
173 F58(f111,d,C,s,c,i,i,p,B,C,l,i,l,d,J,i,S,p,J,B,c,p,I,J,s,j,B,S,p,C,d,s,i,p,C,l,s,L,C,C,c,i,J,f,B,p,L,C,C,B,p,J,s,p,l,f,l,d,d,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
174 F54(f112,c,L,c,L,f,d,J,f,f,J,C,j,i,i,j,s,s,J,p,j,S,S,j,f,j,s,f,s,J,j,B,C,l,l,c,C,l,S,L,l,L,c,L,f,d,I,C,S,I,i,s,d,c,C,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
175 F46(f113,j,s,I,L,j,S,S,f,I,j,s,f,s,i,l,s,d,L,c,s,l,s,J,C,C,d,p,J,B,c,C,J,d,j,p,L,i,I,s,B,S,p,f,C,S,l,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
176 F38(f114,I,c,I,I,S,I,L,i,i,f,S,l,l,d,l,L,p,c,p,S,c,j,p,d,i,L,s,B,i,d,C,i,J,S,c,J,I,B,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
177 F56(f115,l,s,C,c,B,B,s,I,S,J,c,S,L,S,I,j,s,d,I,I,s,j,C,L,B,s,l,i,B,I,B,i,p,L,j,L,l,s,S,i,i,i,s,j,j,p,B,d,l,c,d,d,c,I,s,l,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
178 F58(f116,s,s,I,f,s,B,p,s,l,B,C,L,I,s,d,p,S,L,s,d,L,l,L,j,d,L,p,L,B,S,i,L,c,J,B,d,j,S,j,l,I,l,f,I,I,f,f,J,B,i,L,f,d,I,c,B,j,p,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
179 F3(f117,f,C,f,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
180 F17(f118,v,B,J,s,C,B,f,p,L,p,f,j,S,f,B,B,c,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
181 F14(f119,c,C,s,C,s,c,i,L,J,f,l,l,c,j,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
182 F26(f120,d,S,L,I,d,C,j,J,f,d,B,s,c,B,l,I,l,d,J,I,j,i,f,C,I,i,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
183 F55(f121,L,d,j,d,f,C,S,l,C,S,s,i,p,I,j,s,B,s,I,p,d,J,J,C,l,B,p,B,f,f,l,C,i,s,J,s,c,f,c,I,j,L,f,B,S,C,c,l,p,i,B,B,I,p,d,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
184 F54(f122,d,J,f,C,j,d,f,p,f,d,S,d,f,C,f,f,j,L,f,S,c,I,p,p,J,s,p,C,L,f,d,j,S,B,C,l,l,s,i,C,f,f,l,j,i,c,s,f,d,p,S,I,J,I,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
185 F6(f123,J,f,p,d,S,i,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
186 F58(f124,d,j,c,j,p,s,C,f,p,B,p,s,s,I,S,J,I,J,d,B,S,B,i,l,f,I,l,L,i,d,L,S,l,L,c,I,c,f,i,l,S,d,f,f,d,d,i,f,C,L,I,l,l,B,C,S,p,I,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
187 F12(f125,C,d,j,J,I,S,l,I,C,s,s,j,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
188 F54(f126,f,J,f,I,S,C,C,S,c,S,d,J,l,p,S,l,j,S,B,B,j,S,l,J,i,c,S,J,s,I,c,I,i,B,j,p,S,L,L,l,s,j,I,l,l,s,S,i,I,c,j,B,B,p,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
189 F17(f127,p,I,L,L,S,J,C,I,l,B,I,p,d,c,L,l,f,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
190 F0(f128,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
191 F38(f129,C,s,f,f,l,S,f,I,L,J,C,l,i,L,p,i,i,l,i,f,j,C,S,s,s,j,c,j,c,L,B,J,p,L,d,s,p,f,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
192 F59(f130,d,p,B,i,c,s,L,l,C,d,d,l,i,S,s,f,I,i,l,B,I,p,l,I,I,S,d,p,c,d,j,d,j,I,C,d,p,f,s,i,L,B,J,B,f,c,f,I,i,J,i,s,S,L,I,C,L,f,B,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
193 F27(f131,I,p,f,l,p,C,j,l,C,c,I,B,C,p,J,c,s,c,c,f,c,S,j,S,s,d,L,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
194 F2(f132,C,c,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
195 F3(f133,i,i,f,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
196 F38(f134,j,d,f,l,l,B,f,C,d,C,C,c,p,C,S,j,p,c,s,B,C,J,B,s,c,c,f,j,I,f,f,I,B,i,S,C,j,J,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
197 F21(f135,I,l,s,j,i,d,C,j,I,s,i,f,s,j,S,i,p,B,d,c,p,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
198 F48(f136,l,f,B,j,j,d,d,J,C,C,J,s,i,d,c,f,L,s,I,j,s,C,s,l,i,J,c,C,I,f,B,J,J,j,l,B,j,C,B,C,l,I,l,s,L,J,B,J,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
199 F14(f137,B,l,L,d,d,L,I,p,S,J,s,B,p,l,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
200 F6(f138,f,p,f,B,l,s,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
201 F8(f139,B,i,j,d,l,p,C,S,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
202 F18(f140,I,f,L,S,l,f,s,d,j,i,S,f,S,B,J,L,L,j,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
203 F29(f141,s,i,L,i,f,j,s,f,B,d,J,I,c,s,S,c,j,l,f,I,B,p,l,s,L,I,J,B,B,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
204 F36(f142,d,f,s,f,J,S,I,s,p,f,j,l,S,j,p,f,j,S,d,B,d,c,d,J,I,p,p,I,d,l,d,B,S,s,l,p,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
205 F21(f143,B,J,p,s,f,S,l,l,s,I,j,f,j,j,f,c,p,f,p,I,f,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
206 F57(f144,S,S,i,C,f,p,I,d,c,p,S,l,d,S,C,p,L,s,C,I,S,C,S,L,j,C,c,S,s,p,I,c,f,i,p,B,C,d,S,p,S,p,f,I,L,J,B,i,c,f,J,c,C,s,p,I,C,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
207 F14(f145,p,c,f,i,l,L,C,c,L,S,C,J,s,I,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
208 F44(f146,S,d,J,d,f,d,i,I,S,p,J,L,f,S,l,s,j,j,I,S,L,L,f,J,l,i,B,C,J,i,S,s,f,d,S,l,J,C,J,p,s,j,i,s,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
209 F16(f147,j,J,c,s,p,c,s,c,c,J,c,d,C,l,p,j,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
210 F36(f148,L,p,i,C,l,S,p,B,i,C,B,I,J,p,S,i,J,c,J,s,B,p,p,B,L,B,d,c,C,i,f,j,d,I,d,f,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
211 F37(f149,j,p,S,i,B,s,c,d,c,c,J,B,l,C,c,i,I,l,s,B,d,p,I,J,I,C,I,S,B,L,i,i,i,L,c,d,B,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
212 F8(f150,s,B,S,f,j,j,L,i,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
213 F60(f151,B,B,L,S,L,S,C,i,p,j,c,f,s,I,J,I,L,d,I,s,l,j,c,i,j,s,i,L,L,p,f,B,L,c,s,i,B,l,d,c,d,C,j,B,B,l,C,J,L,C,c,p,j,S,J,B,L,d,c,J,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
214 F60(f152,c,l,l,s,j,j,i,d,J,d,C,C,s,c,c,j,i,S,l,L,i,f,s,l,s,B,p,f,i,I,i,p,s,p,L,B,L,f,L,f,s,i,C,C,S,c,J,i,B,L,L,f,l,j,i,I,I,L,C,C,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
215 F11(f153,c,j,s,L,I,f,C,j,c,c,I,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
216 F14(f154,j,l,j,C,S,d,f,j,p,J,B,l,S,j,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
217 F49(f155,v,C,S,J,S,B,J,f,p,J,I,B,C,B,j,B,i,i,s,p,l,B,f,S,S,c,p,S,J,I,d,c,p,C,I,l,f,j,J,I,p,L,l,J,I,i,J,p,B,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
218 F40(f156,l,f,C,j,c,f,C,s,c,L,d,f,B,I,f,B,J,d,J,f,d,S,S,I,c,l,i,I,f,I,f,p,I,s,S,L,f,i,J,l,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
219 F58(f157,J,C,p,S,B,I,S,l,J,c,L,s,L,l,C,C,B,I,j,I,J,d,c,S,j,J,j,C,d,l,f,l,s,L,d,s,B,I,d,f,C,l,S,B,l,i,J,I,S,J,i,L,C,J,B,j,B,d,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
220 F44(f158,p,B,S,f,I,L,I,I,p,j,L,I,c,d,L,c,l,d,S,C,d,I,J,S,l,S,d,i,i,I,S,L,l,d,j,p,c,f,s,c,c,i,s,c,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
221 F10(f159,l,j,f,i,L,L,J,B,S,I,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
222 F9(f160,v,I,p,C,B,C,C,p,C,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
223 F24(f161,d,i,l,J,L,I,L,L,C,S,J,L,l,C,l,B,f,d,s,J,p,d,C,p,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
224 F58(f162,S,l,J,p,s,l,s,p,i,I,C,S,p,j,c,C,J,i,i,f,j,I,l,J,l,I,l,I,f,l,l,p,l,j,I,l,B,p,I,p,I,d,c,J,I,B,c,I,B,p,I,I,J,C,l,s,s,s,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
225 F3(f163,c,i,c,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
226 F40(f164,J,l,c,j,i,p,L,C,C,i,C,f,C,i,L,j,d,j,S,L,p,L,J,j,S,J,l,p,l,s,I,f,B,I,I,B,p,L,L,s,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
227 F23(f165,s,i,B,B,c,S,p,d,C,s,B,C,p,l,l,J,f,i,J,i,C,C,I,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
228 F6(f166,p,S,S,s,i,I,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
229 F27(f167,f,L,p,c,f,d,i,B,I,d,I,c,c,L,c,p,s,s,L,c,J,B,c,J,s,I,S,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
230 F28(f168,j,B,S,L,C,J,d,c,S,c,L,J,C,l,C,J,j,S,j,L,d,C,J,f,i,s,l,I,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
231 F11(f169,p,C,L,S,i,S,S,s,s,c,d,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
232 F35(f170,i,l,l,J,i,J,B,J,I,p,f,i,C,I,B,c,C,L,d,L,B,J,j,I,f,c,S,s,c,L,S,j,j,S,J,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
233 F43(f171,B,B,C,L,C,p,p,p,B,p,j,i,J,I,f,C,p,s,s,j,I,c,J,p,d,i,d,i,L,S,d,B,l,p,s,S,l,B,i,p,I,f,B,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
234 F23(f172,C,B,i,I,l,f,l,l,l,I,L,d,p,d,i,C,C,j,c,s,S,L,p,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
235 F57(f173,I,d,f,S,d,l,J,f,d,d,l,S,i,L,I,B,C,J,d,S,S,J,I,p,f,i,i,j,B,J,I,j,l,l,B,j,B,s,l,f,p,C,f,B,d,i,S,B,B,J,J,i,i,c,l,J,s,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
236 F4(f174,i,I,I,l,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
237 F16(f175,l,I,I,p,j,p,f,l,s,S,c,s,p,C,B,J,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
238 F56(f176,c,j,i,C,S,S,p,L,p,f,d,I,B,L,S,S,l,C,S,L,d,c,L,i,d,f,S,d,J,d,I,L,C,S,s,c,c,d,B,j,J,p,L,s,j,S,j,C,d,C,j,S,I,J,l,I,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
239 F10(f177,S,I,L,B,C,d,d,d,B,j,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
240 F28(f178,s,j,L,c,I,i,B,C,C,l,s,B,C,d,B,S,s,c,f,f,j,j,s,S,d,I,s,J,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
241 F17(f179,v,J,j,s,S,i,c,s,f,B,d,p,s,L,B,d,J,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
242 F37(f180,f,i,d,p,i,j,j,i,L,p,S,B,j,s,f,C,d,f,l,J,s,i,B,S,S,p,l,s,p,S,p,p,B,L,I,l,j,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
243 F23(f181,L,C,C,j,B,f,B,S,i,j,p,j,d,l,J,d,l,s,f,d,j,i,I,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
244 F54(f182,B,J,i,p,j,s,p,I,f,f,S,C,C,J,f,J,S,I,B,i,s,S,s,B,C,p,L,L,L,L,p,C,J,f,d,C,d,S,i,S,S,c,c,d,s,I,c,S,S,i,j,j,c,l,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
245 F8(f183,S,s,s,j,I,J,S,p,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
246 F35(f184,p,d,B,i,l,l,s,B,B,S,J,p,p,B,L,s,l,S,S,i,i,L,f,i,d,C,s,L,c,f,f,J,S,S,J,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
247 F38(f185,L,l,B,d,p,d,i,f,d,c,i,S,B,d,I,j,J,p,f,i,i,j,I,f,C,i,l,d,l,I,f,d,s,C,j,f,d,J,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
248 F32(f186,I,C,s,l,l,i,I,L,l,c,B,l,J,j,B,L,J,p,f,L,B,i,j,i,l,B,C,j,f,l,c,d,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
249 F13(f187,d,s,s,C,d,B,B,C,l,s,L,c,i,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
250 F31(f188,v,C,L,L,C,c,j,J,i,L,I,B,S,c,s,p,l,C,B,J,i,p,d,d,l,l,f,f,i,C,C,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
251 F21(f189,p,c,d,L,s,j,J,S,j,s,S,l,l,J,j,L,p,S,s,i,l,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
252 F39(f190,S,i,f,C,S,B,C,c,I,j,i,j,l,c,c,j,B,i,j,i,C,I,C,B,J,f,f,i,I,S,d,c,l,d,c,c,L,l,C,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
253 F48(f191,v,s,C,I,C,l,C,l,L,p,B,f,L,L,S,f,i,L,B,S,s,s,L,c,f,j,B,j,C,S,f,S,S,p,S,l,c,d,f,s,d,L,C,L,J,p,s,p,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
254 F45(f192,C,l,f,C,I,d,s,d,f,B,f,B,i,C,j,d,j,S,S,c,l,B,p,c,S,f,s,J,C,j,J,L,C,J,I,s,f,c,i,i,S,f,s,c,S,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
255 F9(f193,I,i,p,i,C,i,l,f,j,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
256 F7(f194,L,B,j,j,S,I,C,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
257 F15(f195,S,S,L,S,p,S,L,L,p,i,C,j,I,B,s,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
258 F16(f196,C,C,J,l,C,s,I,p,I,s,j,B,s,L,I,L,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
259 F47(f197,v,d,d,i,c,L,d,I,S,I,f,j,p,B,i,I,l,s,c,J,B,I,c,I,J,S,s,L,C,s,l,l,c,B,I,i,d,j,L,j,f,p,l,C,S,I,c,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
260 F21(f198,B,I,L,d,j,i,J,i,j,C,l,i,j,c,L,l,l,s,C,B,S,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
261 F24(f199,J,l,j,L,C,c,f,S,i,p,L,L,s,s,J,L,J,S,C,L,p,f,J,d,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
262 F1(f200,s,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
263 F36(f201,C,f,p,J,B,j,B,j,C,J,j,f,S,J,p,J,j,B,C,l,J,I,j,j,S,I,J,B,p,S,j,s,I,i,d,f,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
264 F19(f202,s,L,J,B,I,j,c,L,l,B,c,c,S,L,j,s,i,d,p,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
265 F48(f203,i,I,j,p,S,S,l,B,p,I,s,S,f,B,f,C,C,c,p,f,I,L,S,c,L,c,j,C,p,s,l,l,B,J,l,d,L,s,I,s,d,s,L,f,L,i,j,S,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
266 F24(f204,s,S,c,p,j,i,C,B,I,I,s,I,C,d,S,c,S,S,j,J,i,p,L,C,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
267 F16(f205,I,p,I,S,J,S,j,L,S,j,i,C,S,C,I,p,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
268 F55(f206,p,p,j,B,J,L,c,c,c,J,d,s,B,s,c,J,L,i,j,S,C,l,L,L,I,d,d,p,s,c,d,B,s,B,p,f,i,S,S,c,I,C,C,i,B,p,S,L,s,S,c,c,p,l,j,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
269 F24(f207,C,B,p,C,s,l,f,S,j,p,I,J,B,i,L,J,p,d,c,d,s,I,f,f,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
270 F59(f208,C,p,B,p,S,I,d,c,s,j,j,B,B,j,f,L,C,p,C,B,p,L,l,i,c,j,B,S,S,J,C,l,f,J,c,J,C,L,s,L,d,B,L,C,S,S,B,p,I,d,d,j,f,d,S,j,f,i,f,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
271 F37(f209,C,s,i,j,c,L,J,J,f,C,s,I,f,l,d,J,I,C,B,l,f,p,S,S,C,p,B,C,j,S,L,J,p,C,J,B,s,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
272 F53(f210,d,i,l,p,d,j,c,J,l,f,B,B,p,C,I,f,l,I,c,i,c,d,d,s,I,c,f,I,l,i,I,p,J,J,J,L,d,f,S,j,s,S,L,d,I,j,J,C,J,f,p,f,S,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
273 F25(f211,J,s,L,l,i,B,l,S,C,J,I,p,L,i,S,j,I,j,C,L,i,C,p,c,c,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
274 F36(f212,L,S,B,l,i,j,f,S,j,J,B,c,p,J,B,s,L,c,I,p,c,B,B,C,C,f,j,l,B,d,i,L,L,f,l,C,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
275 F33(f213,c,d,l,j,S,j,j,l,s,i,J,s,f,B,f,I,L,J,s,S,l,s,L,L,L,S,i,s,I,f,j,i,L,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
276 F33(f214,I,p,L,L,L,i,c,S,B,C,I,f,d,j,B,C,c,C,d,j,l,l,L,I,j,c,C,L,C,C,f,S,S,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
277 F41(f215,S,d,l,d,B,c,B,i,c,I,f,B,S,I,I,B,C,c,S,d,c,j,p,i,j,d,l,J,d,f,j,S,p,j,I,I,j,l,B,S,d,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
278 F44(f216,c,S,J,s,B,S,I,f,d,I,c,B,C,s,j,p,J,p,f,L,d,I,j,i,p,J,l,C,C,i,s,p,i,c,l,s,f,c,B,B,I,L,s,B,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
279 F35(f217,d,B,d,j,S,I,s,c,s,l,c,p,j,s,B,c,s,d,p,i,p,c,c,L,f,i,L,S,d,s,s,j,j,l,d,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
280 F46(f218,S,c,I,l,L,J,c,d,C,f,I,c,c,p,p,C,S,C,J,l,J,i,s,i,s,B,l,J,j,d,d,L,S,c,L,i,c,c,c,p,p,B,d,s,B,f,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
281 F32(f219,p,I,S,d,i,p,p,J,c,s,j,f,d,f,I,S,c,l,B,c,i,s,s,I,i,d,j,d,d,j,i,I,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
282 F52(f220,C,d,s,i,B,f,l,S,C,I,C,C,L,B,L,c,c,J,f,p,S,S,S,j,f,C,i,J,i,S,f,J,I,i,s,s,d,j,s,p,c,C,i,J,I,f,S,i,L,B,d,j,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
283 F5(f221,j,B,C,S,i,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
284 F6(f222,v,d,J,s,c,S,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
285 F50(f223,c,s,f,l,i,L,c,d,c,l,l,p,C,S,L,S,d,l,f,d,S,B,l,B,B,i,L,L,i,C,c,s,B,f,s,C,J,f,C,B,l,d,l,S,l,c,d,f,i,d,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
286 F16(f224,v,B,i,J,L,J,L,j,d,f,c,l,l,B,C,i,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
287 F32(f225,I,l,s,B,j,B,s,C,C,L,c,S,i,p,f,d,p,C,I,J,j,C,L,p,p,s,L,i,c,B,j,L,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
288 F6(f226,L,c,J,s,j,C,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
289 F26(f227,c,i,j,d,j,J,p,C,S,I,p,J,l,i,J,d,j,l,f,l,c,L,J,s,c,S,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
290 F7(f228,c,J,L,p,s,i,c,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
291 F17(f229,l,c,C,f,c,s,c,J,B,d,s,B,c,j,j,s,i,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
292 F50(f230,B,L,B,C,i,j,I,c,i,s,c,S,l,J,s,L,d,C,S,j,p,j,i,I,C,j,c,I,C,p,s,j,c,s,B,c,f,c,S,B,S,L,I,s,S,c,J,L,s,C,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
293 F55(f231,C,s,C,c,c,i,C,L,d,d,I,s,f,i,C,s,j,d,S,i,l,d,I,L,J,f,i,s,I,i,s,j,c,j,I,p,p,c,j,L,J,C,p,C,B,f,C,c,f,l,l,j,s,p,j,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
294 F6(f232,I,B,S,I,s,B,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
295 F59(f233,B,f,I,L,c,i,c,L,s,i,C,c,d,c,L,B,i,J,S,I,f,B,C,i,l,c,I,f,c,d,i,C,d,J,C,L,d,c,j,J,s,B,d,C,p,d,C,d,d,I,J,C,d,L,L,l,d,L,J,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
296 F38(f234,f,S,J,B,f,L,S,B,c,S,s,i,B,J,S,c,l,i,f,i,J,f,j,I,I,d,c,l,l,C,s,s,l,C,B,S,L,J,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
297 F54(f235,C,f,d,d,f,S,I,c,s,I,p,B,p,B,S,B,B,C,c,C,S,f,c,c,L,c,l,B,i,J,s,l,I,S,d,J,c,B,j,j,p,f,p,d,c,d,c,l,I,C,J,l,i,f,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
298 F8(f236,J,C,d,c,s,c,p,S,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
299 F58(f237,p,I,l,B,L,B,l,c,C,d,j,I,I,I,S,I,p,C,L,B,C,I,S,L,f,p,i,j,i,L,f,l,C,C,c,I,S,c,I,c,J,L,c,f,S,S,f,f,p,B,s,C,i,C,C,C,C,p,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
300 F23(f238,v,c,S,L,d,I,B,c,i,p,J,i,s,s,j,i,S,d,J,B,I,j,j,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
301 F6(f239,l,l,j,S,i,i,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
302 F30(f240,p,S,C,d,d,C,c,i,S,f,B,l,S,s,L,i,S,f,C,c,i,l,J,L,j,S,J,I,j,l,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
303 F49(f241,p,L,d,I,B,L,S,s,i,J,I,I,c,B,L,S,f,p,l,B,B,s,J,l,i,d,p,s,J,i,i,f,p,C,B,C,d,i,d,J,S,C,B,B,L,B,c,i,l,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
304 F45(f242,I,L,C,d,d,j,j,J,l,l,S,s,s,f,j,l,i,C,L,L,j,s,d,B,c,l,I,J,B,J,c,p,J,B,C,C,c,p,S,l,I,p,S,l,d,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
305 F38(f243,C,c,l,B,l,J,j,I,i,p,l,c,I,c,j,s,f,c,d,B,f,p,S,L,c,I,i,f,c,l,C,d,S,J,s,d,C,J,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
306 F59(f244,f,l,i,l,i,f,f,B,C,j,i,i,i,C,C,c,j,B,c,C,I,j,d,S,L,J,c,l,s,i,I,J,s,f,I,f,C,S,B,s,j,f,d,c,I,j,f,f,f,j,f,s,p,C,C,l,S,i,C,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
307 F36(f245,J,p,j,c,I,s,l,L,I,I,s,s,J,d,B,d,s,s,L,c,l,c,l,l,I,c,S,j,d,B,C,d,L,C,j,l,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
308 F40(f246,v,s,C,L,L,i,c,L,c,B,i,l,L,j,L,J,B,L,S,B,J,p,I,p,s,c,c,j,p,f,I,l,i,l,f,L,s,s,c,s,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
309 F4(f247,v,j,f,l,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
310 F34(f248,p,I,s,c,p,J,d,C,c,j,B,l,I,J,I,f,S,i,l,l,p,J,B,B,p,s,c,l,s,i,B,p,l,d,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
311 F52(f249,j,i,f,S,d,s,d,I,I,d,L,B,d,B,B,c,I,d,l,i,C,I,f,l,J,j,d,I,f,C,c,I,L,d,l,c,c,d,I,S,s,i,I,c,i,C,J,c,c,p,I,J,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
312 F12(f250,d,f,I,S,s,f,J,L,L,C,j,f,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
313 F11(f251,B,j,B,L,C,S,L,L,c,c,l,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
314 F41(f252,d,i,I,l,f,l,S,p,d,l,j,J,c,C,c,L,l,B,j,L,s,B,C,I,J,J,C,J,d,d,p,l,f,J,i,f,f,s,p,C,f,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
315 F21(f253,v,d,S,p,J,f,f,l,C,C,j,f,i,C,f,C,j,B,B,f,c,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
316 F15(f254,J,s,i,j,s,B,d,I,S,L,I,i,I,i,c,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
317 F48(f255,I,B,S,c,l,c,B,C,B,B,d,c,l,c,j,J,l,p,S,s,j,p,J,c,I,S,i,j,J,c,j,C,S,S,p,J,f,d,i,C,C,S,f,l,I,l,j,S,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
318 F13(f256,d,C,c,f,d,f,c,C,s,i,j,I,L,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
319 F6(f257,i,J,s,f,i,p,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
320 F49(f258,I,C,p,f,p,f,j,c,s,c,j,p,B,c,p,L,J,L,j,L,d,f,i,B,s,J,L,c,f,c,B,i,p,B,L,L,i,C,l,I,S,l,j,p,c,c,f,l,J,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
321 F4(f259,L,d,s,c,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
322 F45(f260,s,f,J,s,l,L,p,S,C,p,s,J,c,p,J,i,J,l,B,p,S,s,B,j,d,d,s,f,d,d,j,i,J,s,B,S,l,I,C,d,i,S,I,d,f,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
323 F29(f261,L,f,L,I,f,I,s,L,C,l,s,j,S,S,f,j,C,l,B,L,p,I,i,i,c,J,I,L,c,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
324 F14(f262,l,d,f,d,J,p,i,C,S,L,S,f,p,j,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
325 F48(f263,f,l,l,B,c,I,S,B,L,J,B,C,j,B,I,C,i,L,S,L,l,s,J,f,B,J,C,j,J,c,C,L,B,l,s,L,J,f,s,j,s,S,f,B,I,j,I,C,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
326 F14(f264,s,J,p,L,p,J,L,i,J,s,l,J,f,j,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
327 F38(f265,l,d,I,s,i,B,J,p,i,d,L,c,S,J,J,B,J,l,I,j,L,S,i,c,s,s,I,B,S,I,l,s,I,S,f,p,j,B,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
328 F14(f266,j,d,L,j,J,B,f,f,d,j,L,L,d,I,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
329 F49(f267,c,j,j,L,i,c,f,d,J,j,I,s,d,S,S,i,l,c,l,s,f,C,d,L,p,c,s,C,I,B,S,L,s,s,L,B,f,S,S,i,i,I,p,f,c,B,s,I,J,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
330 F56(f268,B,B,s,c,s,L,L,j,s,I,p,I,S,C,j,C,I,f,C,B,s,C,C,S,j,J,J,d,B,d,l,l,i,p,j,B,l,L,d,s,p,p,f,i,f,j,I,L,p,I,I,c,p,d,f,s,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
331 F52(f269,C,I,p,I,s,c,I,J,C,d,d,s,L,d,I,J,d,S,f,c,I,s,d,L,c,I,j,p,C,L,f,B,i,J,B,i,d,I,j,c,d,l,S,p,S,c,d,B,i,J,S,d,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
332 F38(f270,J,i,J,j,S,f,i,f,I,J,i,i,j,p,c,B,f,C,I,j,L,j,B,L,I,s,J,l,B,d,p,I,I,c,S,J,C,s,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
333 F21(f271,l,f,d,l,j,d,d,c,i,p,B,d,l,S,L,j,l,p,f,l,l,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
334 F20(f272,S,c,c,f,S,S,S,s,l,i,d,d,l,c,I,B,c,j,j,f,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
335 F22(f273,J,J,c,l,l,C,i,C,B,p,c,s,j,s,d,p,p,B,C,c,i,d,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
336 F7(f274,c,I,s,p,B,f,I,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
337 F8(f275,c,B,p,L,I,c,p,C,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
338 F33(f276,J,p,B,c,B,j,C,s,j,p,p,d,S,s,p,I,j,B,d,d,j,C,s,L,L,l,c,l,s,L,f,I,J,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
339 F33(f277,B,C,l,L,J,p,C,S,c,d,J,f,I,i,s,j,j,J,j,S,f,i,j,p,j,J,p,d,L,s,S,c,I,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
340 F14(f278,I,d,J,c,f,f,i,J,d,J,c,l,l,i,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
341 F41(f279,C,I,S,L,S,J,p,l,j,S,l,j,j,d,L,I,B,i,i,B,J,L,s,C,d,J,S,C,C,f,I,l,s,f,C,S,J,s,j,j,f,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
342 F7(f280,j,i,B,p,f,J,s,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
343 F47(f281,l,J,J,l,l,S,L,B,f,f,s,c,f,p,s,l,L,I,I,j,l,f,S,S,S,I,j,c,J,J,p,d,j,d,J,c,s,l,f,f,S,l,p,S,l,s,C,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
344 F46(f282,C,s,f,L,C,L,s,j,l,I,l,c,c,L,l,B,s,s,L,B,I,C,p,S,c,f,l,i,j,C,l,d,I,c,S,s,B,j,c,s,J,B,B,C,J,L,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
345 F2(f283,I,S,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
346 F30(f284,I,f,S,j,C,J,I,J,s,d,I,L,I,d,C,C,d,B,B,p,L,I,c,p,S,S,S,i,d,I,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
347 F46(f285,B,j,p,p,p,J,S,f,B,B,B,C,c,S,S,L,L,c,i,l,C,s,B,s,f,p,i,l,j,p,d,d,f,s,d,j,S,l,B,i,C,p,s,C,I,j,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
348 F33(f286,B,i,j,S,J,i,C,i,j,p,p,i,L,c,f,s,C,B,d,i,I,j,C,l,j,d,p,f,l,l,l,p,j,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
349 F4(f287,v,j,J,B,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
350 F48(f288,f,i,c,J,i,S,s,d,f,S,J,I,d,j,S,j,C,J,s,B,j,l,i,j,C,s,s,S,s,L,s,C,s,l,d,C,B,s,I,L,l,j,l,c,l,I,c,s,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
351 F39(f289,l,B,l,c,i,f,j,J,j,I,B,f,I,C,d,L,L,c,L,J,c,C,I,B,C,i,p,c,p,c,S,B,l,j,i,j,l,c,I,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
352 F52(f290,c,j,d,J,d,j,I,j,C,B,I,B,l,l,S,j,C,J,p,S,J,J,j,L,B,B,i,l,S,f,l,i,I,d,C,c,s,f,p,I,j,i,l,B,i,J,i,f,d,C,C,d,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
353 F34(f291,i,J,c,c,f,C,I,I,J,i,i,l,i,i,d,f,p,j,L,c,L,I,i,L,S,I,i,C,c,j,f,f,B,l,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
354 F2(f292,f,f,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
355 F6(f293,C,B,p,B,C,j,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
356 F8(f294,j,S,p,l,j,l,l,C,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
357 F4(f295,d,d,B,J,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
358 F52(f296,f,c,i,J,j,J,j,i,f,d,I,i,c,J,j,J,s,s,l,l,B,j,l,S,f,d,S,S,d,c,s,S,I,c,I,I,C,c,f,i,L,c,l,j,s,s,S,d,c,d,f,c,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
359 F42(f297,B,s,I,C,s,B,p,C,f,S,p,l,S,j,j,s,I,B,B,i,L,S,B,f,s,J,l,I,i,S,L,f,c,c,c,I,d,i,s,d,I,j,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
360 F60(f298,L,I,L,C,C,c,C,p,l,S,f,l,c,f,c,i,f,l,f,l,d,i,I,c,p,p,B,B,L,S,f,s,J,I,f,J,f,d,s,I,I,L,L,J,L,S,L,I,J,p,d,s,i,C,S,L,f,S,S,c,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
361 F59(f299,j,C,j,p,c,s,J,c,p,B,J,d,f,S,f,l,l,j,B,s,j,B,B,I,f,I,c,l,i,f,l,p,j,j,L,l,S,I,d,C,I,S,c,j,B,L,c,B,d,s,i,d,l,d,i,I,f,j,p,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
362 F32(f300,c,l,J,f,j,j,j,C,s,i,s,s,p,p,L,i,C,d,i,d,i,i,L,d,i,i,l,l,d,i,C,p,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
363 F35(f301,C,c,d,l,i,f,J,p,d,f,I,d,j,d,l,B,S,s,p,s,c,J,i,d,f,d,C,j,l,l,s,S,p,f,I,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
364 F15(f302,v,l,C,p,B,s,L,j,l,j,s,C,d,s,l,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
365 F60(f303,c,s,L,c,I,l,j,c,I,J,l,j,J,C,d,I,S,B,f,B,c,f,J,B,j,J,B,L,p,B,s,p,C,J,B,I,S,p,i,B,I,C,f,C,p,J,L,l,S,d,d,j,p,s,C,C,B,C,s,l,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
366 F40(f304,f,p,B,C,B,f,i,J,i,f,d,s,j,I,C,p,i,l,L,L,i,c,d,I,l,I,J,I,s,L,l,p,C,I,S,L,d,j,J,S,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
367 F27(f305,i,S,l,L,d,d,I,I,L,c,l,d,J,f,S,l,B,s,S,p,S,s,s,C,i,I,s,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
368 F41(f306,I,l,i,C,s,L,L,J,C,p,J,s,S,c,p,C,l,i,f,I,I,i,C,p,i,C,I,p,l,J,d,p,L,l,p,l,i,I,B,f,f,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
369 F6(f307,J,C,l,B,J,s,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
370 F32(f308,p,f,J,I,J,B,I,L,j,c,J,L,i,S,L,f,l,C,c,f,d,C,S,S,p,j,S,I,J,d,f,J,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
371 F22(f309,d,L,S,j,d,c,s,S,p,C,s,j,f,C,d,S,s,B,l,i,B,I,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
372 F25(f310,s,c,l,p,d,i,C,L,J,f,I,j,I,J,d,L,p,B,d,L,B,i,i,B,d,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
373 F36(f311,J,L,C,l,s,I,I,B,l,S,i,C,j,j,i,l,J,p,d,I,p,s,p,J,S,S,I,s,l,S,p,C,I,S,I,J,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
374 F14(f312,c,C,j,s,j,j,I,f,C,L,i,d,s,I,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
375 F40(f313,p,i,s,c,B,d,S,i,I,l,L,c,l,c,c,i,C,L,s,f,l,p,c,d,J,l,B,d,J,d,J,l,C,C,S,L,f,B,f,J,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
376 F4(f314,v,p,J,S,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
377 F54(f315,p,I,S,I,L,L,S,p,c,C,B,p,f,L,s,s,S,d,j,p,L,C,C,d,i,S,i,p,p,j,d,j,j,d,f,i,S,l,j,L,p,S,C,I,L,c,p,B,C,I,L,l,I,j,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
378 F20(f316,J,C,I,I,c,J,s,p,i,B,j,c,i,C,j,C,L,S,L,L,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
379 F36(f317,S,I,d,C,p,J,I,l,J,d,f,s,c,f,S,J,f,p,i,S,c,l,d,S,I,j,l,I,f,L,l,f,I,I,L,B,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
380 F7(f318,i,L,J,p,L,i,I,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
381 F33(f319,v,B,S,d,S,f,p,L,B,j,p,f,p,d,p,B,C,L,J,j,L,B,l,j,p,p,j,c,s,f,l,J,B,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
382 F39(f320,C,p,l,f,d,C,j,J,d,j,f,l,C,f,L,J,s,L,f,S,S,d,S,c,j,S,C,s,j,d,p,f,B,d,S,L,L,j,S,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
383 F16(f321,I,I,j,s,p,j,i,I,j,i,C,J,j,s,B,I,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
384 F47(f322,l,p,J,s,p,j,i,s,c,L,p,S,I,I,p,p,c,i,d,p,i,J,S,B,c,I,s,f,C,d,l,l,i,I,l,c,l,d,j,i,L,I,l,l,l,f,I,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
385 F15(f323,f,i,i,j,I,J,d,c,L,j,l,p,S,p,s,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
386 F44(f324,l,S,s,d,B,L,i,B,c,c,d,f,s,i,I,p,d,d,j,B,s,f,S,c,B,B,J,C,p,L,f,L,L,c,l,f,f,J,l,l,f,L,J,i,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
387 F47(f325,i,i,j,i,p,l,I,S,c,S,f,j,J,L,B,L,l,L,s,d,l,p,c,p,C,B,C,i,B,f,d,J,L,p,I,c,I,S,c,p,S,S,i,i,p,j,f,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
388 F37(f326,d,f,L,j,i,p,f,p,I,B,l,f,B,p,c,J,B,i,J,i,d,j,S,J,J,f,c,s,j,S,i,B,j,c,S,C,p,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
389 F54(f327,I,J,p,J,c,C,c,j,p,J,c,J,f,I,c,j,I,S,B,f,l,S,f,p,p,d,C,j,I,l,j,I,i,S,L,J,s,c,p,p,i,J,i,J,C,I,j,L,L,i,s,f,d,j,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
390 F10(f328,f,c,j,I,i,f,s,p,j,J,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
391 F36(f329,d,f,I,i,C,B,C,j,J,I,j,I,f,S,i,p,j,d,J,f,d,p,c,l,J,i,j,f,C,S,C,j,f,l,f,S,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
392 F28(f330,j,l,B,L,i,B,p,C,i,d,s,p,i,c,f,C,l,d,p,f,S,B,C,j,j,l,d,j,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
393 F48(f331,B,L,I,i,I,c,i,l,C,B,i,j,j,l,d,i,c,s,p,L,l,f,p,l,I,f,s,B,i,J,B,C,C,J,B,s,C,f,L,B,s,C,S,S,d,c,d,B,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
394 F2(f332,S,S,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
395 F14(f333,d,p,j,s,J,f,s,p,L,l,f,I,c,s,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
396 F58(f334,S,p,I,I,I,B,s,c,J,s,L,f,L,d,c,s,J,S,d,s,p,l,c,l,l,C,j,c,i,l,L,J,d,j,L,S,B,J,p,f,C,d,c,c,C,B,l,S,J,j,J,p,p,L,L,c,L,L,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
397 F33(f335,B,I,s,j,l,I,d,f,c,i,B,f,p,l,c,c,c,l,l,C,J,S,f,C,j,p,J,j,l,c,L,s,L,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
398 F43(f336,j,L,B,L,j,L,J,l,p,B,s,p,B,C,L,c,s,f,C,j,I,p,J,I,J,I,s,s,f,s,d,l,C,J,s,B,i,f,i,i,L,p,B,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
399 F36(f337,p,j,s,c,i,c,I,f,L,l,s,p,j,C,C,C,L,L,J,p,C,I,f,B,S,l,I,l,i,J,d,i,J,l,f,C,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
400 F4(f338,l,p,i,L,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
401 F41(f339,p,j,S,I,s,p,s,I,f,c,I,j,j,C,C,C,C,p,s,C,i,i,L,c,d,S,i,f,d,j,j,s,I,C,i,C,i,I,j,L,p,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
402 F14(f340,p,p,L,I,C,d,i,J,f,c,p,c,d,S,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
403 F47(f341,c,l,j,l,l,d,C,j,j,B,L,c,s,I,s,c,p,L,S,i,s,f,d,i,S,j,L,s,S,s,p,c,C,d,S,j,l,d,f,c,L,S,s,I,S,C,c,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
404 F52(f342,d,I,i,L,d,L,j,d,S,i,f,C,c,L,c,j,f,f,B,s,B,s,B,J,J,C,d,B,L,i,p,J,B,c,c,B,S,l,i,J,S,j,s,s,i,L,J,d,f,l,i,C,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
405 F6(f343,i,J,i,f,l,f,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
406 F9(f344,C,p,L,c,L,c,c,L,S,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
407 F36(f345,f,f,B,j,S,d,p,s,c,S,p,l,B,C,j,c,I,J,p,I,C,j,I,j,I,C,C,B,l,c,c,d,s,c,p,C,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
408 F30(f346,S,I,d,C,J,s,L,d,J,d,I,C,i,l,l,s,f,C,C,c,i,J,f,C,L,J,L,L,I,i,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
409 F24(f347,L,j,j,L,S,f,B,J,C,c,I,c,i,d,i,f,B,p,s,f,L,B,s,S,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
410 F14(f348,B,f,J,j,f,B,s,f,L,L,s,S,f,S,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
411 F56(f349,p,d,j,i,S,L,p,s,d,i,d,J,f,s,c,s,p,i,l,B,S,S,B,p,s,C,s,C,i,S,i,d,L,J,c,i,I,J,s,I,J,L,i,B,i,S,f,d,l,c,s,S,C,s,S,f,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
412 F31(f350,j,p,f,f,B,J,f,p,I,d,i,I,C,l,j,d,p,f,d,s,d,l,B,j,L,L,i,d,i,L,d,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
413 F24(f351,I,j,l,p,s,J,s,I,f,C,J,j,j,s,L,p,i,l,f,J,s,p,i,S,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
414 F11(f352,l,B,l,B,s,L,i,L,B,B,J,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
415 F26(f353,v,B,f,J,j,L,I,S,I,p,C,J,S,c,l,i,l,d,d,J,B,J,c,d,S,s,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
416 F39(f354,d,C,S,i,c,C,p,S,L,f,p,C,C,l,d,l,s,i,s,L,l,B,l,p,B,L,j,S,p,S,J,C,p,i,i,i,c,I,L,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
417 F40(f355,l,j,d,L,j,J,L,i,p,l,p,c,C,B,s,I,I,C,C,I,I,s,I,j,B,s,d,C,s,J,d,l,d,f,L,f,I,I,L,C,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
418 F42(f356,s,f,d,p,d,B,p,i,l,p,C,S,L,s,I,S,S,p,s,J,I,l,j,S,p,c,c,B,l,I,f,l,d,i,c,i,J,f,c,I,S,f,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
419 F14(f357,L,L,c,S,I,l,d,B,s,I,c,d,d,f,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
420 F4(f358,B,j,C,d,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
421 F44(f359,d,L,s,C,j,i,i,d,p,c,s,B,i,f,J,d,i,f,p,i,I,f,c,c,C,I,I,i,l,l,f,B,I,f,B,l,B,i,i,B,L,B,B,B,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
422 F22(f360,S,d,p,l,d,L,d,d,L,c,C,S,l,i,S,S,i,l,s,S,S,L,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
423 F9(f361,B,I,S,L,p,c,p,j,j,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
424 F7(f362,f,i,C,s,p,L,c,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
425 F1(f363,C,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
426 F18(f364,j,L,f,C,L,p,p,s,J,l,c,j,B,j,p,s,d,p,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
427 F52(f365,I,S,l,l,d,I,f,p,s,f,B,J,j,p,C,d,l,B,J,C,I,f,f,l,d,I,c,B,l,B,l,i,C,p,c,S,j,f,f,j,c,p,B,L,l,j,l,p,i,L,j,B,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
428 F30(f366,v,B,J,p,B,j,i,S,d,J,l,J,L,s,d,s,l,c,S,B,J,c,L,p,L,l,J,J,d,C,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
429 F45(f367,d,c,B,d,l,j,s,j,l,L,J,l,d,c,j,f,S,s,c,p,L,j,s,c,B,d,p,j,C,l,s,d,l,d,I,J,c,s,s,s,c,f,f,l,c,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
430 F57(f368,L,J,f,S,c,L,L,j,S,c,l,I,L,s,C,B,j,L,C,c,l,I,f,I,L,p,J,J,L,I,i,p,C,S,L,j,s,L,B,i,p,s,I,L,J,C,l,f,J,s,j,L,p,d,L,l,J,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
431 F20(f369,d,i,I,J,s,c,l,d,s,S,L,j,p,L,B,j,s,l,S,C,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
432 F50(f370,C,f,c,S,i,i,S,S,I,l,I,f,f,i,f,S,j,S,f,I,c,f,s,j,I,f,L,c,d,c,C,C,l,i,c,f,l,J,B,l,S,i,i,p,d,C,S,f,f,J,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
433 F20(f371,B,p,i,I,S,s,i,s,L,d,I,p,S,c,S,j,d,f,S,C,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
434 F12(f372,J,S,d,I,d,L,C,j,C,B,c,C,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
435 F50(f373,v,c,j,p,s,J,s,f,J,C,d,C,i,i,S,I,L,C,f,i,S,s,I,s,p,C,L,B,f,B,i,p,c,i,B,B,L,d,i,s,l,B,L,j,j,L,B,d,J,B,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
436 F22(f374,j,d,L,S,p,B,j,L,j,f,i,i,C,J,f,p,B,f,B,L,d,C,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
437 F15(f375,d,I,l,C,C,L,p,f,I,I,L,B,J,p,J,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
438 F49(f376,L,J,B,i,j,L,s,i,p,l,l,c,C,B,f,f,p,s,S,p,d,p,d,C,p,s,s,f,j,s,d,I,l,J,S,p,d,j,f,l,J,s,S,C,c,s,l,p,I,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
439 F8(f377,f,l,l,l,S,B,l,j,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
440 F40(f378,s,d,i,j,c,l,B,j,j,J,I,B,l,s,d,i,S,L,B,J,c,B,c,B,L,J,l,d,j,p,f,d,j,f,d,l,L,s,S,I,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
441 F38(f379,l,S,c,l,i,J,i,j,s,l,L,j,l,B,l,B,l,B,f,i,J,d,s,f,j,p,d,f,C,i,B,B,L,j,p,d,f,i,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
442 F54(f380,l,j,p,c,c,f,c,d,c,S,f,L,c,L,B,B,f,C,j,s,i,J,I,s,L,s,L,d,l,C,L,L,f,i,s,c,p,c,i,p,f,L,c,j,I,j,B,p,C,S,d,B,C,B,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
443 F54(f381,J,I,d,J,l,S,i,L,L,J,d,s,s,p,d,j,j,i,s,S,S,p,C,d,j,C,J,s,f,l,l,c,s,L,I,i,l,j,L,p,B,p,i,I,c,c,S,B,L,B,p,c,J,S,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
444 F7(f382,f,i,j,C,J,f,J,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
445 F11(f383,I,C,J,l,p,j,C,c,J,p,B,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
446 F59(f384,C,l,C,f,L,d,L,p,l,f,p,I,d,l,s,c,B,B,i,j,B,c,J,j,l,c,J,C,c,C,d,L,c,C,l,J,c,I,l,d,i,f,J,j,B,C,B,d,l,J,L,c,d,j,J,B,j,d,B,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
447 F3(f385,v,s,d,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
448 F51(f386,B,s,l,L,f,L,S,f,i,f,d,i,i,B,B,p,d,C,i,d,s,C,f,d,d,l,f,B,I,C,C,J,c,f,L,L,j,J,B,L,S,B,j,J,c,j,L,I,f,S,C,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
449 F7(f387,s,c,f,c,C,p,d,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
450 F25(f388,S,i,s,I,f,L,S,l,f,S,j,s,I,p,L,J,f,i,s,L,j,J,S,S,L,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
451 F10(f389,B,p,d,l,l,i,I,d,S,p,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
452 F1(f390,l,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
453 F4(f391,l,B,s,c,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
454 F48(f392,L,c,s,C,d,S,d,f,B,p,p,p,c,B,J,c,J,I,p,S,d,J,L,f,l,j,J,I,c,c,S,d,i,p,c,d,p,d,B,S,J,s,S,f,s,C,C,J,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
455 F32(f393,L,L,i,L,S,S,s,S,j,S,S,c,I,j,p,L,I,S,p,p,l,s,S,s,J,p,p,f,c,S,i,I,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
456 F47(f394,s,J,i,p,B,j,d,L,d,f,L,J,L,C,S,i,l,S,l,i,I,J,B,i,d,s,j,i,j,d,i,j,s,s,d,J,j,p,J,j,i,s,J,s,C,d,j,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
457 F46(f395,f,s,i,c,I,s,C,B,c,j,s,d,J,d,s,i,j,L,s,J,j,S,L,l,s,J,f,d,c,j,L,J,J,s,s,J,p,I,C,S,S,d,j,l,p,d,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
458 F58(f396,f,C,C,S,p,S,i,l,p,f,C,L,J,L,s,c,S,p,S,i,i,j,s,l,f,B,S,p,L,C,d,c,j,L,c,B,d,s,p,C,I,L,B,L,s,p,C,I,d,J,I,j,s,j,L,L,B,d,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
459 F36(f397,p,L,L,B,l,c,L,s,B,l,L,f,I,d,j,I,C,I,d,j,p,S,I,l,l,J,p,I,f,p,d,i,I,C,i,d,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
460 F58(f398,J,j,l,d,l,j,i,L,f,C,I,S,I,L,S,j,B,I,d,p,f,J,S,c,i,i,i,J,l,J,j,C,s,S,c,f,j,S,d,c,p,C,C,B,s,f,L,S,L,s,L,f,l,c,L,B,l,L,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
461 F22(f399,C,j,c,S,i,S,l,C,C,B,C,p,f,I,B,S,l,S,I,f,J,B,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
462 F38(f400,j,s,p,I,S,B,j,s,d,c,j,J,S,i,I,p,s,f,I,J,p,L,B,c,c,L,B,B,c,B,B,p,f,s,d,C,j,c,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
463 F30(f401,v,S,j,L,L,d,s,C,l,L,p,s,C,l,c,S,I,d,S,f,d,i,J,l,i,S,B,p,L,B,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
464 F4(f402,f,d,i,L,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
465 F11(f403,B,I,I,f,c,S,C,i,d,l,p,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
466 F25(f404,l,J,B,c,d,l,I,f,p,J,C,p,I,f,L,S,d,L,i,C,I,c,s,S,L,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
467 F0(f405,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
468 F53(f406,c,I,i,p,L,s,I,I,s,p,j,J,B,C,S,d,c,S,C,p,l,B,j,B,B,S,B,p,I,p,s,l,C,p,c,S,L,d,f,c,f,I,s,B,i,I,J,B,C,s,j,C,d,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
469 F46(f407,p,B,s,S,d,d,I,I,l,p,j,B,S,c,d,J,L,J,J,j,f,I,C,d,s,i,B,d,L,p,c,S,c,p,f,i,f,c,p,f,d,f,l,i,d,C,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
470 F25(f408,B,J,s,d,p,C,l,L,S,J,L,J,i,i,j,s,s,d,p,J,L,j,c,c,i,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
471 F17(f409,i,j,l,l,c,L,d,p,f,l,B,p,s,L,f,B,C,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
472 F20(f410,S,J,c,c,i,S,l,p,p,B,B,f,B,B,I,B,s,j,C,L,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
473 F5(f411,s,s,d,s,I,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
474 F25(f412,B,f,S,d,J,p,C,i,J,C,d,l,J,d,j,c,l,B,d,j,j,S,f,I,I,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
475 F53(f413,I,l,p,C,l,p,L,J,S,s,I,J,I,J,i,C,f,d,I,L,p,p,i,S,J,i,j,s,c,c,p,f,s,S,d,p,l,i,c,L,S,p,c,f,p,p,S,S,J,C,L,i,l,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
476 F35(f414,j,f,i,J,J,S,L,f,s,c,J,l,c,S,L,i,L,j,B,J,B,s,p,C,j,d,B,L,f,B,C,l,L,B,S,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
477 F4(f415,J,i,s,S,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
478 F10(f416,v,p,s,l,S,S,I,p,B,c,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
479 F28(f417,J,j,c,S,s,j,L,d,L,I,l,J,f,J,J,j,s,C,c,B,d,J,d,f,p,j,s,d,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
480 F18(f418,S,C,j,f,S,p,i,S,i,B,L,J,J,C,J,i,B,f,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
481 F14(f419,p,C,J,s,f,p,f,j,p,s,p,d,d,p,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
482 F55(f420,I,B,j,L,I,c,L,B,B,c,B,j,c,f,I,j,I,j,c,S,C,B,l,p,S,S,B,i,B,p,p,J,p,s,I,j,f,j,l,S,s,I,J,I,C,C,j,s,f,S,d,B,I,I,f,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
483 F29(f421,C,c,d,J,f,l,p,j,i,s,d,J,J,I,f,f,c,d,l,C,C,C,d,s,l,j,l,c,d,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
484 F24(f422,c,S,i,i,j,C,c,I,I,j,i,l,s,j,l,B,p,B,L,s,S,L,J,S,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
485 F59(f423,p,p,s,J,I,C,p,p,s,s,j,S,S,s,J,j,B,c,c,i,l,I,B,j,j,p,i,B,l,B,S,S,d,l,C,L,J,i,j,d,J,c,f,J,i,p,S,c,l,i,L,l,S,B,d,p,L,j,c,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
486 F10(f424,f,c,s,f,L,L,i,c,C,I,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
487 F35(f425,B,J,L,s,p,l,l,d,p,I,B,p,p,B,j,f,l,B,s,d,L,C,l,C,L,C,s,i,l,B,I,I,S,I,p,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
488 F6(f426,C,p,s,L,j,s,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
489 F20(f427,s,I,s,d,i,C,f,f,L,L,s,j,J,I,c,S,c,S,J,f,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
490 F57(f428,c,C,l,S,I,B,d,c,S,S,d,c,l,C,B,d,s,C,i,i,p,j,J,L,j,l,c,p,c,I,S,L,J,I,S,p,s,f,B,L,L,C,C,J,B,I,I,f,C,c,C,l,S,S,s,B,j,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
491 F3(f429,i,C,j,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
492 F56(f430,B,L,I,s,i,l,d,p,f,c,c,s,I,L,f,I,I,S,C,d,c,S,J,d,j,S,i,p,i,f,c,s,j,i,c,s,c,C,l,C,s,f,B,j,S,l,p,d,j,B,p,p,f,j,C,p,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
493 F32(f431,I,J,f,S,f,s,L,S,I,c,j,d,s,B,f,L,S,p,I,I,S,J,I,i,j,S,J,s,f,j,B,d,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
494 F55(f432,S,d,s,c,C,l,j,i,L,f,j,c,c,i,B,f,c,L,j,J,f,p,I,B,p,l,B,l,c,j,s,i,S,J,B,J,j,S,J,c,S,L,J,I,I,d,j,B,j,l,f,i,l,i,B,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
495 F38(f433,d,d,c,s,J,l,d,I,C,I,i,B,S,B,f,C,d,B,L,s,C,S,I,L,p,d,C,C,S,S,J,j,J,l,L,p,d,c,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
496 F5(f434,d,d,s,c,i,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
497 F10(f435,L,j,l,j,s,I,I,J,I,C,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
498 F14(f436,L,j,J,j,C,B,I,f,j,i,l,S,i,i,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
499 F44(f437,I,S,S,i,B,p,J,s,l,f,C,l,S,l,f,B,f,l,C,B,C,J,d,s,S,B,B,L,s,J,J,B,d,L,L,i,J,l,L,s,c,j,B,j,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
500 F48(f438,j,j,L,J,d,s,d,J,d,p,l,j,C,i,J,B,i,f,L,d,f,J,i,I,l,I,i,s,p,c,C,i,l,l,L,c,p,j,f,J,s,d,B,S,p,S,j,J,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
501 F54(f439,C,L,L,B,S,J,s,f,L,s,d,B,c,l,p,f,p,B,c,j,B,i,f,s,I,i,c,j,C,j,c,j,c,I,J,l,s,d,i,f,l,S,l,d,B,p,d,B,d,s,J,s,d,B,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
502 F10(f440,j,j,p,p,I,I,s,J,L,j,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
503 F21(f441,d,p,l,J,s,I,J,f,S,l,I,j,s,s,j,c,B,p,c,J,C,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
504 F58(f442,p,C,l,j,d,J,C,f,S,i,i,d,i,C,s,c,J,s,l,s,p,l,i,f,J,J,f,L,J,l,J,S,B,j,i,S,J,c,j,l,S,c,f,j,L,S,d,J,s,l,f,L,B,I,f,l,I,I,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
505 F12(f443,d,C,C,S,c,p,S,j,f,s,S,c,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
506 F30(f444,L,B,f,C,i,d,C,i,p,I,c,f,C,l,B,L,B,C,d,J,I,p,B,l,i,I,B,B,j,d,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
507 F27(f445,J,d,i,f,f,I,j,s,B,f,i,J,L,l,J,C,p,C,J,f,j,B,B,I,l,l,j,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
508 F42(f446,J,s,f,J,i,l,l,d,C,B,I,c,p,S,f,L,S,c,C,s,I,d,B,C,d,l,i,s,B,S,C,s,B,L,B,L,f,l,L,C,B,c,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
509 F56(f447,B,f,c,d,B,i,i,B,S,J,j,I,I,S,C,j,J,J,I,i,f,L,C,C,j,p,C,S,l,J,S,L,J,L,d,j,f,C,d,j,c,J,J,B,j,C,L,p,S,I,l,c,C,l,J,L,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
510 F19(f448,f,c,f,l,j,J,d,S,f,s,j,c,c,I,f,f,C,J,L,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
511 F11(f449,v,f,j,j,S,i,C,d,j,i,l,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
512 F27(f450,f,S,L,c,c,I,S,I,l,I,s,S,S,l,I,p,p,p,i,j,J,l,S,s,j,L,J,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
513 F40(f451,I,S,I,L,S,d,p,p,C,C,d,f,f,s,j,p,p,f,l,p,d,s,S,l,p,f,d,i,j,p,p,B,p,f,J,J,J,i,f,i,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
514 F7(f452,C,f,l,i,S,L,d,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
515 F5(f453,p,p,d,c,C,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
516 F50(f454,S,d,I,I,s,d,L,l,i,s,L,i,J,c,f,d,d,f,I,s,B,L,c,i,S,d,C,d,l,d,C,I,f,j,J,c,c,I,s,L,j,l,c,J,J,S,J,d,c,p,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
517 F52(f455,d,p,C,i,s,i,S,J,J,i,p,i,s,c,s,S,d,i,p,f,d,C,s,i,B,S,d,c,j,C,i,j,J,I,l,J,J,d,j,L,B,i,L,s,p,c,f,J,I,B,i,f,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
518 F5(f456,s,L,C,f,j,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
519 F56(f457,B,I,j,S,c,s,B,J,f,S,s,c,l,J,L,i,i,S,f,d,B,J,S,i,L,C,I,c,J,s,C,f,I,I,d,I,l,B,C,C,C,d,l,p,L,J,l,I,p,J,S,L,B,d,s,C,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
520 F9(f458,i,f,f,B,J,s,i,i,j,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
521 F31(f459,p,l,J,I,B,C,I,c,J,B,C,J,C,d,p,B,B,J,J,L,l,p,I,J,p,S,i,i,L,c,f,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
522 F32(f460,J,i,s,J,f,l,S,J,c,S,B,p,d,s,I,p,l,c,S,c,I,d,j,L,c,J,d,j,L,d,d,I,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
523 F18(f461,i,L,L,I,c,S,c,S,i,p,I,s,J,s,c,d,c,B,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
524 F32(f462,J,p,l,S,J,L,j,C,d,I,S,s,i,p,C,L,f,j,p,j,d,i,l,L,p,d,j,d,c,s,C,f,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
525 F21(f463,I,C,S,c,s,I,j,f,C,J,s,S,J,I,p,S,s,f,B,S,L,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
526 F57(f464,J,L,j,I,C,J,j,i,j,L,I,B,J,S,I,d,j,L,J,c,s,S,f,s,s,I,s,s,p,S,c,f,c,l,p,I,I,f,j,L,B,j,L,C,i,d,f,c,I,J,J,i,f,S,i,s,S,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
527 F43(f465,L,d,l,s,J,d,p,B,l,L,i,S,I,p,I,p,l,L,S,p,s,S,B,f,i,l,f,S,L,J,c,J,S,C,i,I,l,J,c,i,s,S,B,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
528 F4(f466,i,f,l,p,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
529 F56(f467,L,B,L,s,s,i,l,J,S,j,s,B,S,J,J,p,d,d,J,j,p,S,J,s,B,B,I,B,L,s,L,p,f,i,B,S,d,i,j,I,j,f,j,p,J,L,c,c,S,j,j,C,I,B,s,J,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
530 F26(f468,j,J,c,J,L,j,j,s,J,c,j,c,d,C,J,I,c,B,l,J,f,C,s,S,j,d,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
531 F36(f469,J,L,C,C,I,i,d,s,B,J,l,L,j,I,C,C,c,f,S,l,i,i,C,p,d,J,i,C,I,I,C,p,j,j,p,J,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
532 F35(f470,p,I,j,S,s,i,c,l,C,j,f,B,c,S,j,d,p,l,S,J,J,L,B,i,p,L,s,S,d,L,f,I,C,C,B,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
533 F18(f471,f,f,L,c,p,d,c,j,B,l,I,d,j,j,j,C,I,l,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
534 F30(f472,I,p,J,C,C,d,J,d,d,l,d,j,S,d,L,S,C,I,S,c,p,I,j,J,p,p,c,B,f,f,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
535 F27(f473,j,d,L,p,I,l,I,j,f,L,d,l,f,S,S,B,c,f,J,B,L,B,L,C,I,s,d,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
536 F26(f474,v,p,I,d,d,c,p,I,s,s,p,S,C,l,l,l,d,L,J,d,I,S,S,p,I,I,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
537 F38(f475,d,l,S,B,s,d,c,l,C,B,B,s,i,c,S,l,J,f,l,c,I,J,L,S,d,S,s,J,f,s,l,l,i,c,I,d,s,I,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
538 F8(f476,S,s,i,j,l,s,d,J,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
539 F37(f477,s,j,j,S,f,p,B,c,S,i,J,j,J,c,i,C,p,p,j,i,S,s,c,s,s,l,i,i,d,p,L,I,l,d,i,l,I,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
540 F60(f478,j,j,l,S,f,p,c,c,J,p,J,s,L,i,d,B,B,s,B,j,f,s,J,c,B,B,d,j,s,I,d,i,B,l,C,d,l,c,J,I,C,C,p,d,l,s,f,l,s,d,l,j,C,J,d,S,j,i,s,I,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
541 F17(f479,f,s,j,j,S,j,l,s,C,L,p,L,I,l,p,d,J,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
542 F8(f480,j,s,l,L,c,C,f,C,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
543 F3(f481,c,d,i,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
544 F6(f482,j,c,s,I,C,f,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
545 F33(f483,B,L,p,B,C,S,d,j,L,s,f,J,L,L,s,j,S,c,i,S,C,C,l,S,i,j,c,C,d,L,l,p,J,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
546 F38(f484,l,S,p,p,p,d,L,I,i,L,c,d,p,d,C,f,J,f,J,d,d,L,C,j,j,f,S,B,f,f,d,p,f,d,I,d,f,c,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
547 F56(f485,c,J,s,c,I,C,B,i,L,I,J,s,s,B,d,B,J,J,C,c,p,C,C,i,l,s,S,s,j,d,d,d,J,S,s,i,L,f,c,f,c,c,L,B,J,L,d,c,C,S,p,I,s,I,J,s,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
548 F44(f486,p,C,i,s,c,B,c,B,s,d,B,i,p,l,S,l,L,c,B,B,s,p,j,p,J,l,B,c,L,i,p,l,d,L,C,C,f,L,p,s,S,B,d,s,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
549 F43(f487,s,j,l,B,I,f,L,J,L,i,j,C,s,c,c,p,I,C,J,f,B,d,L,d,p,J,l,S,B,f,C,d,B,L,S,p,j,C,i,l,I,J,B,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
550 F10(f488,l,I,C,l,p,J,C,B,C,S,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
551 F7(f489,l,p,d,S,p,L,J,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
552 F34(f490,C,s,J,l,j,B,j,p,J,l,i,s,l,j,f,C,B,C,l,S,p,L,c,B,J,C,J,f,C,p,p,j,i,I,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
553 F9(f491,c,d,s,p,B,c,c,f,l,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
554 F13(f492,J,B,f,l,S,p,f,L,S,I,p,d,i,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
555 F53(f493,l,f,f,L,C,L,d,B,d,f,p,I,l,L,l,L,S,s,c,l,s,S,J,L,L,s,i,f,I,C,B,j,j,J,f,p,L,I,j,d,f,p,d,S,s,j,I,L,d,j,l,B,j,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
556 F22(f494,B,J,C,f,C,c,f,C,C,d,l,C,f,l,i,B,c,c,I,C,S,I,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
557 F48(f495,c,B,I,l,L,s,l,C,c,f,S,j,C,I,j,I,f,d,i,d,d,S,c,I,s,J,C,J,d,l,C,B,l,i,l,s,j,s,d,f,B,f,l,J,j,c,I,l,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
558 F28(f496,d,I,d,l,d,I,i,c,J,s,c,i,d,j,l,S,c,f,L,l,d,d,C,B,l,B,p,J,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
559 F49(f497,d,s,f,f,l,l,I,S,B,f,c,p,B,j,C,p,j,l,B,I,B,c,d,i,f,p,j,d,f,I,s,L,i,C,c,C,L,l,L,L,S,l,s,I,c,s,s,c,j,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
560 F45(f498,I,L,i,s,s,p,J,c,c,S,J,s,p,C,f,c,I,j,i,S,L,I,p,J,d,f,l,C,d,J,c,f,l,j,s,l,B,i,p,L,d,S,L,c,p,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
561 F31(f499,j,c,B,C,p,f,l,p,I,J,f,f,S,C,C,I,J,J,L,j,B,l,c,S,c,l,C,i,s,j,l,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
562 F56(f500,f,i,I,I,l,B,I,S,S,J,L,c,J,B,l,C,s,p,j,j,i,i,C,C,c,i,p,s,c,d,l,C,l,J,C,i,L,i,j,I,i,J,i,l,C,S,p,L,i,l,j,s,f,s,s,c,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
563 F38(f501,d,j,p,p,B,I,L,C,I,J,c,B,I,l,S,d,B,f,L,j,B,s,f,c,l,c,d,s,f,I,s,J,d,c,C,I,L,d,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
564 F50(f502,v,c,L,p,c,J,d,d,d,i,j,c,p,l,d,I,J,S,L,I,p,s,B,c,l,J,J,d,J,d,i,S,d,i,p,l,d,I,C,B,c,B,I,C,J,J,J,B,J,S,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
565 F55(f503,C,I,c,I,c,d,J,B,j,C,p,J,l,L,I,c,l,s,J,l,f,j,J,c,p,l,i,c,i,C,J,L,p,B,l,c,i,B,C,B,i,l,B,p,j,S,s,i,B,i,C,S,C,I,I,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
566 F38(f504,j,s,I,s,B,l,p,c,C,I,c,p,i,f,j,C,i,C,C,S,f,s,L,B,C,J,i,l,j,L,S,J,i,j,s,L,f,f,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
567 F23(f505,d,C,L,I,c,S,S,L,J,j,p,f,i,d,C,J,s,I,S,J,f,J,C,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
568 F56(f506,v,p,p,J,L,p,s,f,d,S,j,l,S,L,c,l,I,B,S,f,s,l,C,j,I,d,j,J,j,J,p,i,p,j,c,C,c,d,i,I,s,d,B,L,p,c,l,d,B,l,f,j,l,s,d,d,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
569 F24(f507,c,L,s,L,p,p,S,B,c,B,j,i,I,j,s,L,L,B,l,f,B,d,f,p,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
570 F21(f508,f,j,p,i,f,S,j,s,J,i,B,c,d,C,p,C,i,B,i,L,C,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
571 F14(f509,j,I,J,l,l,l,S,J,f,l,p,d,J,i,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
572 F19(f510,C,c,d,l,i,S,c,p,f,c,i,j,J,B,i,p,I,L,J,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
573 F12(f511,v,i,B,S,f,d,S,I,J,I,j,C,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
574 F37(f512,L,c,d,c,S,l,L,f,p,B,c,i,s,c,J,L,s,p,C,J,L,i,L,B,L,I,L,L,I,L,j,c,i,B,p,c,f,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
575 F10(f513,p,j,J,f,C,f,l,j,c,J,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
576 F20(f514,i,i,p,I,i,c,S,i,l,l,d,s,L,p,f,l,i,L,I,p,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
577 F26(f515,v,p,c,J,B,c,B,B,j,J,I,C,C,I,S,j,p,I,i,p,S,L,J,s,f,J,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
578 F11(f516,p,j,I,s,p,I,d,l,p,C,s,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
579 F3(f517,L,C,p,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
580 F32(f518,j,L,j,d,i,I,i,l,j,j,i,S,j,S,J,j,p,s,f,S,C,S,c,c,f,J,d,L,c,s,S,j,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
581 F58(f519,I,f,c,I,L,p,i,B,I,I,c,C,p,S,B,J,B,c,c,p,B,s,C,c,s,j,d,c,l,p,I,J,f,J,s,f,c,l,I,f,S,c,C,B,l,J,S,l,f,C,l,I,s,c,d,j,I,j,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
582 F30(f520,S,c,L,i,C,c,i,f,i,S,B,l,p,p,C,d,d,j,S,l,l,f,d,s,f,I,d,s,i,C,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
583 F11(f521,v,f,j,d,j,d,l,p,J,I,i,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
584 F23(f522,S,J,j,d,f,s,C,S,s,J,L,J,c,J,f,L,s,s,i,j,I,c,B,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
585 F15(f523,J,c,p,B,d,p,j,d,f,s,s,J,J,c,f,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
586 F5(f524,j,I,c,L,s,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
587 F47(f525,B,S,f,C,J,L,f,B,p,p,c,B,i,L,S,j,i,S,i,L,S,J,c,I,S,f,f,f,p,s,s,f,J,d,l,d,C,C,s,S,d,d,c,C,I,c,s,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
588 F52(f526,d,p,p,s,d,l,f,j,s,C,j,J,C,s,l,s,d,c,p,C,d,i,c,B,i,i,S,f,S,l,s,c,B,d,j,l,d,i,c,i,l,i,p,j,I,C,C,p,I,c,f,j,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
589 F22(f527,s,S,B,f,d,j,J,S,f,c,B,s,p,J,d,l,f,I,C,d,I,S,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
590 F17(f528,L,i,S,I,C,B,I,j,I,f,L,S,l,s,d,B,C,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
591 F59(f529,f,d,d,L,S,d,B,J,l,d,p,i,L,d,p,d,I,f,l,d,L,d,S,c,c,I,L,l,S,l,c,l,j,B,C,S,B,L,p,S,p,p,J,d,c,c,S,L,S,c,p,i,l,C,f,i,s,s,l,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
592 F58(f530,p,s,L,B,C,S,f,S,i,f,s,C,d,C,f,c,f,j,I,C,c,s,l,B,i,f,J,c,c,L,s,f,s,L,B,S,i,c,s,C,c,S,C,s,l,S,f,d,J,p,l,L,p,C,d,l,i,L,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
593 F55(f531,J,c,L,f,f,L,S,s,L,j,c,I,s,p,L,j,l,l,d,i,C,i,B,p,L,j,C,d,i,C,J,d,i,L,C,s,s,L,S,B,d,f,j,j,J,B,i,I,J,C,i,c,c,d,I,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
594 F32(f532,l,C,B,p,c,B,j,L,B,C,J,J,p,d,I,I,f,c,l,J,d,d,j,s,S,c,s,I,l,d,p,B,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
595 F3(f533,j,S,B,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
596 F48(f534,J,C,s,j,d,J,i,f,f,f,c,l,f,C,L,j,j,J,B,s,c,L,S,J,J,s,c,p,c,d,L,f,S,d,J,i,B,C,p,J,S,B,L,I,d,L,B,f,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
597 F4(f535,B,B,c,l,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
598 F47(f536,S,d,s,i,J,s,d,B,j,L,c,s,d,S,j,I,J,i,C,j,c,C,B,B,I,L,l,C,j,B,S,d,d,L,C,f,B,i,s,J,s,s,I,I,d,B,B,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
599 F6(f537,f,j,B,S,s,S,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
600 F17(f538,J,L,L,f,L,B,d,L,s,f,p,p,d,C,C,J,j,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
601 F60(f539,L,i,B,s,f,J,I,J,f,C,L,s,I,I,i,i,L,c,d,c,f,l,p,j,p,p,j,j,d,p,l,C,B,C,j,f,B,L,p,j,f,s,i,I,L,L,I,f,C,I,i,c,f,s,B,I,c,I,I,f,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
602 F33(f540,S,J,l,l,c,j,d,p,i,C,L,f,i,C,c,i,S,d,p,i,l,I,s,i,d,c,j,d,p,J,f,L,c,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
603 F50(f541,p,B,S,f,C,J,l,S,s,j,f,s,C,B,L,s,L,B,B,l,I,B,j,f,J,c,f,I,p,d,i,d,j,C,d,p,C,J,C,j,f,S,B,p,s,I,d,L,I,c,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
604 F43(f542,v,i,f,S,L,B,d,S,B,s,B,i,C,J,s,S,C,c,J,p,i,f,J,s,s,s,C,f,B,f,d,J,B,s,c,B,f,d,c,B,l,l,f,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
605 F13(f543,v,B,p,i,I,J,c,i,c,C,f,d,C,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
606 F48(f544,l,C,p,c,d,I,s,c,I,j,S,C,l,B,I,j,J,p,s,i,j,s,f,C,j,J,I,l,C,l,j,C,f,I,d,i,L,s,d,d,c,S,S,L,l,C,J,S,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
607 F41(f545,c,c,I,s,l,d,p,I,f,c,C,J,c,l,I,i,C,p,c,l,L,f,C,f,p,i,j,i,d,S,j,i,c,S,s,B,J,j,S,p,i,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
608 F33(f546,L,C,f,C,B,l,s,I,d,f,B,C,I,p,j,f,S,l,L,l,L,d,s,C,d,c,l,i,l,p,d,s,L,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
609 F10(f547,v,I,C,l,J,J,f,S,f,p,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
610 F17(f548,c,s,s,c,l,I,I,L,I,J,j,I,c,J,s,s,f,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
611 F6(f549,f,f,j,L,p,f,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
612 F31(f550,L,l,I,f,f,d,l,f,f,p,j,f,J,f,c,d,i,i,p,l,I,I,j,B,i,j,J,f,c,s,l,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
613 F0(f551,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
614 F41(f552,c,S,S,c,C,C,d,j,C,p,s,J,S,B,p,l,L,S,p,f,J,l,f,C,l,i,c,f,I,I,B,J,C,f,i,c,p,J,d,L,L,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
615 F11(f553,c,l,l,I,j,B,c,d,c,l,J,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
616 F2(f554,S,i,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
617 F15(f555,v,p,C,j,I,S,J,I,s,J,J,C,p,C,B,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
618 F49(f556,i,s,S,l,S,I,p,p,p,J,p,B,J,c,d,i,B,C,l,s,C,J,f,d,C,f,d,B,L,d,S,L,B,l,p,L,J,B,p,C,J,d,c,c,c,l,I,p,S,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
619 F7(f557,i,B,c,s,L,L,C,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
620 F19(f558,B,j,L,f,j,B,S,p,j,J,I,p,I,p,l,C,S,B,l,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
621 F3(f559,i,I,f,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
622 F36(f560,L,C,s,S,S,c,j,C,J,j,c,B,B,c,B,i,p,j,C,C,f,B,p,c,c,l,s,i,B,s,l,d,C,j,S,f,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
623 F9(f561,v,p,s,f,l,f,L,s,B,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
624 F3(f562,s,I,L,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
625 F31(f563,c,I,l,f,C,s,j,I,p,J,d,d,c,L,j,L,B,l,f,S,c,C,J,i,B,c,l,B,L,s,S,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
626 F5(f564,d,B,i,f,s,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
627 F53(f565,s,d,f,S,j,L,i,L,I,c,d,d,p,S,l,S,d,d,d,p,I,s,l,L,d,L,L,f,L,f,S,C,j,C,j,B,J,p,S,I,I,c,d,L,s,C,f,p,j,f,B,d,s,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
628 F47(f566,S,L,f,J,l,c,j,s,I,i,j,j,i,L,c,i,B,C,c,p,C,c,J,J,B,l,I,B,S,d,B,d,j,d,d,S,p,f,p,J,J,i,I,f,C,s,s,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
629 F19(f567,c,S,l,d,I,B,d,J,s,l,J,f,l,L,i,s,L,p,B,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
630 F30(f568,B,c,c,l,B,i,S,c,J,p,C,p,i,p,f,S,p,f,L,L,B,s,d,L,S,l,C,s,L,l,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
631 F23(f569,p,B,C,f,l,C,d,p,p,s,j,J,I,L,c,C,c,j,f,s,i,J,f,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
632 F3(f570,s,i,l,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
633 F27(f571,s,B,p,f,I,L,i,c,J,i,L,f,J,I,C,i,s,i,j,i,C,l,i,j,L,J,s,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
634 F60(f572,i,j,i,p,l,i,S,C,B,f,s,j,j,j,I,i,i,p,c,j,j,L,s,S,J,c,c,C,L,l,c,i,d,s,p,p,l,C,j,S,l,B,B,i,d,d,C,I,J,C,I,L,j,C,i,s,p,p,j,l,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
635 F5(f573,C,f,l,L,B,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
636 F21(f574,i,S,p,S,p,j,i,L,f,s,c,l,j,l,L,j,s,f,i,l,i,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
637 F35(f575,C,i,p,j,B,s,f,J,B,d,c,s,l,l,d,S,c,l,c,l,I,B,i,c,f,s,B,S,d,J,j,C,l,l,C,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
638 F57(f576,i,J,B,I,S,C,p,p,j,i,d,C,L,B,p,S,J,S,d,L,S,C,L,B,p,L,j,l,f,i,i,i,J,J,J,f,C,c,c,s,j,l,f,i,c,I,i,j,J,j,I,c,I,l,S,i,p,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
639 F32(f577,l,J,d,i,J,I,f,s,L,L,j,s,J,s,d,C,j,S,p,i,c,C,j,S,S,s,S,S,J,l,J,f,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
640 F55(f578,C,B,B,B,i,i,l,d,p,f,c,i,B,J,f,f,l,C,p,p,j,d,l,p,I,s,C,S,d,I,l,c,s,B,i,S,c,s,S,S,f,i,C,S,J,d,c,J,s,i,j,l,c,i,c,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
641 F60(f579,J,I,S,f,j,C,f,p,f,c,s,L,c,s,s,B,C,c,c,J,s,C,s,l,J,p,j,B,l,j,j,p,c,s,d,p,J,i,c,B,d,j,I,C,f,C,S,c,f,l,s,C,j,l,l,S,J,c,i,s,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
642 F23(f580,f,p,S,i,i,i,I,d,l,i,S,i,l,l,L,J,I,p,j,d,c,s,s,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
643 F11(f581,l,s,J,B,S,B,j,p,f,I,I,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
644 F0(f582,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
645 F55(f583,s,p,c,f,L,B,p,i,c,C,l,B,c,f,B,l,p,d,J,J,l,S,l,p,f,p,l,l,c,j,I,j,L,C,S,l,I,j,l,d,i,c,J,p,S,L,J,B,L,l,B,c,S,J,d,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
646 F23(f584,v,f,s,L,S,s,J,i,s,p,j,f,f,B,I,L,L,j,s,J,p,C,i,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
647 F13(f585,l,J,c,c,L,i,s,f,d,c,j,c,p,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
648 F27(f586,s,l,B,l,d,j,B,L,J,j,l,d,f,C,c,c,B,c,J,L,I,c,d,B,i,d,i,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
649 F41(f587,C,i,L,C,d,c,d,C,p,C,l,d,l,J,I,d,j,C,s,p,j,d,l,p,p,c,l,L,c,c,C,J,I,B,c,f,p,C,d,B,d,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
650 F5(f588,s,S,C,I,I,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
651 F17(f589,s,C,f,c,I,B,L,l,l,d,C,d,l,j,f,C,B,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
652 F0(f590,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
653 F3(f591,p,S,c,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
654 F34(f592,j,d,j,S,J,J,i,S,i,d,S,L,c,i,L,f,L,L,d,d,s,f,i,S,j,p,c,C,f,S,L,p,B,L,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
655 F16(f593,d,i,l,f,C,S,S,c,p,p,i,s,c,l,I,l,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
656 F42(f594,B,f,p,B,I,f,L,f,d,I,d,j,l,L,j,d,j,j,d,C,J,I,J,J,C,i,s,S,p,d,f,c,p,L,S,C,d,S,d,c,f,S,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
657 F42(f595,p,B,J,l,L,l,l,L,j,f,S,C,l,p,c,d,c,p,d,l,p,S,d,c,i,J,L,C,I,s,i,f,C,s,s,d,S,J,s,L,l,I,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
658 F34(f596,S,c,d,C,j,L,C,J,d,p,C,d,c,s,I,S,I,i,l,f,i,f,i,p,i,J,c,i,d,L,j,J,I,i,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
659 F0(f597,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
660 F24(f598,B,p,L,f,L,B,C,p,I,d,i,d,j,c,i,C,j,c,s,l,f,C,J,B,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
661 F22(f599,c,B,f,J,f,B,s,p,S,C,L,j,I,p,f,J,C,c,C,d,I,p,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
662 F28(f600,f,S,C,S,J,f,l,L,p,I,J,f,J,j,B,I,l,s,d,f,S,l,I,S,p,s,f,C,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
663 F55(f601,L,i,J,p,C,i,l,I,J,B,l,s,l,S,j,c,f,s,l,d,I,j,J,p,p,C,J,l,p,I,d,d,B,i,s,I,L,f,d,j,j,i,c,i,d,C,i,L,S,B,I,S,j,j,f,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
664 F35(f602,j,f,d,l,d,C,i,I,J,d,I,l,L,j,j,J,J,d,s,S,s,i,B,C,f,p,S,d,l,p,J,i,d,L,B,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
665 F60(f603,l,J,C,J,c,j,f,s,i,c,p,L,d,s,I,J,J,B,I,d,j,C,c,d,L,S,s,p,c,s,J,d,B,d,j,c,I,j,l,B,I,B,j,B,f,S,C,L,s,L,J,p,C,l,p,i,C,c,S,i,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
666 F55(f604,C,I,c,j,L,L,l,j,d,f,I,i,J,j,f,j,B,c,c,c,c,L,d,s,l,s,j,s,c,d,d,i,I,C,C,I,c,B,j,B,I,S,f,C,i,B,j,S,d,j,p,I,C,d,p,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
667 F19(f605,S,C,I,C,S,C,p,L,l,C,i,f,d,l,j,C,S,l,J,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
668 F39(f606,L,s,i,I,L,l,d,L,S,c,f,l,j,p,f,L,i,s,J,c,L,c,I,S,j,c,S,l,s,s,S,l,B,I,J,d,i,c,f,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
669 F52(f607,j,c,J,l,C,I,J,S,J,c,f,l,j,p,c,L,c,C,L,p,L,s,i,p,I,s,i,S,i,f,S,s,I,c,S,s,c,I,B,I,s,p,J,J,s,I,C,d,c,d,d,j,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
670 F16(f608,f,B,j,B,S,L,i,L,I,f,j,B,f,I,d,I,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
671 F17(f609,v,d,J,C,j,L,d,i,l,C,s,c,i,l,s,B,I,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
672 F6(f610,d,j,p,j,i,l,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
673 F21(f611,p,C,f,L,c,j,L,L,I,i,l,J,p,S,B,j,f,d,J,f,j,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
674 F4(f612,J,S,I,I,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
675 F22(f613,I,C,f,I,i,J,C,J,f,d,f,B,I,c,S,d,j,l,p,S,J,C,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
676 F41(f614,B,I,j,B,f,S,L,C,B,d,c,p,L,I,c,c,f,i,d,l,p,c,i,L,J,f,p,d,i,s,L,d,p,c,p,l,l,C,c,j,J,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
677 F7(f615,d,j,S,j,d,I,s,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
678 F43(f616,c,p,p,p,j,L,d,s,i,i,J,i,j,B,p,p,L,I,j,f,L,d,j,L,s,S,C,J,i,J,l,L,c,B,j,J,J,f,L,B,L,f,B,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
679 F39(f617,p,p,i,f,s,C,c,p,S,I,B,L,i,I,I,c,j,J,C,J,f,l,C,J,I,j,j,f,d,f,C,C,p,l,s,j,B,c,l,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
680 F37(f618,c,i,I,j,s,B,c,B,i,c,j,l,i,i,p,d,C,l,l,I,C,c,C,C,C,C,j,I,f,B,I,p,S,S,L,d,C,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
681 F56(f619,s,i,c,c,J,f,B,B,S,S,d,j,S,f,j,j,C,i,d,S,I,c,L,I,p,d,C,i,f,p,J,S,C,c,C,p,l,C,c,J,j,J,B,c,S,S,s,L,S,J,i,s,i,j,C,i,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
682 F3(f620,j,i,i,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
683 F4(f621,S,d,d,I,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
684 F12(f622,d,d,i,i,L,S,I,B,c,C,j,J,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
685 F13(f623,C,l,l,p,s,d,l,l,p,C,I,p,L,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
686 F10(f624,f,L,f,L,I,B,i,B,d,j,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
687 F0(f625,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
688 F4(f626,l,J,S,J,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
689 F14(f627,l,C,s,B,j,J,S,d,f,j,l,I,f,l,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
690 F24(f628,B,f,l,I,p,f,j,I,L,j,J,c,c,i,J,p,d,L,B,d,i,S,L,d,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
691 F42(f629,B,C,p,i,p,l,f,d,S,j,J,j,c,j,B,l,p,S,C,I,J,s,I,c,i,d,B,l,p,l,S,c,s,l,B,i,S,s,f,j,B,i,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
692 F12(f630,S,p,j,l,i,S,C,C,p,c,L,c,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
693 F35(f631,s,i,S,I,c,J,d,B,f,f,S,p,I,d,p,f,C,d,f,I,d,L,L,J,i,i,s,J,j,s,C,l,I,p,B,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
694 F53(f632,S,c,I,S,C,s,J,d,s,i,d,p,j,J,I,C,I,I,B,f,p,l,c,l,B,l,p,l,J,s,p,l,l,s,d,d,S,C,i,L,d,I,d,s,S,l,p,j,j,s,f,s,f,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
695 F39(f633,B,S,c,f,i,j,C,l,s,c,i,f,p,I,L,J,S,B,c,J,i,i,p,c,s,B,p,s,d,f,i,f,I,c,p,c,p,L,J,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
696 F31(f634,C,f,L,J,i,p,c,S,l,f,c,C,f,C,J,f,j,f,i,L,L,l,c,f,d,c,p,J,C,I,f,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
697 F46(f635,i,J,j,C,d,C,d,d,c,j,J,J,L,S,I,S,j,f,s,C,B,s,S,l,C,p,j,s,f,i,S,p,J,f,L,c,S,L,j,B,L,j,S,j,S,J,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
698 F8(f636,s,S,p,C,l,i,B,i,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
699 F37(f637,B,B,p,s,d,f,c,l,f,i,J,f,d,S,S,B,C,j,I,I,l,p,i,B,I,p,S,d,I,d,f,d,B,B,S,f,f,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
700 F39(f638,c,j,I,J,J,J,L,L,S,L,p,C,B,S,B,p,S,s,B,f,J,I,f,B,B,B,d,s,i,L,s,i,d,S,i,j,L,i,s,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
701 F6(f639,S,c,i,j,p,C,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
702 F4(f640,J,i,S,i,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
703 F12(f641,v,I,i,J,I,J,f,d,f,f,s,J,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
704 F30(f642,j,p,L,i,i,L,C,j,l,c,p,J,l,l,L,i,L,d,s,J,B,J,C,I,c,j,B,B,L,B,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
705 F41(f643,J,I,d,L,p,s,S,j,j,l,C,I,j,d,c,J,c,f,p,L,L,L,I,C,i,I,l,I,C,S,f,c,d,B,J,I,p,I,I,s,I,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
706 F22(f644,f,p,l,s,C,j,s,L,p,f,J,I,I,l,p,p,C,c,L,i,j,c,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
707 F1(f645,J,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
708 F31(f646,d,f,f,j,i,j,d,i,d,J,l,i,J,d,c,s,j,I,l,C,i,J,S,B,p,p,i,j,j,J,I,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
709 F23(f647,i,J,j,j,S,I,f,s,J,f,S,i,I,s,l,s,J,B,J,S,I,S,j,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
710 F60(f648,s,L,S,C,L,B,L,j,d,s,B,B,j,i,i,j,j,B,L,s,L,I,C,C,L,l,l,J,C,i,j,p,C,B,c,I,J,i,d,f,B,i,S,f,d,d,C,l,J,S,d,J,L,S,j,i,p,C,L,j,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
711 F20(f649,f,d,d,S,J,s,p,J,L,p,l,I,i,i,d,I,s,I,c,f,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
712 F24(f650,p,j,c,d,B,p,d,s,s,J,i,S,c,j,d,L,C,L,J,J,S,I,L,I,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
713 F7(f651,J,C,s,I,C,p,i,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
714 F17(f652,i,s,l,d,I,I,j,J,I,f,B,f,L,l,s,i,J,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
715 F46(f653,s,f,s,B,f,B,J,j,J,s,I,j,i,i,s,J,I,f,L,S,l,c,B,p,I,d,B,L,J,J,f,s,l,B,C,c,l,c,f,i,d,s,d,j,c,I,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
716 F54(f654,p,i,B,J,i,B,L,J,d,s,d,j,S,d,d,J,J,i,l,j,p,s,j,J,p,I,c,s,l,L,f,j,s,c,d,d,C,i,B,C,f,J,l,I,B,d,j,i,I,l,c,s,f,d,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
717 F51(f655,B,i,j,B,s,f,L,j,p,C,c,J,p,S,d,j,S,c,C,L,i,J,B,l,c,C,p,J,B,S,I,j,f,l,L,I,c,S,C,d,d,j,d,S,c,B,J,i,c,j,j,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
718 F44(f656,c,s,l,s,c,p,S,i,p,J,i,I,J,d,s,l,S,p,I,f,c,p,I,i,s,l,B,c,i,S,l,C,d,B,c,B,j,J,c,i,d,B,c,L,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
719 F60(f657,c,S,f,d,I,S,i,s,S,p,s,L,d,B,c,J,B,f,s,S,l,S,f,I,f,f,c,I,I,I,j,j,d,j,s,f,I,d,p,J,l,p,c,p,L,c,S,p,c,i,c,S,j,B,L,c,c,s,C,L,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
720 F27(f658,j,d,j,s,i,C,c,B,C,j,L,f,l,J,s,p,f,l,c,S,j,j,d,B,s,L,c,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
721 F26(f659,S,p,s,f,i,c,J,p,C,B,j,c,d,s,B,C,I,J,L,L,L,I,I,I,L,I,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
722 F41(f660,S,J,L,I,c,f,C,j,C,p,f,B,f,c,C,j,S,B,p,i,d,L,l,I,L,i,i,s,f,i,B,f,c,I,i,f,c,j,d,J,S,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
723 F57(f661,C,s,S,c,s,i,f,J,C,f,j,L,S,f,p,l,j,j,S,c,c,p,L,p,I,l,i,j,f,d,d,s,J,S,i,j,d,j,p,l,B,s,p,B,s,i,l,l,i,s,I,S,c,c,C,C,c,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
724 F37(f662,I,I,B,S,S,d,p,p,B,L,s,B,f,C,L,j,L,d,J,S,f,S,c,S,s,B,p,J,s,B,f,S,j,i,j,c,B,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
725 F16(f663,c,L,S,S,p,l,B,I,d,c,I,L,S,s,s,s,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
726 F11(f664,f,j,B,d,j,c,J,C,l,j,L,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
727 F44(f665,I,j,l,C,s,f,j,s,J,L,j,j,C,L,J,L,B,S,B,j,B,d,f,L,l,S,C,C,s,C,C,d,C,f,p,i,p,I,l,s,p,j,I,s,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
728 F19(f666,i,I,I,f,J,c,C,d,c,C,B,d,s,S,S,I,B,C,L,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
729 F50(f667,l,J,p,f,L,c,S,f,i,s,S,C,j,B,d,c,C,B,S,B,S,l,C,j,S,L,C,f,L,I,S,d,s,I,d,J,j,p,p,S,s,p,c,C,l,j,C,I,j,B,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
730 F57(f668,i,j,L,B,c,L,s,L,s,j,J,l,j,B,d,l,J,J,c,S,L,p,l,B,d,C,J,J,I,c,s,i,d,s,J,S,L,i,l,S,d,s,S,l,i,s,J,j,l,l,i,l,c,j,I,I,i,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
731 F30(f669,l,p,L,c,d,c,i,C,B,i,p,I,J,c,p,L,S,d,B,I,p,p,f,j,S,d,c,f,S,B,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
732 F20(f670,i,l,i,J,j,s,c,s,j,B,S,J,f,c,i,L,s,J,C,B,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
733 F37(f671,I,l,C,l,C,I,C,i,i,B,j,j,J,s,s,p,C,I,S,s,i,p,L,p,j,B,s,s,i,s,B,i,j,j,B,i,I,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
734 F23(f672,C,c,I,f,I,i,B,f,I,j,l,S,p,d,p,J,j,s,f,c,d,C,j,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
735 F16(f673,l,f,J,p,S,C,I,c,B,B,C,C,j,s,C,f,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
736 F12(f674,l,j,j,J,f,c,S,C,I,l,c,i,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
737 F6(f675,i,I,C,B,s,C,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
738 F52(f676,d,J,i,c,C,f,d,s,l,C,I,c,c,s,f,L,l,d,I,C,S,S,d,f,p,L,f,I,I,i,I,L,J,C,p,L,i,I,J,B,I,L,L,i,f,J,f,j,c,J,c,c,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
739 F56(f677,v,B,S,S,J,B,I,I,L,i,d,p,s,B,J,L,j,C,J,J,B,d,I,S,s,I,f,c,I,f,p,L,i,s,I,c,j,f,j,s,f,d,B,f,s,J,I,I,i,L,J,S,d,s,i,C,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
740 F14(f678,C,d,j,i,C,c,C,l,j,S,I,d,f,c,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
741 F32(f679,J,C,B,S,B,p,s,l,C,j,l,p,d,L,B,i,j,d,I,S,S,j,p,p,I,f,i,L,B,j,I,C,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
742 F24(f680,i,d,L,c,f,C,p,p,f,l,J,L,J,f,C,s,I,l,s,j,c,B,s,f,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
743 F38(f681,S,s,s,l,c,B,s,d,I,B,f,J,d,l,f,J,f,l,L,d,C,c,s,p,p,S,J,J,S,l,j,c,c,j,s,l,I,p,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
744 F30(f682,B,l,c,d,f,S,p,C,L,L,s,s,J,i,p,l,j,f,f,s,c,p,C,c,d,I,B,p,L,f,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
745 F54(f683,l,d,L,l,f,S,I,d,S,p,f,i,S,i,f,B,f,C,p,C,c,j,f,f,i,p,S,p,p,J,s,i,J,L,i,c,I,B,s,J,l,d,J,l,d,B,f,S,d,d,B,p,p,d,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
746 F57(f684,d,l,j,C,i,f,i,f,s,f,c,i,L,J,d,j,B,f,J,I,I,j,L,L,j,J,j,s,C,c,d,j,p,J,i,i,i,l,i,c,B,j,l,f,l,d,l,l,p,d,S,c,s,p,C,J,l,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
747 F12(f685,L,l,c,i,d,I,p,j,p,i,c,L,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
748 F44(f686,v,C,i,I,I,I,p,j,C,J,B,L,d,i,I,p,c,c,S,j,i,f,S,s,l,f,l,S,I,l,c,s,I,l,d,l,s,j,B,C,J,I,l,p,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
749 F29(f687,c,J,S,f,d,j,L,S,S,d,c,j,L,j,p,c,d,S,S,s,i,p,i,d,B,I,j,c,c,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
750 F39(f688,I,c,d,S,l,j,I,f,J,J,B,c,f,C,j,l,L,L,s,f,p,I,C,f,p,S,S,f,p,L,C,c,S,J,B,j,B,c,s,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
751 F60(f689,j,p,f,j,p,c,B,J,l,d,p,S,p,B,I,S,C,j,c,B,d,C,C,f,B,c,j,J,f,C,f,c,J,c,l,j,s,J,j,S,S,I,p,S,L,B,d,l,L,s,f,B,j,j,C,l,s,i,s,L,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
752 F51(f690,j,s,J,d,p,B,s,j,p,c,l,l,I,I,j,d,B,i,C,J,B,d,s,L,f,i,B,s,i,f,d,J,c,J,S,s,p,l,l,C,s,c,J,p,c,d,J,d,J,B,p,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
753 F48(f691,f,s,d,J,f,c,l,S,c,d,S,S,L,p,j,J,s,p,J,L,S,L,d,S,i,L,B,l,S,f,d,s,S,I,j,I,B,L,S,B,I,I,p,S,J,d,l,L,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
754 F26(f692,L,i,I,I,d,I,d,c,B,p,p,C,J,C,l,I,p,C,I,l,C,c,S,J,j,J,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
755 F6(f693,v,f,L,c,c,I,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
756 F11(f694,C,C,S,S,f,S,C,s,L,f,c,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
757 F49(f695,C,J,p,l,p,i,d,C,l,B,f,c,f,S,f,s,I,d,I,i,i,J,B,C,I,c,s,j,L,c,j,p,C,i,I,d,I,C,i,s,J,C,l,f,J,d,i,c,j,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
758 F49(f696,v,L,d,s,j,f,s,J,l,J,f,B,p,s,f,j,c,B,J,i,S,c,B,J,J,i,f,s,B,B,L,c,f,f,i,j,J,i,S,S,s,j,c,f,s,c,j,p,S,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
759 F31(f697,c,J,f,S,I,C,L,s,s,L,I,l,l,d,f,i,s,s,C,c,f,p,J,C,i,c,L,j,p,L,s,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
760 F37(f698,C,S,l,l,L,J,j,C,J,s,J,C,i,S,f,l,i,f,d,B,f,I,C,f,L,c,L,i,s,L,I,C,I,f,l,c,j,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
761 F26(f699,i,B,j,p,p,B,l,d,S,J,J,c,c,c,L,d,s,l,S,J,I,J,L,S,s,j,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
762 F18(f700,J,j,B,l,J,i,d,d,i,l,i,f,j,B,p,p,d,J,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
763 F53(f701,B,B,p,j,S,J,j,L,S,B,i,J,J,f,J,C,B,I,C,L,C,S,C,L,l,s,i,i,L,j,i,s,f,s,L,j,S,l,f,d,C,J,c,I,s,s,l,d,S,l,C,B,B,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
764 F29(f702,L,s,c,s,S,S,i,B,f,s,i,S,i,l,L,C,c,f,s,s,s,f,I,J,j,I,C,I,j,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
765 F1(f703,f,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
766 F34(f704,J,B,c,p,d,p,J,i,s,p,c,f,l,j,j,J,i,f,d,I,B,j,L,l,J,L,f,i,S,S,p,i,J,L,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
767 F36(f705,B,C,S,I,L,B,f,p,d,p,l,C,i,l,j,l,j,i,B,c,p,C,L,C,f,I,L,i,C,s,d,i,l,S,J,I,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
768 F42(f706,J,S,J,I,c,j,s,I,J,i,B,S,L,s,s,S,j,j,d,s,c,S,i,S,C,B,f,B,c,f,c,d,f,p,j,f,f,d,c,S,B,j,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
769 F50(f707,p,I,d,C,j,I,s,S,I,f,l,B,s,j,C,p,d,s,B,j,C,d,I,S,f,l,i,j,c,f,s,S,B,B,B,J,j,J,f,f,c,S,s,c,d,l,L,i,J,L,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
770 F0(f708,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
771 F55(f709,L,i,l,d,d,d,J,c,C,S,j,B,j,L,J,p,J,J,L,i,p,L,s,L,J,B,B,I,C,f,f,d,d,p,c,i,j,S,d,s,C,l,i,L,S,S,I,L,p,c,f,f,J,s,S,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
772 F44(f710,f,C,I,S,d,J,S,c,c,p,d,s,I,j,p,L,L,J,j,I,I,p,c,l,B,p,L,C,p,C,L,S,L,L,p,p,s,d,j,j,C,j,i,c,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
773 F10(f711,S,C,d,i,f,c,f,c,S,L,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
774 F31(f712,J,c,L,S,J,p,I,l,p,f,c,c,d,B,f,C,l,f,L,B,L,l,L,d,J,j,I,B,I,C,s,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
775 F22(f713,J,i,i,B,I,d,s,i,B,j,C,c,C,J,J,C,f,d,i,j,S,l,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
776 F15(f714,v,s,I,L,S,i,L,c,f,i,c,l,l,l,C,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
777 F54(f715,j,j,J,l,l,j,J,I,i,i,S,j,c,L,l,d,f,c,L,s,S,d,p,s,c,B,B,d,S,B,L,L,i,C,J,j,s,f,d,s,p,j,p,B,s,B,B,l,l,j,s,C,j,j,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
778 F7(f716,j,c,d,d,p,c,B,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
779 F58(f717,l,p,d,B,C,d,i,j,J,I,I,B,l,j,i,C,d,s,c,i,p,L,f,l,l,L,l,J,l,B,C,L,s,B,C,l,p,C,J,s,B,I,l,c,S,i,S,j,c,B,d,S,c,I,i,c,J,c,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
780 F16(f718,J,B,J,d,S,C,j,d,B,L,p,f,c,S,C,c,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
781 F22(f719,p,J,l,L,l,S,l,L,l,I,S,C,C,p,i,d,i,s,L,i,J,i,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
782 F22(f720,v,s,l,s,i,s,s,l,J,s,d,c,p,p,i,f,S,l,i,i,p,I,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
783 F20(f721,d,s,S,i,s,j,J,s,p,f,p,s,l,B,p,L,I,J,i,I,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
784 F27(f722,I,s,s,d,j,S,I,C,B,f,p,d,S,B,c,d,I,d,d,p,p,J,S,I,c,J,S,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
785 F38(f723,l,j,J,B,I,p,j,C,d,d,f,f,f,J,S,d,f,I,d,i,S,p,j,j,I,s,L,L,d,C,J,C,l,B,s,c,J,i,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
786 F30(f724,p,f,s,J,B,C,j,j,d,B,I,l,c,i,j,d,f,p,f,c,S,s,j,f,d,B,I,i,S,p,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
787 F41(f725,f,l,J,s,I,L,c,s,I,J,l,s,l,B,c,S,j,s,c,J,B,p,f,l,S,S,l,C,j,p,B,p,c,l,J,L,L,p,l,B,p,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
788 F47(f726,s,I,J,i,d,p,l,l,p,L,s,B,I,J,B,L,p,j,i,c,d,I,B,J,J,s,l,J,S,f,s,j,f,I,B,l,J,j,S,I,I,l,d,S,I,l,f,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
789 F3(f727,p,S,L,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
790 F10(f728,v,B,B,c,l,B,i,C,c,S,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
791 F1(f729,s,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
792 F28(f730,j,C,J,j,l,I,L,s,f,s,j,p,S,S,J,J,i,f,d,l,c,f,J,B,l,I,d,J,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
793 F50(f731,i,C,C,i,f,f,d,i,J,f,s,j,C,B,B,d,L,i,c,C,J,i,c,I,S,L,J,d,s,C,d,c,s,L,S,S,B,j,I,f,i,S,d,L,S,j,B,c,C,l,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
794 F44(f732,S,B,C,p,i,S,I,c,B,s,B,i,c,c,B,c,p,p,c,B,c,p,c,S,f,i,I,S,B,C,j,f,i,I,i,d,f,c,l,B,d,j,s,B,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
795 F29(f733,c,s,p,l,S,s,c,d,L,c,S,d,f,L,C,j,I,S,p,J,s,B,f,i,S,B,c,I,p,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
796 F0(f734,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
797 F21(f735,s,f,i,I,s,d,I,p,f,I,p,B,c,j,f,p,f,L,C,d,l,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
798 F59(f736,v,C,I,c,s,I,C,i,J,l,j,I,f,I,I,c,J,C,j,i,f,s,J,f,i,I,j,l,p,S,L,s,l,i,l,d,J,L,L,i,s,c,L,s,f,f,d,f,I,p,B,L,d,d,C,f,C,C,l,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
799 F10(f737,J,d,c,d,I,I,f,C,c,j,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
800 F8(f738,C,j,J,c,i,J,i,L,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
801 F46(f739,v,S,C,B,f,l,l,B,i,s,I,l,f,c,J,p,L,l,J,J,J,d,c,I,B,j,s,f,c,L,B,s,L,l,L,f,J,l,p,C,f,i,d,S,s,L,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
802 F1(f740,L,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
803 F42(f741,j,c,j,i,f,c,S,d,L,S,S,C,C,i,d,d,f,J,p,L,j,j,i,C,L,B,J,c,I,B,l,i,B,B,B,j,J,I,j,B,c,i,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
804 F58(f742,d,j,l,J,j,s,l,p,j,l,I,j,i,C,d,l,J,B,L,j,S,J,L,C,S,p,C,J,B,L,I,p,J,S,j,J,J,L,J,l,p,p,d,J,c,B,L,J,L,p,p,B,J,p,L,s,B,J,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
805 F36(f743,d,B,i,L,J,J,J,d,J,f,j,c,I,L,j,I,J,s,i,L,L,d,i,S,l,p,l,i,c,l,c,L,l,l,d,c,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
806 F56(f744,c,S,J,B,C,C,B,B,i,I,p,p,S,d,C,f,f,j,L,S,j,s,p,s,i,i,c,B,j,i,d,d,I,S,c,c,c,C,l,c,C,S,l,l,S,p,S,c,S,d,B,B,I,B,l,C,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
807 F48(f745,i,p,C,S,c,J,I,p,c,d,S,S,f,J,C,d,p,d,J,I,I,J,B,p,i,i,d,C,s,l,p,f,S,J,C,l,c,j,L,S,c,f,I,d,f,C,C,S,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
808 F1(f746,B,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
809 F24(f747,d,s,L,i,s,d,i,I,j,d,l,s,C,f,p,S,C,I,c,p,C,B,L,p,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
810 F2(f748,i,s,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
811 F48(f749,l,s,B,i,S,I,p,d,s,S,d,p,s,C,c,C,d,i,p,J,S,S,J,d,f,f,p,p,J,p,C,S,I,C,J,i,L,B,d,s,i,L,f,C,J,S,B,d,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
812 F51(f750,i,c,J,f,p,C,s,I,s,J,l,c,J,I,C,L,i,c,L,d,f,s,I,J,L,j,f,d,i,j,d,L,C,S,p,j,i,d,j,J,f,L,p,C,c,L,d,I,S,c,c,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
813 F28(f751,v,d,c,S,B,B,s,f,d,d,I,L,s,i,L,S,I,c,j,p,j,S,c,L,C,I,f,f,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
814 F14(f752,v,i,l,J,s,d,l,C,d,s,I,I,f,d,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
815 F26(f753,d,i,c,L,i,s,I,i,B,C,s,j,B,s,d,c,f,l,l,s,s,s,l,L,i,p,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
816 F28(f754,c,C,i,i,j,J,J,p,S,d,B,p,B,J,f,J,i,i,i,L,L,I,i,d,J,p,j,i,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
817 F56(f755,l,L,S,L,d,p,s,S,J,J,c,c,B,C,c,L,c,L,B,I,B,p,I,f,l,i,d,j,s,j,p,L,L,S,d,p,c,s,p,l,j,S,j,I,I,C,S,s,I,f,i,S,i,B,l,l,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
818 F50(f756,B,C,S,S,j,p,L,j,L,j,l,S,L,j,L,l,i,s,c,S,f,s,j,p,B,J,I,j,d,C,l,L,l,p,j,i,s,c,i,C,s,C,l,f,f,S,f,J,c,S,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
819 F20(f757,f,s,L,L,I,i,c,c,B,B,c,C,C,B,C,f,B,j,S,B,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
820 F37(f758,v,B,l,j,s,I,p,d,s,j,l,l,d,j,J,l,J,d,f,I,c,c,d,j,l,i,p,f,d,j,i,d,f,s,i,d,l,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
821 F53(f759,v,L,S,f,d,i,s,L,d,i,d,s,c,i,s,C,f,S,B,J,d,S,d,l,L,L,C,I,p,I,f,s,J,B,p,J,J,d,d,I,J,j,C,C,f,B,i,J,f,l,S,I,s,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
822 F57(f760,i,J,I,S,J,S,S,J,p,j,s,p,l,L,s,c,f,S,C,p,d,B,S,d,s,j,l,B,c,j,L,J,I,d,J,i,f,p,B,S,s,L,s,i,j,L,J,f,S,l,l,i,j,p,c,f,d,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
823 F32(f761,C,d,s,S,C,d,c,L,s,p,C,j,S,s,s,i,d,l,l,f,i,f,J,l,d,S,f,i,p,s,c,B,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
824 F40(f762,s,c,B,i,j,C,d,l,j,j,S,d,s,i,J,j,L,p,J,s,C,j,B,s,p,S,d,j,f,J,B,p,p,J,f,J,S,s,i,d,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
825 F34(f763,B,p,I,C,p,p,c,s,S,C,i,l,l,L,j,c,J,I,L,d,f,s,s,J,J,B,c,p,f,J,J,S,L,s,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
826 F3(f764,I,i,S,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
827 F56(f765,C,j,J,l,B,f,B,p,d,S,S,J,L,l,d,c,j,J,c,l,l,L,p,j,l,c,C,I,l,J,L,i,i,j,S,l,L,l,B,S,B,L,C,C,i,I,I,j,p,I,C,c,j,j,B,s,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
828 F14(f766,p,i,J,p,l,S,I,B,j,L,J,B,J,i,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
829 F38(f767,s,s,s,f,c,S,d,l,c,S,i,l,i,f,f,f,f,p,J,s,S,i,C,p,p,d,d,L,C,i,f,p,i,d,i,L,L,B,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
830 F60(f768,j,s,d,d,B,L,j,d,I,S,B,C,S,L,I,j,j,L,J,f,S,p,J,C,S,j,B,B,d,l,S,d,B,I,I,S,f,l,p,j,i,I,L,f,s,s,L,j,d,i,s,S,p,J,f,L,s,p,l,p,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
831 F16(f769,J,B,s,c,s,B,J,B,d,f,I,c,L,S,d,s,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
832 F20(f770,C,L,J,J,c,B,l,s,L,c,c,j,f,c,I,I,L,f,L,S,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
833 F33(f771,s,I,s,c,d,B,d,f,i,s,c,l,C,L,I,s,J,i,J,i,J,i,S,S,J,I,B,c,i,S,p,S,S,S)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
834 F27(f772,C,f,p,i,L,l,l,i,i,C,d,B,i,f,L,i,s,I,L,c,B,p,c,j,d,l,L,j)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
835 F19(f773,C,B,L,i,d,L,j,f,c,i,c,S,J,J,L,l,c,i,C,f)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
836 F55(f774,B,c,j,S,i,I,d,i,p,f,L,L,B,B,S,B,d,C,J,c,C,d,j,f,i,S,B,B,L,i,C,s,j,J,f,B,C,C,S,C,f,p,J,B,d,i,p,s,d,I,I,f,j,i,C,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
837 F59(f775,C,l,B,S,i,S,J,d,c,f,l,C,d,d,l,J,d,I,S,I,c,l,i,C,i,C,J,f,i,c,f,C,B,f,S,d,c,C,s,B,S,p,J,I,J,B,s,i,L,j,J,I,C,C,d,C,I,s,L,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
838 F57(f776,I,I,S,d,S,s,j,c,C,C,L,f,l,I,d,J,p,s,p,p,s,B,B,B,l,J,J,c,i,l,j,S,S,I,p,i,i,f,J,j,B,l,J,d,i,S,f,s,s,i,B,c,C,p,p,B,j,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
839 F4(f777,C,f,i,f,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
840 F29(f778,S,s,s,i,s,s,J,f,d,s,p,i,l,L,i,f,S,C,j,B,L,f,j,i,C,d,d,p,J,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
841 F15(f779,p,l,I,f,s,L,J,B,I,J,j,B,S,J,f,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
842 F29(f780,j,s,i,i,d,L,d,I,L,c,J,l,J,c,L,B,l,L,j,s,B,j,C,I,j,s,J,S,I,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
843 F56(f781,I,s,l,S,J,f,S,L,S,p,d,j,s,i,C,C,j,S,L,c,I,d,L,B,i,d,p,s,s,J,C,B,s,B,d,i,B,C,d,f,C,L,i,B,J,B,I,j,i,L,J,f,i,I,S,L,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
844 F30(f782,B,I,c,S,l,i,p,c,j,c,J,L,I,L,i,I,L,i,c,L,c,c,B,s,i,p,j,d,l,d,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
845 F24(f783,s,j,j,S,i,i,I,j,B,f,i,B,c,i,L,S,s,c,B,c,d,l,C,j,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
846 F52(f784,d,S,d,S,L,i,I,i,C,S,p,S,B,p,l,I,B,c,p,c,J,f,l,i,s,j,J,S,S,p,S,C,c,i,L,j,B,I,L,l,J,c,d,L,j,S,p,s,L,p,C,p,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
847 F10(f785,f,J,L,l,L,l,l,i,c,p,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
848 F44(f786,v,s,d,S,l,j,s,d,B,f,L,j,S,C,c,s,I,S,J,S,c,j,c,J,J,S,L,l,i,i,J,p,C,I,l,d,J,s,B,f,S,d,c,c,J)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
849 F10(f787,C,p,S,p,J,B,s,l,J,p,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
850 F12(f788,j,d,l,I,p,j,B,d,B,C,p,c,i)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
851 F21(f789,v,J,C,p,j,l,C,L,S,s,C,J,J,l,L,d,J,s,i,d,i,c)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
852 F52(f790,L,i,c,C,i,J,j,j,f,S,c,p,C,j,p,p,B,l,B,c,l,s,J,d,J,d,I,p,I,I,j,d,j,l,j,B,I,i,d,J,l,s,S,L,j,B,I,l,J,j,C,i,p)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
853 F11(f791,l,i,p,l,s,L,S,c,i,c,l,d)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
854 F15(f792,J,i,c,C,I,c,S,J,p,I,L,c,B,j,I,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
855 F23(f793,j,l,J,C,c,I,s,d,B,l,p,d,d,L,L,d,C,c,J,d,f,f,d,B)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
856 F55(f794,v,i,p,c,I,c,i,i,J,l,B,f,S,I,c,p,i,d,d,j,I,J,c,d,c,l,c,j,J,J,I,j,l,B,j,B,s,f,J,C,j,p,I,B,i,L,c,L,L,i,i,S,c,B,c,I)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
857 F13(f795,f,I,s,c,S,d,L,S,C,d,d,L,J,s)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
858 F51(f796,d,C,S,S,d,C,s,l,c,C,C,l,J,i,B,f,B,B,f,C,J,L,c,p,l,f,f,j,i,j,B,i,j,i,p,S,d,s,j,s,C,d,L,J,i,J,J,j,i,J,J,l)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
859 F40(f797,c,I,d,s,J,f,f,j,J,l,J,d,I,C,p,S,I,f,i,j,I,C,I,I,l,J,d,f,l,p,p,S,f,l,S,S,J,C,C,c,L)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
860 F11(f798,i,B,f,d,d,L,B,d,s,l,p,C)
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
861 F55(f799,B,S,j,s,J,J,I,L,L,J,d,d,l,d,c,S,l,i,C,B,c,I,l,c,s,C,J,i,c,C,C,c,c,C,c,B,p,l,L,B,I,s,i,i,B,l,d,c,C,S,I,I,p,p,B,j)
505
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
862 funptr G_funtab[] = {
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
863 &f0,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
864 &f1,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
865 &f2,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
866 &f3,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
867 &f4,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
868 &f5,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
869 &f6,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
870 &f7,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
871 &f8,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
872 &f9,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
873 &f10,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
874 &f11,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
875 &f12,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
876 &f13,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
877 &f14,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
878 &f15,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
879 &f16,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
880 &f17,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
881 &f18,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
882 &f19,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
883 &f20,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
884 &f21,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
885 &f22,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
886 &f23,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
887 &f24,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
888 &f25,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
889 &f26,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
890 &f27,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
891 &f28,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
892 &f29,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
893 &f30,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
894 &f31,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
895 &f32,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
896 &f33,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
897 &f34,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
898 &f35,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
899 &f36,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
900 &f37,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
901 &f38,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
902 &f39,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
903 &f40,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
904 &f41,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
905 &f42,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
906 &f43,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
907 &f44,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
908 &f45,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
909 &f46,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
910 &f47,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
911 &f48,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
912 &f49,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
913 &f50,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
914 &f51,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
915 &f52,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
916 &f53,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
917 &f54,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
918 &f55,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
919 &f56,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
920 &f57,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
921 &f58,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
922 &f59,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
923 &f60,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
924 &f61,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
925 &f62,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
926 &f63,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
927 &f64,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
928 &f65,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
929 &f66,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
930 &f67,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
931 &f68,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
932 &f69,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
933 &f70,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
934 &f71,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
935 &f72,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
936 &f73,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
937 &f74,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
938 &f75,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
939 &f76,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
940 &f77,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
941 &f78,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
942 &f79,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
943 &f80,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
944 &f81,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
945 &f82,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
946 &f83,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
947 &f84,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
948 &f85,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
949 &f86,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
950 &f87,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
951 &f88,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
952 &f89,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
953 &f90,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
954 &f91,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
955 &f92,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
956 &f93,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
957 &f94,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
958 &f95,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
959 &f96,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
960 &f97,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
961 &f98,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
962 &f99,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
963 &f100,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
964 &f101,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
965 &f102,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
966 &f103,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
967 &f104,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
968 &f105,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
969 &f106,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
970 &f107,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
971 &f108,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
972 &f109,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
973 &f110,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
974 &f111,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
975 &f112,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
976 &f113,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
977 &f114,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
978 &f115,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
979 &f116,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
980 &f117,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
981 &f118,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
982 &f119,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
983 &f120,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
984 &f121,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
985 &f122,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
986 &f123,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
987 &f124,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
988 &f125,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
989 &f126,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
990 &f127,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
991 &f128,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
992 &f129,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
993 &f130,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
994 &f131,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
995 &f132,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
996 &f133,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
997 &f134,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
998 &f135,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
999 &f136,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1000 &f137,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1001 &f138,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1002 &f139,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1003 &f140,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1004 &f141,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1005 &f142,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1006 &f143,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1007 &f144,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1008 &f145,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1009 &f146,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1010 &f147,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1011 &f148,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1012 &f149,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1013 &f150,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1014 &f151,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1015 &f152,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1016 &f153,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1017 &f154,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1018 &f155,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1019 &f156,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1020 &f157,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1021 &f158,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1022 &f159,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1023 &f160,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1024 &f161,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1025 &f162,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1026 &f163,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1027 &f164,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1028 &f165,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1029 &f166,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1030 &f167,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1031 &f168,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1032 &f169,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1033 &f170,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1034 &f171,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1035 &f172,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1036 &f173,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1037 &f174,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1038 &f175,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1039 &f176,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1040 &f177,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1041 &f178,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1042 &f179,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1043 &f180,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1044 &f181,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1045 &f182,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1046 &f183,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1047 &f184,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1048 &f185,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1049 &f186,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1050 &f187,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1051 &f188,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1052 &f189,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1053 &f190,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1054 &f191,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1055 &f192,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1056 &f193,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1057 &f194,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1058 &f195,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1059 &f196,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1060 &f197,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1061 &f198,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1062 &f199,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1063 &f200,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1064 &f201,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1065 &f202,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1066 &f203,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1067 &f204,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1068 &f205,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1069 &f206,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1070 &f207,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1071 &f208,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1072 &f209,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1073 &f210,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1074 &f211,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1075 &f212,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1076 &f213,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1077 &f214,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1078 &f215,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1079 &f216,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1080 &f217,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1081 &f218,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1082 &f219,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1083 &f220,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1084 &f221,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1085 &f222,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1086 &f223,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1087 &f224,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1088 &f225,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1089 &f226,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1090 &f227,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1091 &f228,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1092 &f229,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1093 &f230,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1094 &f231,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1095 &f232,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1096 &f233,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1097 &f234,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1098 &f235,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1099 &f236,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1100 &f237,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1101 &f238,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1102 &f239,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1103 &f240,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1104 &f241,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1105 &f242,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1106 &f243,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1107 &f244,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1108 &f245,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1109 &f246,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1110 &f247,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1111 &f248,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1112 &f249,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1113 &f250,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1114 &f251,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1115 &f252,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1116 &f253,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1117 &f254,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1118 &f255,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1119 &f256,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1120 &f257,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1121 &f258,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1122 &f259,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1123 &f260,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1124 &f261,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1125 &f262,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1126 &f263,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1127 &f264,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1128 &f265,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1129 &f266,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1130 &f267,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1131 &f268,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1132 &f269,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1133 &f270,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1134 &f271,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1135 &f272,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1136 &f273,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1137 &f274,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1138 &f275,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1139 &f276,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1140 &f277,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1141 &f278,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1142 &f279,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1143 &f280,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1144 &f281,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1145 &f282,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1146 &f283,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1147 &f284,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1148 &f285,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1149 &f286,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1150 &f287,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1151 &f288,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1152 &f289,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1153 &f290,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1154 &f291,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1155 &f292,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1156 &f293,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1157 &f294,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1158 &f295,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1159 &f296,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1160 &f297,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1161 &f298,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1162 &f299,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1163 &f300,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1164 &f301,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1165 &f302,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1166 &f303,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1167 &f304,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1168 &f305,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1169 &f306,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1170 &f307,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1171 &f308,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1172 &f309,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1173 &f310,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1174 &f311,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1175 &f312,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1176 &f313,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1177 &f314,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1178 &f315,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1179 &f316,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1180 &f317,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1181 &f318,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1182 &f319,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1183 &f320,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1184 &f321,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1185 &f322,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1186 &f323,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1187 &f324,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1188 &f325,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1189 &f326,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1190 &f327,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1191 &f328,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1192 &f329,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1193 &f330,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1194 &f331,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1195 &f332,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1196 &f333,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1197 &f334,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1198 &f335,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1199 &f336,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1200 &f337,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1201 &f338,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1202 &f339,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1203 &f340,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1204 &f341,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1205 &f342,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1206 &f343,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1207 &f344,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1208 &f345,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1209 &f346,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1210 &f347,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1211 &f348,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1212 &f349,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1213 &f350,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1214 &f351,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1215 &f352,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1216 &f353,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1217 &f354,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1218 &f355,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1219 &f356,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1220 &f357,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1221 &f358,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1222 &f359,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1223 &f360,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1224 &f361,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1225 &f362,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1226 &f363,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1227 &f364,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1228 &f365,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1229 &f366,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1230 &f367,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1231 &f368,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1232 &f369,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1233 &f370,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1234 &f371,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1235 &f372,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1236 &f373,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1237 &f374,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1238 &f375,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1239 &f376,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1240 &f377,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1241 &f378,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1242 &f379,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1243 &f380,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1244 &f381,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1245 &f382,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1246 &f383,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1247 &f384,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1248 &f385,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1249 &f386,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1250 &f387,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1251 &f388,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1252 &f389,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1253 &f390,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1254 &f391,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1255 &f392,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1256 &f393,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1257 &f394,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1258 &f395,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1259 &f396,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1260 &f397,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1261 &f398,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1262 &f399,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1263 &f400,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1264 &f401,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1265 &f402,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1266 &f403,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1267 &f404,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1268 &f405,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1269 &f406,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1270 &f407,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1271 &f408,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1272 &f409,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1273 &f410,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1274 &f411,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1275 &f412,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1276 &f413,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1277 &f414,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1278 &f415,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1279 &f416,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1280 &f417,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1281 &f418,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1282 &f419,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1283 &f420,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1284 &f421,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1285 &f422,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1286 &f423,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1287 &f424,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1288 &f425,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1289 &f426,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1290 &f427,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1291 &f428,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1292 &f429,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1293 &f430,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1294 &f431,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1295 &f432,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1296 &f433,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1297 &f434,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1298 &f435,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1299 &f436,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1300 &f437,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1301 &f438,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1302 &f439,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1303 &f440,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1304 &f441,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1305 &f442,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1306 &f443,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1307 &f444,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1308 &f445,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1309 &f446,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1310 &f447,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1311 &f448,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1312 &f449,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1313 &f450,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1314 &f451,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1315 &f452,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1316 &f453,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1317 &f454,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1318 &f455,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1319 &f456,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1320 &f457,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1321 &f458,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1322 &f459,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1323 &f460,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1324 &f461,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1325 &f462,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1326 &f463,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1327 &f464,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1328 &f465,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1329 &f466,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1330 &f467,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1331 &f468,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1332 &f469,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1333 &f470,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1334 &f471,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1335 &f472,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1336 &f473,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1337 &f474,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1338 &f475,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1339 &f476,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1340 &f477,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1341 &f478,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1342 &f479,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1343 &f480,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1344 &f481,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1345 &f482,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1346 &f483,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1347 &f484,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1348 &f485,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1349 &f486,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1350 &f487,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1351 &f488,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1352 &f489,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1353 &f490,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1354 &f491,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1355 &f492,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1356 &f493,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1357 &f494,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1358 &f495,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1359 &f496,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1360 &f497,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1361 &f498,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1362 &f499,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1363 &f500,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1364 &f501,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1365 &f502,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1366 &f503,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1367 &f504,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1368 &f505,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1369 &f506,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1370 &f507,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1371 &f508,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1372 &f509,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1373 &f510,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1374 &f511,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1375 &f512,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1376 &f513,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1377 &f514,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1378 &f515,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1379 &f516,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1380 &f517,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1381 &f518,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1382 &f519,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1383 &f520,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1384 &f521,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1385 &f522,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1386 &f523,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1387 &f524,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1388 &f525,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1389 &f526,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1390 &f527,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1391 &f528,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1392 &f529,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1393 &f530,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1394 &f531,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1395 &f532,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1396 &f533,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1397 &f534,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1398 &f535,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1399 &f536,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1400 &f537,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1401 &f538,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1402 &f539,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1403 &f540,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1404 &f541,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1405 &f542,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1406 &f543,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1407 &f544,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1408 &f545,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1409 &f546,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1410 &f547,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1411 &f548,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1412 &f549,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1413 &f550,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1414 &f551,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1415 &f552,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1416 &f553,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1417 &f554,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1418 &f555,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1419 &f556,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1420 &f557,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1421 &f558,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1422 &f559,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1423 &f560,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1424 &f561,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1425 &f562,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1426 &f563,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1427 &f564,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1428 &f565,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1429 &f566,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1430 &f567,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1431 &f568,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1432 &f569,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1433 &f570,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1434 &f571,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1435 &f572,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1436 &f573,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1437 &f574,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1438 &f575,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1439 &f576,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1440 &f577,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1441 &f578,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1442 &f579,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1443 &f580,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1444 &f581,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1445 &f582,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1446 &f583,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1447 &f584,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1448 &f585,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1449 &f586,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1450 &f587,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1451 &f588,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1452 &f589,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1453 &f590,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1454 &f591,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1455 &f592,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1456 &f593,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1457 &f594,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1458 &f595,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1459 &f596,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1460 &f597,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1461 &f598,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1462 &f599,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1463 &f600,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1464 &f601,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1465 &f602,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1466 &f603,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1467 &f604,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1468 &f605,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1469 &f606,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1470 &f607,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1471 &f608,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1472 &f609,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1473 &f610,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1474 &f611,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1475 &f612,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1476 &f613,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1477 &f614,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1478 &f615,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1479 &f616,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1480 &f617,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1481 &f618,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1482 &f619,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1483 &f620,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1484 &f621,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1485 &f622,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1486 &f623,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1487 &f624,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1488 &f625,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1489 &f626,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1490 &f627,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1491 &f628,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1492 &f629,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1493 &f630,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1494 &f631,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1495 &f632,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1496 &f633,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1497 &f634,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1498 &f635,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1499 &f636,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1500 &f637,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1501 &f638,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1502 &f639,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1503 &f640,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1504 &f641,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1505 &f642,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1506 &f643,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1507 &f644,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1508 &f645,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1509 &f646,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1510 &f647,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1511 &f648,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1512 &f649,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1513 &f650,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1514 &f651,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1515 &f652,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1516 &f653,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1517 &f654,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1518 &f655,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1519 &f656,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1520 &f657,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1521 &f658,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1522 &f659,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1523 &f660,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1524 &f661,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1525 &f662,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1526 &f663,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1527 &f664,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1528 &f665,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1529 &f666,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1530 &f667,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1531 &f668,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1532 &f669,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1533 &f670,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1534 &f671,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1535 &f672,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1536 &f673,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1537 &f674,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1538 &f675,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1539 &f676,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1540 &f677,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1541 &f678,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1542 &f679,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1543 &f680,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1544 &f681,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1545 &f682,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1546 &f683,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1547 &f684,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1548 &f685,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1549 &f686,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1550 &f687,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1551 &f688,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1552 &f689,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1553 &f690,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1554 &f691,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1555 &f692,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1556 &f693,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1557 &f694,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1558 &f695,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1559 &f696,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1560 &f697,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1561 &f698,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1562 &f699,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1563 &f700,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1564 &f701,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1565 &f702,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1566 &f703,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1567 &f704,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1568 &f705,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1569 &f706,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1570 &f707,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1571 &f708,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1572 &f709,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1573 &f710,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1574 &f711,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1575 &f712,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1576 &f713,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1577 &f714,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1578 &f715,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1579 &f716,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1580 &f717,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1581 &f718,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1582 &f719,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1583 &f720,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1584 &f721,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1585 &f722,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1586 &f723,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1587 &f724,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1588 &f725,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1589 &f726,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1590 &f727,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1591 &f728,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1592 &f729,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1593 &f730,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1594 &f731,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1595 &f732,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1596 &f733,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1597 &f734,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1598 &f735,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1599 &f736,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1600 &f737,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1601 &f738,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1602 &f739,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1603 &f740,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1604 &f741,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1605 &f742,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1606 &f743,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1607 &f744,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1608 &f745,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1609 &f746,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1610 &f747,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1611 &f748,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1612 &f749,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1613 &f750,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1614 &f751,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1615 &f752,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1616 &f753,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1617 &f754,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1618 &f755,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1619 &f756,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1620 &f757,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1621 &f758,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1622 &f759,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1623 &f760,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1624 &f761,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1625 &f762,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1626 &f763,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1627 &f764,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1628 &f765,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1629 &f766,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1630 &f767,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1631 &f768,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1632 &f769,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1633 &f770,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1634 &f771,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1635 &f772,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1636 &f773,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1637 &f774,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1638 &f775,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1639 &f776,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1640 &f777,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1641 &f778,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1642 &f779,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1643 &f780,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1644 &f781,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1645 &f782,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1646 &f783,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1647 &f784,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1648 &f785,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1649 &f786,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1650 &f787,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1651 &f788,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1652 &f789,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1653 &f790,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1654 &f791,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1655 &f792,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1656 &f793,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1657 &f794,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1658 &f795,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1659 &f796,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1660 &f797,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1661 &f798,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1662 &f799,
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1663 };
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
1664 const char * G_sigtab[] = {
528
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1665 "SCliLpjsssJcpdficCBCcSlLjldddsIBCipcJIdCsJJfIiLjlsIS)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1666 "lIsppSppSsfIlljBIIp)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1667 "IIpSIfBSfSCpdILpCsjBBlCfBILfffjpBljjJL)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1668 "siJiJssdBJjCdfJliSLSijjljsJsfSLSBcsCBisCiffjSspCCllCJsJJ)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1669 "p)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1670 "i)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1671 "sJLsCsCiLJIfcidiJLBffdsLpC)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1672 "dJBSLdSBpJilLI)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1673 "pfjBpLldjfIcJsBf)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1674 "fJLIJJLLcsscIpCdjpjfjcCiIsBJCpBjiLlcC)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1675 "pjd)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1676 "BCfLLLBCJSlLfipdCLiIJJlLBsICsjsfliccCSIcCsScBJcJC)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1677 "dcSccJflSifcsjlSpSIjcfiSflicJBIdLillBpCCfpJdljsSLCJsIcCLcSJ)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1678 "jIlLJBIdLli)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1679 "pSps)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1680 "isSjdSCLLJJcBlJBBBJcBSipffJflpjscfpsIcJfsfpISLciSdS)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1681 "cSIslCjpIdBpCJBCdcSLIIJpfjcsSlsjiJdlsiifcCLIsI)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1682 "IsjpfsSJJpLsjiILfBlSpSCpdIfJcjSjSlIjliLjp)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1683 "cfLIdiiddBJjiJpcjBIiCfCdBdpipjSjlCcjifsLLfCLC)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1684 "C)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1685 "pcsLCfSlSifiBLcfISjLcliJsLjlIfd)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1686 "fSpcLfcisJspcJdLBpCiicpJBIIdLjJjSjsiCCdBBSLcdCpC)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1687 "iBpCIpBpBJclcfJfsdIpCjfLjIJsJdLcpBsSjJC)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1688 "LijIcILpjBIfBIlCISLLIpJcLjJjpcCffJBjjLdSddSCjJJ)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1689 "dLlLBdCplijLCIpicdiLlsidIsdfjpsBiBLsISJflBC)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1690 "jIBCfpscJipjI)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1691 "pIcfiLpJjJLsdlSdLBllfIfLjpfjCBSlifJcBslsIjcsspCjCJBi)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1692 "BsCLiLBjCcsiJIIJfpcjiCsdLClcLfLLSlCpIdLCBjfdCfijsBidfJfccl)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1693 "iJfpjjIfSdlcfSfJIJifjpfijcCpfdBClfSdCpjsJ)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1694 "djLcIfIJdIsspcIpJjJJsiIdiCdclfBJddLL)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1695 "jLIccsCLjfICppplcsJLfJIifCiICBSSCdfjlpjCjLpcjffs)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1696 "liJscdBSCBcBcCcdsCfldjcdiiCiLidJLcSlISBLCflJfSiBLpf)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1697 "lljcBIBCCjBfjdSlcpjiSpLjBclsdsjsSsdiILsCS)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1698 "lCIilLsLdSpILis)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1699 "ICsJSICflcJBJlsLiJIpJllBlJSJJBfJJfIpBfBB)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1700 "ijdSlilpcJJccScJSLdBCjcJpislJBBcpJdicdCipISicjcjILLjdd)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1701 "fJjifddjclSB)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1702 "djJLsdiJl)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1703 "lLBCSLfJLpClBJC)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1704 "sjcicicLpjliBBcLpiJiSpllJpJCp)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1705 "ldlJCpc)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1706 "CclsiBdBcdJcScLIcfSJCcLSCLLLdJJJJjJJLffSIfBCIlpfLSjClps)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1707 "lscpdlpdiLjdffSS)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1708 "jcpBpdjpfppILsIcliSI)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1709 "cclLplddCpiJi)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1710 "LffCjlCliBsjfLLLBBiLLlfLliBCidCLSCclIllJCsBs)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1711 "JisBsliLliiSIfCjdJCsJjdpILJIpdipIlBcpLdj)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1712 "sLCsjBsJIdifjlcC)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1713 "jdJLdClLcLfdsBsSBjBCjfBCdiclSBJiLsSppcSdsC)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1714 "BpCBdcSJiSlCpsCdlfBlfLiildSiJsLBdCLdlfCLdspisC)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1715 "fjfpcILfLpiilBddSlf)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1716 "sfBLScs)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1717 "cccjliIlSlIcijSCCIlcILdjCcjfcsSLllslsJfjIlfdBSjLSjSsl)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1718 "SIsp)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1719 "jCCSiBcScSIlcsjpcsdpIccsjiIiCjJfiBlpllidIfSIfSisSscCc)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1720 "jsSCJIBcCICJJidCSSjsCflSpSSsSiIpdIJlIdIdCSCI)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1721 "LlSBijCCJsJsljcBLIIfsBJLJcjisiSSccCSjpjsJiLSlIcBIl)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1722 "lffBc)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1723 "csCpIidJcpJ)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1724 "iBifIBjJlSCfsjLiffJCjsjiiBcjSCLsBdBL)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1725 "fdCCpsISBffJcScsdCffjpIJBCjjIsBllCCs)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1726 "LSSiSplsLfIddSiiliisBLLdpslSSScfSLCIcfsSLS)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1727 "cS)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1728 "sdBBSldcdpsdLJLSfBIisdBIfSdIJSlifjjcBfccLc)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1729 "SLiBSIdLIJfJLdLfslBJCdjpIII)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1730 "spJB)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1731 "ClIiidlsISlSJjJCjBj)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1732 "fiBLpCliCiidsLfiIcsdsfpljiSCssJBijBJlCpiBs)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1733 "icdJcjpSLsljCsIicISCLcplslBfjlfplCSSBlpSsBsIcLScffjsli)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1734 "IldsLjppBlJIJJlLcddfLIjSSpfcljcjlsLijd)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1735 "IjBjjBSIdplBIcdSjplcJCIIJBCIfsfsIcIiidCSlcI)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1736 "pBjfJB)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1737 "dCIdpBJlililpBB)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1738 "BlcifLSpCjs)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1739 "pJdLjSJsSJIdssIScdLSdJcpjCCBIsIs)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1740 "sdpClsjSpjdIsCjIsidjJpILljcJBsciciiplCf)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1741 "fipdBldficpBS)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1742 "djpBIJSdsLfBCSfdBBdIlIIiCfsBILpCslSls)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1743 "iLCLpjdBcdjJddJLdjSsISlcCBiIsIcfLCLs)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1744 "pLCJsiicdccCSIpcBsLcdJildSiscCpJcdJpJ)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1745 "l)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1746 "ccjccfljpLLdSiBsLIjfIiLfBCdjcdLsjLSLi)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1747 "pCpIIBL)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1748 "JcIdCiiBLddcfIJipJpjp)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1749 "sCspdBBcisflBSdifBISidIfiLJpC)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1750 "djSccjJfpBjjCClfJsCcdLjsISlBBBiiidcfJJS)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1751 "fLpLlif)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1752 "JiLCCsSJcdciiIBCLCjpp)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1753 "dJSillILJSJlJplCSdBfiIBiJLI)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1754 "BIfSclppfiBlLCCfdSijJdJLijcCsdJlcIJBCJlsjJcI)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1755 "liiLdffpJdpsffcflcldjpLcfBpcSfISBCsSBspciIIf)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1756 "cjJiCJjCjIdLc)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1757 "fBJBJldlpsjiSsLjscpSjJJCSfBBpdICcjIIpIidCJBjfidBfciiJLJLI)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1758 "ipLfCSBccsBJdCCsBjsCiCCcJsjiCLsdBBdlLpcCsisCiLdfSsClLpIj)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1759 "LJcfjjBLldiIfpfdILCsSsSJ)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1760 "BBdcSISlsCJCSJppssSlsjsjIILcfSflBS)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1761 "jIIJcIBSdidiJIjplCfccclSIisIBLiJpsjJfpCCpBSfIfCdClJidcS)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1762 "pCCpiBlBljCdCLfSccdBJscCclplLisiCjijlCBjcifpisfdcscI)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1763 "jBCcCdjBccpiLpJBJpifBScLdiICdLIL)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1764 "sLjBLpiSCSccpiLLipsBsfjLicICCCIdjpJLLifBSpIcjjsfsjJld)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1765 "ljcSiJidICSLJ)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1766 "IIILJCifpIdfSJcCCSfiddiSlpilscjdfiiSSlCdpjIfI)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1767 "dscJiCJpfiscIfppjccj)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1768 "scJSBiiSBJLdp)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1769 "LllBfjLcSdJspcJpcLBscl)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1770 "BLilSpdliBsIfpfjIipJIdLlpiIsBCLpdCSfCcjCIIIiLi)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1771 "CdLffjSBpCcclfpBjBlLliJlccLLplpLJJlpJSllfBBcIJIJ)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1772 "LCCicBSdfcsSiBLfpJjiiJS)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1773 "pJsCcljCpCJsiiLSjSBLcj)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1774 "IIIJJdSdBcfJljJlCSi)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1775 "CLJLLiCBdLcIcJijssfSldcBiijld)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1776 "CsciipBClildJiSpJBcpIJsjBSpCdsipClsLCCciJfBpLCCBpJsplflddl)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1777 "LcLfdJffJCjiijssJpjSSjfjsfsJjBCllcClSLlLcLfdICSIisdcCj)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1778 "sILjSSfIjsfsilsdLcslsJCCdpJBcCJdjpLiIsBSpfCSll)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1779 "cIISILiifSlldlLpcpScjpdiLsBidCiJScJIBB)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1780 "sCcBBsISJcSLSIjsdIIsjCLBsliBIBipLjLlsSiiisjjpBdlcddcIslI)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1781 "sIfsBpslBCLIsdpSLsdLlLjdLpLBSiLcJBdjSjlIlfIIffJBiLfdIcBjpC)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1782 "CfB)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1783 "BJsCBfpLpfjSfBBcS)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1784 "CsCsciLJfllcji)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1785 "SLIdCjJfdBscBlIldJIjifCIic)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1786 "djdfCSlCSsipIjsBsIpdJJClBpBfflCisJscfcIjLfBSCclpiBBIpdS)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1787 "JfCjdfpfdSdfCffjLfScIppJspCLfdjSBCllsiCffljicsfdpSIJIp)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1788 "fpdSil)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1789 "jcjpsCfpBpssISJIJdBSBilfIlLidLSlLcIcfilSdffddifCLIllBCSpIB)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1790 "djJISlICssjp)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1791 "JfISCCScSdJlpSljSBBjSlJicSJsIcIiBjpSLLlsjIllsSiIcjBBpC)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1792 "ILLSJCIlBIpdcLlfs)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1793 ")c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1794 "sfflSfILJCliLpiilifjCSssjcjcLBJpLdspfc)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1795 "pBicsLlCddliSsfIilBIplIISdpcdjdjICdpfsiLBJBfcfIiJisSLICLfBC)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1796 "pflpCjlCcIBCpJcsccfcSjSsdLI)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1797 "cc)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1798 "ifB)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1799 "dfllBfCdCCcpCSjpcsBCJBsccfjIffIBiSCjJJ)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1800 "lsjidCjIsifsjSipBdcpI)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1801 "fBjjddJCCJsidcfLsIjsCsliJcCIfBJJjlBjCBClIlsLJBJc)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1802 "lLddLIpSJsBpli)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1803 "pfBlsS)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1804 "ijdlpCSI)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1805 "fLSlfsdjiSfSBJLLjs)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1806 "iLifjsfBdJIcsScjlfIBplsLIJBBi)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1807 "fsfJSIspfjlSjpfjSdBdcdJIppIdldBSslpl)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1808 "JpsfSllsIjfjjfcpfpIfL)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1809 "SiCfpIdcpSldSCpLsCISCSLjCcSspIcfipBCdSpSpfILJBicfJcCspICj)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1810 "cfilLCcLSCJsIs)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1811 "dJdfdiISpJLfSlsjjISLLfJliBCJiSsfdSlJCJpsjisC)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1812 "JcspcsccJcdClpjj)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1813 "piClSpBiCBIJpSiJcJsBppBLBdcCifjdIdfS)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1814 "pSiBscdccJBlCciIlsBdpIJICISBLiiiLcdBc)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1815 "BSfjjLiB)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1816 "BLSLSCipjcfsIJILdIsljcijsiLLpfBLcsiBldcdCjBBlCJLCcpjSJBLdcJd)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1817 "llsjjidJdCCsccjiSlLifslsBpfiIipspLBLfLfsiCCScJiBLLfljiIILCCj)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1818 "jsLIfCjccIj)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1819 "ljCSdfjpJBlSjB)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1820 "CSJSBJfpJIBCBjBiisplBfSScpSJIdcpCIlfjJIpLlJIiJpBj)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1821 "fCjcfCscLdfBIfBJdJfdSSIcliIfIfpIsSLfiJlB)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1822 "CpSBISlJcLsLlCCBIjIJdcSjJjCdlflsLdsBIdfClSBliJISJiLCJBjBdc)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1823 "BSfILIIpjLIcdLcldSCdIJSlSdiiISLldjpcfscciscc)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1824 "jfiLLJBSIi)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1825 "IpCBCCpCf)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1826 "ilJLILLCSJLlClBfdsJpdCpc)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1827 "lJpslspiICSpjcCJiifjIlJlIlIfllpljIlBpIpIdcJIBcIBpIIJClsssJ)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1828 "icl)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1829 "lcjipLCCiCfCiLjdjSLpLJjSJlplsIfBIIBpLLsC)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1830 "iBBcSpdCsBCpllJfiJiCCIc)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1831 "SSsiIL)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1832 "LpcfdiBIdIccLcpssLcJBcJsISf)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1833 "BSLCJdcScLJClCJjSjLdCJfislIc)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1834 "CLSiSSsscdI)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1835 "llJiJBJIpfiCIBcCLdLBJjIfcSscLSjjSJd)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1836 "BCLCpppBpjiJIfCpssjIcJpdidiLSdBlpsSlBipIfBB)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1837 "BiIlflllILdpdiCCjcsSLpc)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1838 "dfSdlJfddlSiLIBCJdSSJIpfiijBJIjllBjBslfpCfBdiSBBJJiiclJsl)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1839 "IIlf)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1840 "IIpjpflsScspCBJB)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1841 "jiCSSpLpfdIBLSSlCSLdcLidfSdJdILCSsccdBjJpLsjSjCdCjSIJlIJ)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1842 "ILBCdddBjL)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1843 "jLcIiBCClsBCdBSscffjjsSdIsJL)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1844 "JjsSicsfBdpsLBdJd)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1845 "idpijjiLpSBjsfCdflJsiBSSplspSppBLIlji)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1846 "CCjBfBSijpjdlJdlsfdjiIc)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1847 "JipjspIffSCCJfJSIBisSsBCpLLLLpCJfdCdSiSSccdsIcSSijjcls)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1848 "ssjIJSpl)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1849 "dBillsBBSJppBLslSSiiLfidCsLcffJSSJj)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1850 "lBdpdifdciSBdIjJpfiijIfCildlIfdsCjfdJf)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1851 "CslliILlcBlJjBLJpfLBijilBCjflcdi)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1852 "ssCdBBClsLciJ)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1853 "CLLCcjJiLIBScsplCBJipddllffiCCs)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1854 "cdLsjJSjsSllJjLpSsilc)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1855 "ifCSBCcIjijlccjBijiCICBJffiISdcldccLlCj)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1856 "sCIClClLpBfLLSfiLBSssLcfjBjCSfSSpSlcdfsdLCLJpspS)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1857 "lfCIdsdfBfBiCjdjSSclBpcSfsJCjJLCJIsfciiSfscSc)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1858 "ipiCilfjC)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1859 "BjjSICs)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1860 "SLSpSLLpiCjIBsJ)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1861 "CJlCsIpIsjBsLILB)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1862 "ddicLdISIfjpBiIlscJBIcIJSsLCsllcBIidjLjfplCSIci)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1863 "ILdjiJijClijcLllsCBSC)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1864 "ljLCcfSipLLssJLJSCLpfJdl)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1865 "S)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1866 "fpJBjBjCJjfSJpJjBClJIjjSIJBpSjsIidfS)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1867 "LJBIjcLlBccSLjsidpj)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1868 "IjpSSlBpIsSfBfCCcpfILScLcjCpsllBJldLsIsdsLfLijSp)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1869 "ScpjiCBIIsICdScSSjJipLCi)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1870 "pISJSjLSjiCSCIpc)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1871 "pjBJLcccJdsBscJLijSClLLIddpscdBsBpfiSScICCiBpSLsSccpljd)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1872 "BpCslfSjpIJBiLJpdcdsIffc)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1873 "pBpSIdcsjjBBjfLCpCBpLlicjBSSJClfJcJCLsLdBLCSSBpIddjfdSjfifp)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1874 "sijcLJJfCsIfldJICBlfpSSCpBCjSLJpCJBsf)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1875 "ilpdjcJlfBBpCIflIcicddsIcfIliIpJJJLdfSjsSLdIjJCJfpfSL)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1876 "sLliBlSCJIpLiSjIjCLiCpccd)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1877 "SBlijfSjJBcpJBsLcIpcBBCCfjlBdiLLflCB)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1878 "dljSjjlsiJsfBfILJsSlsLLLSisIfjiLp)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1879 "pLLLicSBCIfdjBCcCdjllLIjcCLCCfSSd)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1880 "dldBcBicIfBSIIBCcSdcjpijdlJdfjSpjIIjlBSdd)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1881 "SJsBSIfdIcBCsjpJpfLdIjipJlCCispiclsfcBBILsBs)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1882 "BdjSIscslcpjsBcsdpipccLfiLSdssjjldi)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1883 "cIlLJcdCfIccppCSCJlJisisBlJjddLScLicccppBdsBfS)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1884 "ISdippJcsjfdfISclBcissIidjddjiIl)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1885 "dsiBflSCICCLBLccJfpSSSjfCiJiSfJIissdjspcCiJIfSiLBdjp)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1886 "BCSis)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1887 "dJscSJ)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1888 "sfliLcdcllpCSLSdlfdSBlBBiLLiCcsBfsCJfCBldlSlcdfidl)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1889 "BiJLJLjdfcllBCii)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1890 "lsBjBsCCLcSipfdpCIJjCLppsLicBjLl)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1891 "cJsjCi)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1892 "ijdjJpCSIpJliJdjlflcLJscSf)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1893 "JLpsicc)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1894 "cCfcscJBdsBcjjsid)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1895 "LBCijIciscSlJsLdCSjpjiICjcICpsjcsBcfcSBSLIsScJLsCf)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1896 "sCcciCLddIsfiCsjdSildILJfisIisjcjIppcjLJCpCBfCcflljspjp)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1897 "BSIsBf)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1898 "fILcicLsiCcdcLBiJSIfBCilcIfcdiCdJCLdcjJsBdCpdCddIJCdLLldLJB)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1899 "SJBfLSBcSsiBJSclifiJfjIIdcllCsslCBSLJc)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1900 "fddfSIcsIpBpBSBBCcCSfccLclBiJslISdJcBjjpfpdcdclICJlifd)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1901 "CdcscpSC)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1902 "IlBLBlcCdjIIISIpCLBCISLfpijiLflCCcIScIcJLcfSSffpBsCiCCCCps)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1903 "cSLdIBcipJissjiSdJBIjjC)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1904 "ljSiis)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1905 "SCddCciSfBlSsLiSfCcilJLjSJIjlj)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1906 "LdIBLSsiJIIcBLSfplBBsJlidpsJiifpCBCdidJSCBBLBcili)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1907 "LCddjjJllSssfjliCLLjsdBclIJBJcpJBCCcpSlIpSldB)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1908 "clBlJjIiplcIcjsfcdBfpSLcIifclCdSJsdCJd)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1909 "liliffBCjiiiCCcjBcCIjdSLJclsiIJsfIfCSBsjfdcIjfffjfspCClSiCI)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1910 "pjcIslLIIssJdBdssLclcllIcSjdBCdLCjll)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1911 "sCLLicLcBilLjLJBLSBJpIpsccjpfIlilfLsscsf)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1912 "jflc)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1913 "IscpJdCcjBlIJIfSillpJBBpsclsiBpldL)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1914 "ifSdsdIIdLBdBBcIdliCIflJjdIfCcILdlccdISsiIciCJccpIJi)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1915 "fISsfJLLCjfL)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1916 "jBLCSLLcclS)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1917 "iIlflSpdljJcCcLlBjLsBCIJJCJddplfJiffspCfj)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1918 "dSpJfflCCjfiCfCjBBfcd)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1919 "sijsBdISLIiIics)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1920 "BSclcBCBBdclcjJlpSsjpJcISijJcjCSSpJfdiCCSflIljSL)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1921 "CcfdfcCsijILf)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1922 "JsfipI)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1923 "CpfpfjcscjpBcpLJLjLdfiBsJLcfcBipBLLiClISljpccflJc)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1924 "dscC)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1925 "fJslLpSCpsJcpJiJlBpSsBjddsfddjiJsBSlICdiSIdfd)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1926 "fLIfIsLClsjSSfjClBLpIiicJILcd)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1927 "dfdJpiCSLSfpjl)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1928 "llBcISBLJBCjBICiLSLlsJfBJCjJcCLBlsLJfsjsSfBIjICL)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1929 "JpLpJLiJslJfjJ)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1930 "dIsiBJpidLcSJJBJlIjLSicssIBSIlsISfpjBs)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1931 "dLjJBffdjLLdIC)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1932 "jjLicfdJjIsdSSilclsfCdLpcsCIBSLssLBfSSiiIpfcBsIJj)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1933 "BscsLLjsIpISCjCIfCBsCCSjJJdBdllipjBlLdsppfifjILpIIcpdfsB)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1934 "IpIscIJCddsLdIJdSfcIsdLcIjpCLfBiJBidIjcdlSpScdBiJSdl)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1935 "iJjSfifIJiijpcBfCIjLjBLIsJlBdpIIcSJCsl)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1936 "fdljddcipBdlSLjlpfllc)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1937 "ccfSSSsliddlcIBcjjfi)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1938 "JcllCiCBpcsjsdppBCcidp)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1939 "IspBfIS)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1940 "BpLIcpCC)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1941 "pBcBjCsjppdSspIjBddjCsLLlclsLfIJd)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1942 "ClLJpCScdJfIisjjJjSfijpjJpdLsScIc)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1943 "dJcffiJdJcllil)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1944 "ISLSJpljSljjdLIBiiBJLsCdJSCCfIlsfCSJsjjfc)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1945 "iBpfJsC)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1946 "JJllSLBffscfpslLIIjlfSSSIjcJJpdjdJcslffSlpSlsCc)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1947 "sfLCLsjlIlccLlBssLBICpScflijCldIcSsBjcsJBBCJLj)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1948 "Si)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1949 "fSjCJIJsdILIdCCdBBpLIcpSSSidIp)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1950 "jpppJSfBBBCcSSLLcilCsBsfpiljpddfsdjSlBiCpsCIjj)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1951 "ijSJiCijppiLcfsCBdiIjCljdpflllpjJ)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1952 "jJBL)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1953 "icJiSsdfSJIdjSjCJsBjlijCssSsLsCsldCBsILljlclIcsi)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1954 "BlcifjJjIBfICdLLcLJcCIBCipcpcSBljijlcIc)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1955 "jdJdjIjCBIBllSjCJpSJJjLBBilSfliIdCcsfpIjilBiJifdCCdB)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1956 "JccfCIIJiiliidfpjLcLIiLSIiCcjffBlc)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1957 "fI)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1958 "BpBCjC)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1959 "SpljllCJ)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1960 "dBJd)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1961 "ciJjJjifdIicJjJssllBjlSfdSSdcsSIcIICcfiLcljssSdcdfcI)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1962 "sICsBpCfSplSjjsIBBiLSBfsJlIiSLfcccIdisdIjf)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1963 "ILCCcCplSflcfciflfldiIcppBBLSfsJIfJfdsIILLJLSLIJpdsiCSLfSScd)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1964 "CjpcsJcpBJdfSflljBsjBBIfIcliflpjjLlSIdCIScjBLcBdsidldiIfjpj)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1965 "lJfjjjCsissppLiCdidiiLdiilldiCpf)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1966 "cdlifJpdfIdjdlBSspscJidfdCjllsSpfIp)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1967 "lCpBsLjljsCdslS)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1968 "sLcIljcIJljJCdISBfBcfJBjJBLpBspCJBISpiBICfCpJLlSddjpsCCBCslJ)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1969 "pBCBfiJifdsjICpilLLicdIlIJIsLlpCISLdjJSS)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1970 "SlLddIILcldJfSlBsSpSssCiIsJ)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1971 "liCsLLJCpJsScpClifIIiCpiCIplJdpLlpliIBffS)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1972 "ClBJsS)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1973 "fJIJBILjcJLiSLflCcfdCSSpjSIJdfJJ)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1974 "LSjdcsSpCsjfCdSsBliBId)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1975 "clpdiCLJfIjIJdLpBdLBiiBdC)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1976 "LClsIIBlSiCjjilJpdIpspJSSIslSpCISIJJ)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1977 "CjsjjIfCLidsIS)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1978 "iscBdSiIlLclcciCLsflpcdJlBdJdJlCCSLfBfJJ)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1979 "pJSI)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1980 "ISILLSpcCBpfLssSdjpLCCdiSippjdjjdfiSljLpSCILcpBCILlIjB)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1981 "CIIcJspiBjciCjCLSLLs)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1982 "IdCpJIlJdfscfSJfpiScldSIjlIfLlfIILBL)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1983 "LJpLiIS)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1984 "BSdSfpLBjpfpdpBCLJjLBljppjcsflJBs)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1985 "plfdCjJdjflCfLJsLfSSdScjSCsjdpfBdSLLjSi)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1986 "IjspjiIjiCJjsBIi)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1987 "pJspjiscLpSIIppcidpiJSBcIsfCdlliIlcldjiLIlllfIc)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1988 "iijIJdcLjlpSpsJ)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1989 "SsdBLiBccdfsiIpddjBsfScBBJCpLfLLclffJllfLJij)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1990 "ijiplIScSfjJLBLlLsdlpcpCBCiBfdJLpIcIScpSSiipjfi)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1991 "fLjipfpIBlfBpcJBiJidjSJJfcsjSiBjcSCpC)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1992 "JpJcCcjpJcJfIcjISBflSfppdCjIljIiSLJscppiJiJCIjLLisfdjd)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1993 "cjIifspjJc)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1994 "fIiCBCjJIjIfSipjdJfdpclJijfCSCjflfSj)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1995 "lBLiBpCidspicfCldpfSBCjjldjf)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1996 "LIiIcilCBijjldicspLlfplIfsBiJBCCJBsCfLBsCSSdcdBl)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1997 "Ss)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1998 "pjsJfspLlfIcsL)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
1999 "pIIIBscJsLfLdcsJSdsplcllCjcilLJdjLSBJpfCdccCBlSJjJppLLcLLC)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2000 "IsjlIdfciBfplcccllCJSfCjpJjlcLsLc)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2001 "LBLjLJlpBspBCLcsfCjIpJIJIssfsdlCJsBifiiLpBS)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2002 "jscicIfLlspjCCCLLJpCIfBSlIliJdiJlfCj)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2003 "piLB)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2004 "jSIspsIfcIjjCCCCpsCiiLcdSifdjjsICiCiIjLpf)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2005 "pLICdiJfcpcdSj)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2006 "ljlldCjjBLcsIscpLSisfdiSjLsSspcCdSjldfcLSsISCcL)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2007 "IiLdLjdSifCcLcjffBsBsBJJCdBLipJBccBSliJSjssiLJdfliCf)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2008 "Jiflfp)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2009 "pLcLccLSL)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2010 "fBjSdpscSplBCjcIJpICjIjICCBlccdscpCd)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2011 "IdCJsLdJdICillsfCCciJfCLJLLIif)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2012 "jjLSfBJCcIcidifBpsfLBsSI)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2013 "fJjfBsfLLsSfSI)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2014 "djiSLpsdidJfscspilBSSBpsCsCiSidLJciIJsIJLiBiSfdlcsSCsSfS)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2015 "pffBJfpIdiICljdpfdsdlBjLLidiLds)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2016 "jlpsJsIfCJjjsLpilfJspiSf)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2017 "BlBsLiLBBJf)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2018 "BfJjLISIpCJSclilddJBJcdSsB)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2019 "CSicCpSLfpCCldlsisLlBlpBLjSpSJCpiiicILS)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2020 "jdLjJLiplpcCBsIICCIIsIjBsdCsJdldfLfIILCC)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2021 "fdpdBpilpCSLsISSpsJIljSpccBlIfldiciJfcISff)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2022 "LcSIldBsIcddfi)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2023 "jCdj)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2024 "LsCjiidpcsBifJdifpiIfccCIIillfBIfBlBiiBLBBBJ)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2025 "dpldLddLcCSliSSilsSSLi)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2026 "ISLpcpjjS)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2027 "iCspLcS)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2028 "i)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2029 "LfCLppsJlcjBjpsdpJ)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2030 "SlldIfpsfBJjpCdlBJCIffldIcBlBliCpcSjffjcpBLljlpiLjBs)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2031 "BJpBjiSdJlJLsdslcSBJcLpLlJJdCB)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2032 "cBdljsjlLJldcjfSscpLjscBdpjClsdldIJcssscfflcL)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2033 "JfScLLjSclILsCBjLCclIfILpJJLIipCSLjsLBipsILJClfJsjLpdLlJd)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2034 "iIJscldsSLjpLBjslSCL)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2035 "fcSiiSSIlIffifSjSfIcfsjIfLcdcCClicflJBlSiipdCSffJc)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2036 "piISsisLdIpScSjdfSCS)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2037 "SdIdLCjCBcCL)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2038 "cjpsJsfJCdCiiSILCfiSsIspCLBfBipciBBLdislBLjjLBdJBc)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2039 "dLSpBjLjfiiCJfpBfBLdCp)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2040 "IlCCLpfIILBJpJl)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2041 "JBijLsipllcCBffpsSpdpdCpssfjsdIlJSpdjflJsSCcslpIS)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2042 "lllSBljB)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2043 "dijclBjjJIBlsdiSLBJcBcBLJldjpfdjfdlLsSIf)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2044 "ScliJijslLjlBlBlBfiJdsfjpdfCiBBLjpdfii)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2045 "jpccfcdcSfLcLBBfCjsiJIsLsLdlCLLfiscpcipfLcjIjBpCSdBCBj)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2046 "IdJlSiLLJdsspdjjisSSpCdjCJsfllcsLIiljLpBpiIccSBLBpcJSc)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2047 "ijCJfJI)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2048 "CJlpjCcJpBl)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2049 "lCfLdLplfpIdlscBBijBcJjlcJCcCdLcClJcIldifJjBCBdlJLcdjJBjdBd)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2050 "sdl)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2051 "slLfLSfifdiiBBpdCidsCfddlfBICCJcfLLjJBLSBjJcjLIfSCJ)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2052 "cfcCpdS)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2053 "isIfLSlfSjsIpLJfisLjJSSLs)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2054 "pdlliIdSpl)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2055 "S)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2056 "Bscd)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2057 "csCdSdfBpppcBJcJIpSdJLfljJIccSdipcdpdBSJsSfsCCJJ)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2058 "LiLSSsSjSScIjpLISpplsSsJppfcSiIJ)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2059 "JipBjdLdfLJLCSilSliIJBidsjijdijssdJjpJjisJsCdjL)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2060 "sicIsCBcjsdJdsijLsJjSLlsJfdcjLJJssJpICSSdjlpds)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2061 "CCSpSilpfCLJLscSpSiijslfBSpLCdcjLcBdspCILBLspCIdJIjsjLLBdC)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2062 "LLBlcLsBlLfIdjICIdjpSIllJpIfpdiICidS)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2063 "jldljiLfCISILSjBIdpfJSciiiJlJjCsScfjSdcpCCBsfLSLsLflcLBlLB)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2064 "jcSiSlCCBCpfIBSlSIfJBl)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2065 "spISBjsdcjJSiIpsfIJpLBccLBBcBBpfsdCjcd)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2066 "SjLLdsClLpsClcSIdSfdiJliSBpLBI)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2067 "diLJ)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2068 "IIfcSCidlpd)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2069 "JBcdlIfpJCpIfLSdLiCIcsSLd)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2070 ")C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2071 "IipLsIIspjJBCSdcSCplBjBBSBpIpslCpcSLdfcfIsBiIJBCsjCdJ)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2072 "BsSddIIlpjBScdJLJJjfICdsiBdLpcScpfifcpfdflidCl)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2073 "JsdpClLSJLJiijssdpJLjccil)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2074 "jllcLdpflBpsLfBCS)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2075 "JcciSlppBBfBBIBsjCLl)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2076 "sdsIf)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2077 "fSdJpCiJCdlJdjclBdjjSfIIs)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2078 "lpClpLJSsIJIJiCfdILppiSJijsccpfsSdplicLSpcfppSSJCLilj)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2079 "fiJJSLfscJlcSLiLjBJBspCjdBLfBClLBSi)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2080 "isSj)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2081 "pslSSIpBcp)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2082 "jcSsjLdLIlJfJJjsCcBdJdfpjsdf)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2083 "CjfSpiSiBLJJCJiBfp)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2084 "CJsfpfjpspddpi)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2085 "BjLIcLBBcBjcfIjIjcSCBlpSSBiBppJpsIjfjlSsIJICCjsfSdBIIfC)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2086 "cdJflpjisdJJIffcdlCCCdsljlcdL)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2087 "SiijCcIIjilsjlBpBLsSLJSc)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2088 "psJICppssjSSsJjBccilIBjjpiBlBSSdlCLJijdJcfJipScliLlSBdpLjcs)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2089 "csfLLicCIL)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2090 "JLsplldpIBppBjflBsdLClCLCsilBIISIpl)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2091 "psLjsd)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2092 "IsdiCffLLsjJIcScSJfl)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2093 "ClSIBdcSSdclCBdsCiipjJLjlcpcISLJISpsfBLLCCJBIIfCcClSSsBjf)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2094 "CjB)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2095 "LIsildpfccsILfIISCdcSJdjSipifcsjicscClCsfBjSlpdjBppfjCps)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2096 "JfSfsLSIcjdsBfLSpIISJIijSJsfjBdl)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2097 "dscCljiLfjcciBfcLjJfpIBplBlcjsiSJBJjSJcSLJIIdjBjlfiliBJ)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2098 "dcsJldICIiBSBfCdBLsCSILpdCCSSJjJlLpdcd)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2099 "dsciB)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2100 "jljsIIJICj)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2101 "jJjCBIfjilSiii)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2102 "SSiBpJslfClSlfBflCBCJdsSBBLsJJBdLLiJlLscjBjL)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2103 "jLJdsdJdpljCiJBifLdfJiIlIispcCillLcpjfJsdBSpSjJB)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2104 "LLBSJsfLsdBclpfpBcjBifsIicjCjcjcIJlsdiflSldBpdBdsJsdBi)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2105 "jppIIsJLjL)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2106 "plJsIJfSlIjssjcBpcJCI)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2107 "CljdJCfSiidiCscJslsplifJJfLJlJSBjiSJcjlScfjLSdJslfLBIflIIJ)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2108 "CCScpSjfsScp)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2109 "BfCidCipIcfClBLBCdJIpBliIBBjds)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2110 "diffIjsBfiJLlJCpCJfjBBIlljL)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2111 "sfJilldCBIcpSfLScCsIdBCdlisBSCsBLBLflLCBcL)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2112 "fcdBiiBSJjIISCjJJIifLCCjpCSlJSLJLdjfCdjcJJBjCLpSIlcClJLj)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2113 "cfljJdSfsjccIffCJLp)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2114 "fjjSiCdjill)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2115 "SLccISIlIsSSlIpppijJlSsjLJp)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2116 "SILSdppCCdffsjppflpdsSlpfdijppBpfJJJifip)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2117 "fliSLdf)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2118 "pdcCJ)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2119 "dIIsdLlisLiJcfddfIsBLciSdCdldCIfjJccIsLjlcJJSJdcpi)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2120 "pCisiSJJipiscsSdipfdCsiBSdcjCijJIlJJdjLBiLspcfJIBifi)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2121 "LCfji)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2122 "IjScsBJfSsclJLiiSfdBJSiLCIcJsCfIIdIlBCCCdlpLJlIpJSLBdsCI)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2123 "ffBJsiijd)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2124 "lJIBCIcJBCJCdpBBJJLlpIJpSiiLcfc)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2125 "isJflSJcSBpdsIplcScIdjLcJdjLddIB)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2126 "LLIcScSipIsJscdcBs)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2127 "plSJLjCdISsipCLfjpjdilLpdjdcsCfj)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2128 "CScsIjfCJsSJIpSsfBSLC)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2129 "LjICJjijLIBJSIdjLJcsSfssIsspScfclpIIfjLBjLCidfcIJJifSisSl)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2130 "dlsJdpBlLiSIpIplLSpsSBfilfSLJcJSCiIlJcisSBj)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2131 "flpf)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2132 "BLssilJSjsBSJJpddJjpSJsBBIBLsLpfiBSdijIjfjpJLccSjjCIBsJB)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2133 "JcJLjjsJcjcdCJIcBlJfCsSjdB)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2134 "LCCIidsBJlLjICCcfSliiCpdJiCIICpjjpJs)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2135 "IjSsiclCjfBcSjdplSJJLBipLsSdLfICCBB)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2136 "fLcpdcjBlIdjjjCIlC)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2137 "pJCCdJddldjSdLSCIScpIjJppcBffl)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2138 "dLpIlIjfLdlfSSBcfJBLBLCIsdf)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2139 "pIddcpIsspSCllldLJdISSpIIB)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2140 "lSBsdclCBBsicSlJflcIJLSdSsJfsllicIdsIf)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2141 "sijlsdJJ)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2142 "jjSfpBcSiJjJciCppjiSscssliidpLIldilIB)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2143 "jlSfpccJpJsLidBBsBjfsJcBBdjsIdiBlCdlcJICCpdlsflsdljCJdSjisIL)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2144 "sjjSjlsCLpLIlpdJB)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2145 "slLcCfCs)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2146 "dil)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2147 "csICfI)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2148 "LpBCSdjLsfJLLsjSciSCClSijcCdLlpJC)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2149 "SpppdLIiLcdpdCfJfJddLCjjfSBffdpfdIdfcd)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2150 "JscICBiLIJssBdBJJCcpCCilsSsjdddJSsiLfcfccLBJLdcCSpIsIJsj)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2151 "CiscBcBsdBiplSlLcBBspjpJlBcLipldLCCfLpsSBdsf)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2152 "jlBIfLJLijCsccpICJfBdLdpJlSBfCdBLSpjCilIJBB)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2153 "IClpJCBCSd)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2154 "pdSpLJC)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2155 "sJljBjpJlisljfCBClSpLcBJCJfCppjiIj)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2156 "dspBccfls)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2157 "BflSpfLSIpdid)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2158 "ffLCLdBdfpIlLlLSsclsSJLLsifICBjjJfpLIjdfpdSsjILdjlBjL)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2159 "JCfCcfCCdlCfliBccICSIL)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2160 "BIlLslCcfSjCIjIfdiddScIsJCJdlCBlilsjsdfBflJjcIlc)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2161 "IdldIicJscidjlScfLlddCBlBpJf)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2162 "sffllISBfcpBjCpjlBIBcdifpjdfIsLiCcCLlLLSlsIcsscjB)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2163 "LisspJccSJspCfcIjiSLIpJdflCdJcfljslBipLdSLcpJ)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2164 "cBCpflpIJffSCCIJJLjBlcSclCisjlc)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2165 "iIIlBISSJLcJBlCspjjiiCCcipscdlClJCiLijIiJilCSpLiljsfsscJ)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2166 "jppBILCIJcBIlSdBfLjBsfclcdsfIsJdcCILdC)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2167 "cLpcJdddijcpldIJSLIpsBclJJdJdiSdipldICBcBICJJJBJSi)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2168 "IcIcdJBjCpJlLIclsJlfjJcpliciCJLpBlciBCBilBpjSsiBiCSCIIS)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2169 "sIsBlpcCIcpifjCiCCSfsLBCJiljLSJijsLffS)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2170 "CLIcSSLJjpfidCJsISJfJCC)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2171 "ppJLpsfdSjlSLclIBSfslCjIdjJjJpipjcCcdiIsdBLpcldBlfjlsddc)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2172 "LsLppSBcBjiIjsLLBlfBdfpp)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2173 "jpifSjsJiBcdCpCiBiLCI)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2174 "IJlllSJflpdJil)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2175 "cdliScpfcijJBipILJB)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2176 "iBSfdSIJIjCd)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2177 "cdcSlLfpBciscJLspCJLiLBLILLILjciBpcfd)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2178 "jJfCfljcJS)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2179 "ipIicSilldsLpfliLIpf)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2180 "pcJBcBBjJICCISjpIipSLJsfJI)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2181 "jIspIdlpCsI)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2182 "CpI)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2183 "LjdiIiljjiSjSJjpsfSCSccfJdLcsSjB)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2184 "fcILpiBIIcCpSBJBccpBsCcsjdclpIJfJsfclIfScCBlJSlfClIscdjIjf)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2185 "cLiCcifiSBlppCddjSllfdsfIdsiCj)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2186 "fjdjdlpJIiL)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2187 "JjdfsCSsJLJcJfLssijIcBJ)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2188 "cpBdpjdfssJJcfi)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2189 "IcLsI)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2190 "SfCJLfBppcBiLSjiSiLSJcISfffpssfJdldCCsSddcCIcsi)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2191 "ppsdlfjsCjJCslsdcpCdicBiiSfSlscBdjldicilipjICCpIcfjf)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2192 "SBfdjJSfcBspJdlfICdISC)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2193 "iSICBIjIfLSlsdBCS)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2194 "ddLSdBJldpiLdpdIfldLdSccILlSlcljBCSBLpSppJdccSLScpilCfisslf)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2195 "sLBCSfSifsCdCfcfjICcslBifJccLsfsLBSicsCcSCslSfdJplLpCdliLi)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2196 "cLffLSsLjcIspLjlldiCiBpLjCdiCJdiLCssLSBdfjjJBiIJCiccdII)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2197 "CBpcBjLBCJJpdIIfclJddjsScsIldpBB)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2198 "SBj)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2199 "CsjdJifffclfCLjjJBscLSJJscpcdLfSdJiBCpJSBLIdLBfC)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2200 "BclB)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2201 "dsiJsdBjLcsdSjIJiCjcCBBILlCjBSddLCfBisJssIIdBBs)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2202 "jBSsSB)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2203 "LLfLBdLsfppdCCJjj)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2204 "iBsfJIJfCLsIIiiLcdcflpjppjjdplCBCjfBLpjfsiILLIfCIicfsBIcIIfs)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2205 "JllcjdpiCLfiCciSdpilIsidcjdpJfLcs)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2206 "BSfCJlSsjfsCBLsLBBlIBjfJcfIpdidjCdpCJCjfSBpsIdLIcf)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2207 "ifSLBdSBsBiCJsSCcJpifJsssCfBfdJBscBfdcBllfs)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2208 "BpiIJcicCfdCc)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2209 "CpcdIscIjSClBIjJpsijsfCjJIlCljCfIdiLsddcSSLlCJSI)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2210 "cIsldpIfcCJclIiCpclLfCfpijidSjicSsBJjSpiC)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2211 "CfCBlsIdfBCIpjfSlLlLdsCdclilpdsLi)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2212 "IClJJfSfpS)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2213 "ssclIILIJjIcJssff)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2214 "fjLpfi)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2215 "lIffdlffpjfJfcdiiplIIjBijJfcslf)L",
509
f3d44195dbdf callback_suite:
Tassilo Philipp
parents: 505
diff changeset
2216 ")J",
528
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2217 "SScCCdjCpsJSBplLSpfJlfClicfIIBJCficpJdLLj)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2218 "llIjBcdclJp)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2219 "if)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2220 "pCjISJIsJJCpCBC)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2221 "sSlSIpppJpBJcdiBClsCJfdCfdBLdSLBlpLJBpCJdccclIpSs)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2222 "BcsLLCd)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2223 "jLfjBSpjJIpIplCSBll)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2224 "IfL)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2225 "CsSScjCJjcBBcBipjCCfBpcclsiBsldCjSfd)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2226 "psflfLsBp)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2227 "ILf)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2228 "IlfCsjIpJddcLjLBlfScCJiBclBLsSj)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2229 "BifsJ)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2230 "dfSjLiLIcddpSlSdddpIslLdLLfLfSCjCjBJpSIIcdLsCfpjfBdsd)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2231 "LfJlcjsIijjiLciBCcpCcJJBlIBSdBdjddSpfpJJiIfCssS)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2232 "SldIBdJslJflLisLpBJ)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2233 "cclBiScJpCpipfSpfLLBsdLSlCsLli)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2234 "BCflCdppsjJILcCcjfsiJfB)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2235 "ili)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2236 "BpfILicJiLfJICisijiClijLJsS)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2237 "jipliSCBfsjjjIiipcjjLsSJccCLlcidspplCjSlBBiddCIJCILjCisppjlS)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2238 "flLBf)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2239 "SpSpjiLfscljlLjsfilij)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2240 "ipjBsfJBdcslldSclclIBicfsBSdJjCllCf)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2241 "JBISCppjidCLBpSJSdLSCLBpLjlfiiiJJJfCccsjlficIijJjIcIlSipf)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2242 "JdiJIfsLLjsJsdCjSpicCjSSsSSJlJfJ)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2243 "BBBiildpfciBJfflCppjdlpIsCSdIlcsBiScsSSfiCSJdcJsijlcicC)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2244 "ISfjCfpfcsLcssBCccJsCslJpjBljjpcsdpJicBdjICfCScflsCjllSJcisB)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2245 "pSiiiIdliSillLJIpjdcssl)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2246 "sJBSBjpfIIC)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2247 ")f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2248 "pcfLBpicClBcfBlpdJJlSlpfpllcjIjLCSlIjldicJpSLJBLlBcSJdj)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2249 "fsLSsJispjffBILLjsJpCiC)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2250 "JccLisfdcjcpL)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2251 "lBldjBLJjldfCccBcJLIcdBidii)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2252 "iLCdcdCpCldlJIdjCspjdlppclLccCJIBcfpCdBdC)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2253 "SCIIl)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2254 "CfcIBLlldCdljfCBj)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2255 ")L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2256 "ScI)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2257 "djSJJiSidSLciLfLLddsfiSjpcCfSLpBLl)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2258 "ilfCSScppisclIlJ)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2259 "fpBIfLfdIdjlLjdjjdCJIJJCisSpdfcpLSCdSdcfSi)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2260 "BJlLllLjfSClpcdcpdlpSdciJLCIsifCssdSJsLlIC)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2261 "cdCjLCJdpCdcsISIilfifipiJcidLjJIiI)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2262 ")s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2263 "pLfLBCpIdidjciCjcslfCJBi)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2264 "BfJfBspSCLjIpfJCcCdIpc)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2265 "SCSJflLpIJfJjBIlsdfSlISpsfCc)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2266 "iJpCilIJBlslSjcfsldIjJppCJlpIddBisILfdjjicidCiLSBISjjfS)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2267 "fdldCiIJdIlLjjJJdsSsiBCfpSdlpJidLBI)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2268 "JCJcjfsicpLdsIJJBIdjCcdLSspcsJdBdjcIjlBIBjBfSCLsLJpClpiCcSii)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2269 "IcjLLljdfIiJjfjBccccLdslsjscddiICCIcBjBISfCiBjSdjpICdpd)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2270 "CICSCpLlCifdljCSlJi)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2271 "siILldLScfljpfLisJcLcISjcSlssSlBIJdicfJ)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2272 "cJlCIJSJcfljpcLcCLpLsipIsiSifSsIcSscIBIspJJsICdcddjl)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2273 "BjBSLiLIfjBfIdIl)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2274 "dJCjLdilCscilsBIf)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2275 "jpjilp)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2276 "CfLcjLLIilJpSBjfdJfjs)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2277 "SIId)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2278 "CfIiJCJfdfBIcSdjlpSJCi)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2279 "IjBfSLCBdcpLIccfidlpciLJfpdisLdpcpllCcjJS)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2280 "jSjdIsc)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2281 "pppjLdsiiJijBppLIjfLdjLsSCJiJlLcBjJJfLBLfBL)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2282 "pifsCcpSIBLiIIcjJCJflCJIjjfdfCCplsjBclp)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2283 "iIjsBcBicjliipdCllICcCCCCjIfBIpSSLdCc)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2284 "iccJfBBSSdjSfjjCidSIcLIpdCifpJSCcCplCcJjJBcSSsLSJisijCil)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2285 "iid)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2286 "ddIB)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2287 "diiLSIBcCjJC)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2288 "llpsdllpCIpLl)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2289 "LfLIBiBdjS)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2290 ")d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2291 "JSJj)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2292 "CsBjJSdfjlIflj)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2293 "flIpfjILjJcciJpdLBdiSLdl)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2294 "CpiplfdSjJjcjBlpSCIJsIcidBlplScslBiSsfjBid)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2295 "pjliSCCpcLcI)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2296 "iSIcJdBffSpIdpfCdfIdLLJiisJjsClIpBS)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2297 "cISCsJdsidpjJICIIBfplclBlplJspllsddSCiLdIdsSlpjjsfsfl)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2298 "ScfijClscifpILJSBcJiipcsBpsdfifIcpcpLJl)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2299 "fLJipcSlfcCfCJfjfiLLlcfdcpJCIfB)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2300 "JjCdCddcjJJLSISjfsCBsSlCpjsfiSpJfLcSLjBLjSjSJJ)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2301 "SpCliBiJ)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2302 "BpsdfclfiJfdSSBCjIIlpiBIpSdIdfdBBSfff)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2303 "jIJJJLLSLpCBSBpSsBfJIfBBBdsiLsidSijLisp)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2304 "cijpCS)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2305 "iSid)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2306 "IiJIJfdffsJs)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2307 "pLiiLCjlcpJllLiLdsJBJCIcjBBLBd)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2308 "IdLpsSjjlCIjdcJcfpLLLICiIlICSfcdBJIpIIsII)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2309 "plsCjsLpfJIIlppCcLijcs)f",
509
f3d44195dbdf callback_suite:
Tassilo Philipp
parents: 505
diff changeset
2310 "p)J",
528
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2311 "ffjijdidJliJdcsjIlCiJSBppijjJIl)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2312 "JjjSIfsJfSiIslsJBJSISjd)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2313 "LSCLBLjdsBBjiijjBLsLICCLllJCijpCBcIJidfBiSfddClJSdJLSjipCLji)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2314 "ddSJspJLplIiidIsIcff)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2315 "jcdBpdssJiScjdLCLJJSILIf)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2316 "CsICpij)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2317 "sldIIjJIfBfLlsiJC)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2318 "fsBfBJjJsIjiisJIfLSlcBpIdBLJJfslBCclcfidsdjcIS)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2319 "iBJiBLJdsdjSddJJiljpsjJpIcslLfjscddCiBCfJlIBdjiIlcsfdl)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2320 "ijBsfLjpCcJpSdjScCLiJBlcCpJBSIjflLIcSCddjdScBJicjjd)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2321 "slscpSipJiIJdslSpIfcpIislBciSlCdBcBjJcidBcLs)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2322 "SfdISisSpsLdBcJBfsSlSfIffcIIIjjdjsfIdpJlpcpLcSpcicSjBLccsCLS)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2323 "djsiCcBCjLflJspflcSjjdBsLcf)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2324 "psficJpCBjcdsBCIJLLLIIILIl)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2325 "JLIcfCjCpfBfcCjSBpidLlILiisfiBfcIifcjdJSi)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2326 "sScsifJCfjLSfpljjSccpLpIlijfddsJSijdjplBspBsillisISccCCcj)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2327 "IBSSdppBLsBfCLjLdJSfScSsBpJsBfSjijcBc)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2328 "LSSplBIdcILSsssl)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2329 "jBdjcJCljLC)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2330 "jlCsfjsJLjjCLJLBSBjBdfLlSCCsCCdCfpipIlspjIsJ)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2331 "IIfJcCdcCBdsSSIBCLs)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2332 "JpfLcSfisSCjBdcCBSBSlCjSLCfLISdsIdJjppSspcCljCIjBi)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2333 "jLBcLsLsjJljBdlJJcSLplBdCJJIcsidsJSLilSdsSlisJjllilcjIIid)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2334 "pLcdciCBipIJcpLSdBIppfjSdcfSBp)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2335 "liJjscsjBSJfciLsJCBI)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2336 "lClCICiiBjjJsspCISsipLpjBssisBijjBiIB)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2337 "cIfIiBfIjlSpdpJjsfcdCjB)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2338 "fJpSCIcBBCCjsCfI)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2339 "jjJfcSCIlcid)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2340 "ICBsCS)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2341 "JicCfdslCIccsfLldICSSdfpLfIIiILJCpLiIJBILLifJfjcJccI)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2342 "BSSJBIILidpsBJLjCJJBdISsIfcIfpLisIcjfjsfdBfsJIIiLJSdsiCs)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2343 "djiCcCljSIdfcL)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2344 "CBSBpslCjlpdLBijdISSjppIfiLBjICI)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2345 "dLcfCppflJLJfCsIlsjcBsfi)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2346 "sslcBsdIBfJdlfJflLdCcsppSJJSljccjslIpp)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2347 "lcdfSpCLLssJipljffscpCcdIBpLfs)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2348 "dLlfSIdSpfiSifBfCpCcjffipSppJsiJLicIBsJldJldBfSddBppdL)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2349 "ljCififsfciLJdjBfJIIjLLjJjsCcdjpJiiilicBjlfldllpdScspCJlL)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2350 "lcidIpjpicLl)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2351 "CiIIIpjCJBLdiIpccSjifSslflSIlcsIldlsjBCJIlpj)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2352 "JSfdjLSSdcjLjpcdSSsipidBIjccc)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2353 "cdSljIfJJBcfCjlLLsfpICfpSSfpLCcSJBjBcsd)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2354 "pfjpcBJldpSpBISCjcBdCCfBcjJfCfcJcljsJjSSIpSLBdlLsfBjjClsisLC)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2355 "sJdpBsjpcllIIjdBiCJBdsLfiBsifdJcJSspllCscJpcdJdJBps)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2356 "sdJfclScdSSLpjJspJLSLdSiLBlSfdsSIjIBLSBIIpSJdlLS)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2357 "iIIdIdcBppCJClIpCIlCcSJjJi)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2358 "fLccII)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2359 "CSSfSCsLfci)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2360 "JplpidClBfcfSfsIdIiiJBCIcsjLcjpCiIdICisJClfJdicjs)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2361 "LdsjfsJlJfBpsfjcBJiScBJJifsBBLcffijJiSSsjcfscjpSp)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2362 "JfSICLssLIlldfissCcfpJCicLjpLsd)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2363 "SllLJjCJsJCiSflifdBfICfLcLisLICIflcjB)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2364 "BjppBldSJJcccLdslSJIJLSsjd)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2365 "jBlJiddilifjBppdJl)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2366 "BpjSJjLSBiJJfJCBICLCSCLlsiiLjisfsLjSlfdCJcIssldSlCBBd)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2367 "scsSSiBfsiSilLCcfsssfIJjICIjJ)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2368 "f)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2369 "BcpdpJispcfljjJifdIBjLlJLfiSSpiJLB)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2370 "CSILBfpdplCiljljiBcpCLCfILiCsdilSJIj)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2371 "SJIcjsIJiBSLssSjjdscSiSCBfBcfcdfpjffdcSBjL)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2372 "IdCjIsSIflBsjCpdsBjCdISflijcfsSBBBJjJffcSscdlLiJLB)p",
505
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
2373 ")I",
528
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2374 "ildddJcCSjBjLJpJJLipLsLJBBICffddpcijSdsCliLSSILpcffJsSc)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2375 "CISdJSccpdsIjpLLJjIIpclBpLCpCLSLLppsdjjCjici)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2376 "CdifcfcSLB)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2377 "cLSJpIlpfccdBfClfLBLlLdJjIBICsC)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2378 "iiBIdsiBjCcCJJCfdijSlB)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2379 "sILSiLcficlllCf)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2380 "jJlljJIiiSjcLldfcLsSdpscBBdSBLLiCJjsfdspjpBsBBlljsCjjs)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2381 "cddpcBj)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2382 "pdBCdijJIIBljiCdscipLfllLlJlBCLsBClpCJsBIlcSiSjcBdScIicJcl)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2383 "BJdSCjdBLpfcSCcL)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2384 "JlLlSlLlISCCpidisLiJij)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2385 "slsisslJsdcppifSliipIf)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2386 "sSisjJspfpslBpLIJiIC)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2387 "ssdjSICBfpdSBcdIddppJSIcJSj)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2388 "jJBIpjCddfffJSdfIdiSpjjIsLLdCJClBscJid)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2389 "fsJBCjjdBIlcijdfpfcSsjfdBIiSpc)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2390 "lJsILcsIJlslBcSjscJBpflSSlCjpBpclJLLplBpd)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2391 "IJidpllpLsBIJBLpjicdIBJJslJSfsjfIBlJjSIIldSIlfl)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2392 "SLi)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2393 "BBclBiCcSp)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2394 "L)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2395 "CJjlILsfsjpSSJJifdlcfJBlIdJC)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2396 "CCiffdiJfsjCBBdLicCJicISLJdsCdcsLSSBjIfiSdLSjBcClL)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2397 "BCpiSIcBsBiccBcppcBcpcSfiISBCjfiIidfclBdjsBS)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2398 "splSscdLcSdfLCjISpJsBfiSBcIpC)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2399 ")j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2400 "fiIsdIpfIpBcjfpfLCdlJ)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2401 "CIcsICiJljIfIIcJCjifsJfiIjlpSLslildJLLiscLsffdfIpBLddCfCClj)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2402 "dcdIIfCcjp)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2403 "jJciJiLl)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2404 "SCBfllBisIlfcJpLlJJJdcIBjsfcLBsLlLfJlpCfidSsLl)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2405 "L)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2406 "cjifcSdLSSCCiddfJpLjjiCLBJcIBliBBBjJIjBciS)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2407 "jlJjslpjlIjiCdlJBLjSJLCSpCJBLIpJSjJJLJlppdJcBLJLppBJpLsBJi)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2408 "BiLJJJdJfjcILjIJsiLLdiSlpliclcLlldcp)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2409 "SJBCCBBiIppSdCffjLSjspsiicBjiddIScccClcCSllSpScSdBBIBlCl)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2410 "pCScJIpcdSSfJCdpdJIIJBpiidCslpfSJClcjLScfIdfCCSB)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2411 "c)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2412 "sLisdiIjdlsCfpSCIcpCBLpc)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2413 "ss)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2414 "sBiSIpdsSdpsCcCdipJSSJdffppJpCSICJiLBdsiLfCJSBdi)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2415 "cJfpCsIsJlcJICLicLdfsIJLjfdijdLCSpjidjJfLpCcLdISccf)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2416 "dcSBBsfddILsiLSIcjpjScLCIffc)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2417 "ilJsdlCdsIIfdL)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2418 "icLisIiBCsjBsdcfllssslLipc)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2419 "CiijJJpSdBpBJfJiiiLLIidJpjii)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2420 "LSLdpsSJJccBCcLcLBIBpIflidjsjpLLSdpcspljSjIICSsIfiSiBllL)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2421 "CSSjpLjLjlSLjLliscSfsjpBJIjdClLlpjisciCsClffSfJcSj)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2422 "sLLIiccBBcCCBCfBjSBl)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2423 "BljsIpdsjlldjJlJdfIccdjlipfdjidfsidlI)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2424 "LSfdisLdidscisCfSBJdSdlLLCIpIfsJBpJJddIJjCCfBiJflSIsj)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2425 "JISJSSJpjsplLscfSCpdBSdsjlBcjLJIdJifpBSsLsijLJfSllijpcfdS)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2426 "dsSCdcLspCjSssidllfifJldSfipscBB)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2427 "cBijCdljjSdsiJjLpJsCjBspSdjfJBppJfJSsidS)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2428 "pICppcsSCillLjcJILdfssJJBcpfJJSLsi)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2429 "iSd)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2430 "jJlBfBpdSSJLldcjJcllLpjlcCIlJLiijSlLlBSBLCCiIIjpICcjjBsS)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2431 "iJplSIBjLJBJiS)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2432 "ssfcSdlcSiliffffpJsSiCppddLCifpidiLLBC)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2433 "sddBLjdISBCSLIjjLJfSpJCSjBBdlSdBIISflpjiILfssLjdisSpJfLsplpC)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2434 "BscsBJBdfIcLSdsJ)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2435 "LJJcBlsLccjfcIILfLSs)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2436 "IscdBdfisclCLIsJiJiJiSSJIBciSpSSS)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2437 "fpiLlliiCdBifLisILcBpcjdlLj)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2438 "BLidLjfcicSJJLlciCf)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2439 "cjSiIdipfLLBBSBdCJcCdjfiSBBLiCsjJfBCCSCfpJBdipsdIIfjiCJ)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2440 "lBSiSJdcflCddlJdISIcliCiCJficfCBfSdcCsBSpJIJBsiLjJICCdCIsLB)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2441 "ISdSsjcCCLflIdJpsppsBBBlJJciljSSIpiifJjBlJdiSfssiBcCppBjI)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2442 "fifc)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2443 "ssissJfdspilLifSCjBLfjiCddpJs)S",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2444 "lIfsLJBIJjBSJfs)p",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2445 "siidLdILcJlJcLBlLjsBjCIjsJSIi)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2446 "slSJfSLSpdjsiCCjSLcIdLBidpssJCBsBdiBCdfCLiBJBIjiLJfiISLs)I",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2447 "IcSlipcjcJLILiILicLccBsipjdldd)B",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2448 "jjSiiIjBfiBciLSscBcdlCjc)s",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2449 "SdSLiIiCSpSBplIBcpcJflisjJSSpSCciLjBILlJcdLjSpsLpCpp)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2450 "JLlLllicpl)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2451 "sdSljsdBfLjSCcsISJScjcJJSLliiJpCIldJsBfSdccJ)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2452 "pSpJBslJpp)C",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2453 "dlIpjBdBCpci)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2454 "JCpjlCLSsCJJlLdJsidic)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2455 "icCiJjjfScpCjppBlBclsJdJdIpIIjdjljBIidJlsSLjBIlJjCip)L",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2456 "iplsLScicld)l",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2457 "icCIcSJpILcBjIs)J",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2458 "lJCcIsdBlpddLLdCcJdffdB)j",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2459 "ipcIciiJlBfSIcpiddjIJcdclcjJJIjlBjBsfJCjpIBiLcLLiiScBcI)v",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2460 "IscSdLSCddLJs)f",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2461 "CSSdCslcCClJiBfBBfCJLcplffjijBijipSdsjsCdLJiJJjiJJl)d",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2462 "IdsJffjJlJdICpSIfijICIIlJdflppSflSSJCCcL)c",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2463 "BfddLBdslpC)i",
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2464 "SjsJJILLJddldcSliCBcIlcsCJicCCccCcBplLBIsiiBldcCSIIppBj)B",
505
049e04af13c8 test/callback_suite:
Tassilo Philipp
parents:
diff changeset
2465 };
528
e56241bba0f5 - test/callback_suite: reduce number of args, as it uses macros in generated cases.h and some platforms' preprocessor cannot handle that many args
Tassilo Philipp
parents: 513
diff changeset
2466 int G_maxargs = 60;