Lines Matching refs:vl
27 unsigned long vl, rl;
86 vl = 1;
87 if ((rl = asocaslong(&vl, 1, 2)) != 1)
89 else if (vl != 2)
90 terror("asocaslong value failed -- expected %d, got %ld", 2, vl);
91 else if ((rl = asocaslong(&vl, 1, 3)) != 2)
93 else if (vl != 2)
94 terror("asocaslong value failed -- expected %d, got %ld", 2, vl);
95 if ((rl = asoinclong(&vl)) != 2)
97 else if (vl != 3)
98 terror("asoinclong value failed -- expected %d, got %ld", 3, vl);
99 if ((rl = asodeclong(&vl)) != 3)
101 else if (vl != 2)
102 terror("asodeclong value failed -- expected %d, got %ld", 2, vl);