Lines Matching defs:uresult
88 Uint64 uresult;
126 uresult = SDLTest_RandomUint64();
158 Uint64 uresult;
165 uresult = (Uint64)SDLTest_RandomUint8BoundaryValue(10, 10, SDL_TRUE);
168 uresult == 10,
169 "Validate result value for parameters (10,10,SDL_TRUE); expected: 10, got: %lld", uresult);
172 uresult = (Uint64)SDLTest_RandomUint8BoundaryValue(10, 11, SDL_TRUE);
175 uresult == 10 || uresult == 11,
176 "Validate result value for parameters (10,11,SDL_TRUE); expected: 10|11, got: %lld", uresult);
179 uresult = (Uint64)SDLTest_RandomUint8BoundaryValue(10, 12, SDL_TRUE);
182 uresult == 10 || uresult == 11 || uresult == 12,
183 "Validate result value for parameters (10,12,SDL_TRUE); expected: 10|11|12, got: %lld", uresult);
186 uresult = (Uint64)SDLTest_RandomUint8BoundaryValue(10, 13, SDL_TRUE);
189 uresult == 10 || uresult == 11 || uresult == 12 || uresult == 13,
190 "Validate result value for parameters (10,13,SDL_TRUE); expected: 10|11|12|13, got: %lld", uresult);
193 uresult = (Uint64)SDLTest_RandomUint8BoundaryValue(10, 20, SDL_TRUE);
196 uresult == 10 || uresult == 11 || uresult == 19 || uresult == 20,
197 "Validate result value for parameters (10,20,SDL_TRUE); expected: 10|11|19|20, got: %lld", uresult);
200 uresult = (Uint64)SDLTest_RandomUint8BoundaryValue(20, 10, SDL_TRUE);
203 uresult == 10 || uresult == 11 || uresult == 19 || uresult == 20,
204 "Validate result value for parameters (20,10,SDL_TRUE); expected: 10|11|19|20, got: %lld", uresult);
207 uresult = (Uint64)SDLTest_RandomUint8BoundaryValue(1, 20, SDL_FALSE);
210 uresult == 0 || uresult == 21,
211 "Validate result value for parameters (1,20,SDL_FALSE); expected: 0|21, got: %lld", uresult);
214 uresult = (Uint64)SDLTest_RandomUint8BoundaryValue(0, 99, SDL_FALSE);
217 uresult == 100,
218 "Validate result value for parameters (0,99,SDL_FALSE); expected: 100, got: %lld", uresult);
221 uresult = (Uint64)SDLTest_RandomUint8BoundaryValue(1, 255, SDL_FALSE);
224 uresult == 0,
225 "Validate result value for parameters (1,255,SDL_FALSE); expected: 0, got: %lld", uresult);
231 uresult = (Uint64)SDLTest_RandomUint8BoundaryValue(0, 254, SDL_FALSE);
234 uresult == 0xff,
235 "Validate result value for parameters (0,254,SDL_FALSE); expected: 0xff, got: %lld", uresult);
241 uresult = (Uint64)SDLTest_RandomUint8BoundaryValue(0, 255, SDL_FALSE);
244 uresult == 0,
245 "Validate result value for parameters(0,255,SDL_FALSE); expected: 0, got: %lld", uresult);
268 Uint64 uresult;
275 uresult = (Uint64)SDLTest_RandomUint16BoundaryValue(10, 10, SDL_TRUE);
278 uresult == 10,
279 "Validate result value for parameters (10,10,SDL_TRUE); expected: 10, got: %lld", uresult);
282 uresult = (Uint64)SDLTest_RandomUint16BoundaryValue(10, 11, SDL_TRUE);
285 uresult == 10 || uresult == 11,
286 "Validate result value for parameters (10,11,SDL_TRUE); expected: 10|11, got: %lld", uresult);
289 uresult = (Uint64)SDLTest_RandomUint16BoundaryValue(10, 12, SDL_TRUE);
292 uresult == 10 || uresult == 11 || uresult == 12,
293 "Validate result value for parameters (10,12,SDL_TRUE); expected: 10|11|12, got: %lld", uresult);
296 uresult = (Uint64)SDLTest_RandomUint16BoundaryValue(10, 13, SDL_TRUE);
299 uresult == 10 || uresult == 11 || uresult == 12 || uresult == 13,
300 "Validate result value for parameters (10,13,SDL_TRUE); expected: 10|11|12|13, got: %lld", uresult);
303 uresult = (Uint64)SDLTest_RandomUint16BoundaryValue(10, 20, SDL_TRUE);
306 uresult == 10 || uresult == 11 || uresult == 19 || uresult == 20,
307 "Validate result value for parameters (10,20,SDL_TRUE); expected: 10|11|19|20, got: %lld", uresult);
310 uresult = (Uint64)SDLTest_RandomUint16BoundaryValue(20, 10, SDL_TRUE);
313 uresult == 10 || uresult == 11 || uresult == 19 || uresult == 20,
314 "Validate result value for parameters (20,10,SDL_TRUE); expected: 10|11|19|20, got: %lld", uresult);
317 uresult = (Uint64)SDLTest_RandomUint16BoundaryValue(1, 20, SDL_FALSE);
320 uresult == 0 || uresult == 21,
321 "Validate result value for parameters (1,20,SDL_FALSE); expected: 0|21, got: %lld", uresult);
324 uresult = (Uint64)SDLTest_RandomUint16BoundaryValue(0, 99, SDL_FALSE);
327 uresult == 100,
328 "Validate result value for parameters (0,99,SDL_FALSE); expected: 100, got: %lld", uresult);
331 uresult = (Uint64)SDLTest_RandomUint16BoundaryValue(1, 0xffff, SDL_FALSE);
334 uresult == 0,
335 "Validate result value for parameters (1,0xffff,SDL_FALSE); expected: 0, got: %lld", uresult);
341 uresult = (Uint64)SDLTest_RandomUint16BoundaryValue(0, 0xfffe, SDL_FALSE);
344 uresult == 0xffff,
345 "Validate result value for parameters (0,0xfffe,SDL_FALSE); expected: 0xffff, got: %lld", uresult);
351 uresult = (Uint64)SDLTest_RandomUint16BoundaryValue(0, 0xffff, SDL_FALSE);
354 uresult == 0,
355 "Validate result value for parameters(0,0xffff,SDL_FALSE); expected: 0, got: %lld", uresult);
378 Uint64 uresult;
385 uresult = (Uint64)SDLTest_RandomUint32BoundaryValue(10, 10, SDL_TRUE);
388 uresult == 10,
389 "Validate result value for parameters (10,10,SDL_TRUE); expected: 10, got: %lld", uresult);
392 uresult = (Uint64)SDLTest_RandomUint32BoundaryValue(10, 11, SDL_TRUE);
395 uresult == 10 || uresult == 11,
396 uresult);
399 uresult = (Uint64)SDLTest_RandomUint32BoundaryValue(10, 12, SDL_TRUE);
402 uresult == 10 || uresult == 11 || uresult == 12,
403 "Validate result value for parameters (10,12,SDL_TRUE); expected: 10|11|12, got: %lld", uresult);
406 uresult = (Uint64)SDLTest_RandomUint32BoundaryValue(10, 13, SDL_TRUE);
409 uresult == 10 || uresult == 11 || uresult == 12 || uresult == 13,
410 "Validate result value for parameters (10,13,SDL_TRUE); expected: 10|11|12|13, got: %lld", uresult);
413 uresult = (Uint64)SDLTest_RandomUint32BoundaryValue(10, 20, SDL_TRUE);
416 uresult == 10 || uresult == 11 || uresult == 19 || uresult == 20,
417 "Validate result value for parameters (10,20,SDL_TRUE); expected: 10|11|19|20, got: %lld", uresult);
420 uresult = (Uint64)SDLTest_RandomUint32BoundaryValue(20, 10, SDL_TRUE);
423 uresult == 10 || uresult == 11 || uresult == 19 || uresult == 20,
424 "Validate result value for parameters (20,10,SDL_TRUE); expected: 10|11|19|20, got: %lld", uresult);
427 uresult = (Uint64)SDLTest_RandomUint32BoundaryValue(1, 20, SDL_FALSE);
430 uresult == 0 || uresult == 21,
431 "Validate result value for parameters (1,20,SDL_FALSE); expected: 0|21, got: %lld", uresult);
434 uresult = (Uint64)SDLTest_RandomUint32BoundaryValue(0, 99, SDL_FALSE);
437 uresult == 100,
438 "Validate result value for parameters (0,99,SDL_FALSE); expected: 100, got: %lld", uresult);
441 uresult = (Uint64)SDLTest_RandomUint32BoundaryValue(1, 0xffffffff, SDL_FALSE);
444 uresult == 0,
445 "Validate result value for parameters (1,0xffffffff,SDL_FALSE); expected: 0, got: %lld", uresult);
451 uresult = (Uint64)SDLTest_RandomUint32BoundaryValue(0, 0xfffffffe, SDL_FALSE);
454 uresult == 0xffffffff,
455 "Validate result value for parameters (0,0xfffffffe,SDL_FALSE); expected: 0xffffffff, got: %lld", uresult);
461 uresult = (Uint64)SDLTest_RandomUint32BoundaryValue(0, 0xffffffff, SDL_FALSE);
464 uresult == 0,
465 "Validate result value for parameters(0,0xffffffff,SDL_FALSE); expected: 0, got: %lld", uresult);
488 Uint64 uresult;
495 uresult = (Uint64)SDLTest_RandomUint64BoundaryValue(10, 10, SDL_TRUE);
498 uresult == 10,
499 "Validate result value for parameters (10,10,SDL_TRUE); expected: 10, got: %lld", uresult);
502 uresult = (Uint64)SDLTest_RandomUint64BoundaryValue(10, 11, SDL_TRUE);
505 uresult == 10 || uresult == 11,
506 "Validate result value for parameters (10,11,SDL_TRUE); expected: 10|11, got: %lld", uresult);
509 uresult = (Uint64)SDLTest_RandomUint64BoundaryValue(10, 12, SDL_TRUE);
512 uresult == 10 || uresult == 11 || uresult == 12,
513 "Validate result value for parameters (10,12,SDL_TRUE); expected: 10|11|12, got: %lld", uresult);
516 uresult = (Uint64)SDLTest_RandomUint64BoundaryValue(10, 13, SDL_TRUE);
519 uresult == 10 || uresult == 11 || uresult == 12 || uresult == 13,
520 "Validate result value for parameters (10,13,SDL_TRUE); expected: 10|11|12|13, got: %lld", uresult);
523 uresult = (Uint64)SDLTest_RandomUint64BoundaryValue(10, 20, SDL_TRUE);
526 uresult == 10 || uresult == 11 || uresult == 19 || uresult == 20,
527 "Validate result value for parameters (10,20,SDL_TRUE); expected: 10|11|19|20, got: %lld", uresult);
530 uresult = (Uint64)SDLTest_RandomUint64BoundaryValue(20, 10, SDL_TRUE);
533 uresult == 10 || uresult == 11 || uresult == 19 || uresult == 20,
534 "Validate result value for parameters (20,10,SDL_TRUE); expected: 10|11|19|20, got: %lld", uresult);
537 uresult = (Uint64)SDLTest_RandomUint64BoundaryValue(1, 20, SDL_FALSE);
540 uresult == 0 || uresult == 21,
541 "Validate result value for parameters (1,20,SDL_FALSE); expected: 0|21, got: %lld", uresult);
544 uresult = (Uint64)SDLTest_RandomUint64BoundaryValue(0, 99, SDL_FALSE);
547 uresult == 100,
548 "Validate result value for parameters (0,99,SDL_FALSE); expected: 100, got: %lld", uresult);
551 uresult = (Uint64)SDLTest_RandomUint64BoundaryValue(1, (Uint64)0xffffffffffffffffULL, SDL_FALSE);
554 uresult == 0,
555 "Validate result value for parameters (1,0xffffffffffffffff,SDL_FALSE); expected: 0, got: %lld", uresult);
561 uresult = (Uint64)SDLTest_RandomUint64BoundaryValue(0, (Uint64)0xfffffffffffffffeULL, SDL_FALSE);
564 uresult == (Uint64)0xffffffffffffffffULL,
565 "Validate result value for parameters (0,0xfffffffffffffffe,SDL_FALSE); expected: 0xffffffffffffffff, got: %lld", uresult);
571 uresult = (Uint64)SDLTest_RandomUint64BoundaryValue(0, (Uint64)0xffffffffffffffffULL, SDL_FALSE);
574 uresult == 0,
575 "Validate result value for parameters(0,0xffffffffffffffff,SDL_FALSE); expected: 0, got: %lld", uresult);