Lines Matching refs:SDL_FALSE
43 SDL_bool tfret = SDL_FALSE; in RunBasicTest()
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()
347 status = SDL_FALSE; in EnqueueEvent_LockFree()
394 status = SDL_FALSE; in DequeueEvent_LockFree()
414 SDL_bool status = SDL_FALSE; in EnqueueEvent_Mutex()
447 SDL_bool status = SDL_FALSE; in DequeueEvent_Mutex()
721 RunFIFOTest(SDL_FALSE); in main()