Lines Matching refs:x
33 bool operator()(s32& x) in operator ()()
35 if( x > 0 ) in operator ()()
37 x = -x; in operator ()()
50 bool operator()(s32& x) in operator ()()
52 x = -x; in operator ()()
53 afterUpdate = x; in operator ()()
60 bool operator()(s32& x) in operator ()()
62 if( x < 0 ) in operator ()()
64 --x; in operator ()()
76 bool operator()(s32& x) in operator ()()
78 if( x > 0 ) in operator ()()
80 x = -x + 1; in operator ()()