Lines Matching refs:SDL_TRUE
55 tfret = SDL_AtomicSet(&v, 10) == 0 ? SDL_TRUE : SDL_FALSE; in RunBasicTest()
57 tfret = SDL_AtomicAdd(&v, 10) == 10 ? SDL_TRUE : SDL_FALSE; in RunBasicTest()
62 tfret = (SDL_AtomicGet(&v) == 1) ? SDL_TRUE : SDL_FALSE; in RunBasicTest()
65 tfret = (SDL_AtomicGet(&v) == 2) ? SDL_TRUE : SDL_FALSE; in RunBasicTest()
67 tfret = (SDL_AtomicDecRef(&v) == SDL_FALSE) ? SDL_TRUE : SDL_FALSE; in RunBasicTest()
69 tfret = (SDL_AtomicDecRef(&v) == SDL_TRUE) ? SDL_TRUE : SDL_FALSE; in RunBasicTest()
73 tfret = (SDL_AtomicCAS(&v, 0, 20) == SDL_FALSE) ? SDL_TRUE : SDL_FALSE; in RunBasicTest()
76 tfret = (SDL_AtomicCAS(&v, value, 20) == SDL_TRUE) ? SDL_TRUE : SDL_FALSE; in RunBasicTest()
342 status = SDL_TRUE; in EnqueueEvent_LockFree()
389 status = SDL_TRUE; in DequeueEvent_LockFree()
429 status = SDL_TRUE; in EnqueueEvent_Mutex()
462 status = SDL_TRUE; in DequeueEvent_Mutex()
723 RunFIFOTest(SDL_TRUE); in main()