Lines Matching refs:try_put
74 bool msg = my_q.try_put( T(N*i + j) ); in operator ()()
182 CHECK_MESSAGE( my_q.try_put( T (N*tid + j ) ) == true, "" ); in operator ()()
208 q.try_put(T(1)); in test_reservation()
209 q.try_put(T(2)); in test_reservation()
210 q.try_put(T(3)); in test_reservation()
381 bool msg = q.try_put( T(i) ); in test_serial()
399 bool msg = q.try_put( T(i) ); in test_serial()
417 CHECK_MESSAGE( q.try_put( 1 ) == true, "" ); in test_serial()
430 bool msg = q.try_put( T(i) ); in test_serial()
449 CHECK_MESSAGE( q.try_put( 1 ) == true, "" ); in test_serial()
545 bool res = q.try_put(42);