Lines Matching defs:count
93 int count = 0;
97 count += deInBounds32(i, 0, 1000) ? 1 : 0;
98 count += deInBounds32(i, 0, 500) ? 1 : 0;
99 count += deInBounds32(i, 0, 250) ? 1 : 0;
101 DE_TEST_ASSERT(found == (count > 0));
102 DE_TEST_ASSERT(count == gotCount);
113 int count = 0;
117 count += deInBounds32(i, 0, 500) ? 1 : 0;
118 count += deInBounds32(i, 0, 250) ? 1 : 0;
120 DE_TEST_ASSERT(found == (count > 0));
121 DE_TEST_ASSERT(count == gotCount);
134 int count = 0;
138 count += deInBounds32(i, 250, 500) ? 1 : 0;
139 count += deInBounds32(i, 750, 1000) ? 3 : 0;
141 DE_TEST_ASSERT(found == (count > 0));
142 DE_TEST_ASSERT(gotCount == count);