Searched refs:buttonLast (Results 1 – 7 of 7) sorted by relevance
| /RvlSDK-3.1.4/include/dolphin/ |
| D | pad.h | 235 #define PADButtonDown(buttonLast, button) \ argument 236 ((u16) (((buttonLast) ^ (button)) & (button))) 238 #define PADButtonUp(buttonLast, button) \ argument 239 ((u16) (((buttonLast) ^ (button)) & (buttonLast)))
|
| /RvlSDK-3.1.4/include/revolution/ |
| D | pad.h | 240 #define PADButtonDown(buttonLast, button) \ argument 241 ((u16) (((buttonLast) ^ (button)) & (button))) 243 #define PADButtonUp(buttonLast, button) \ argument 244 ((u16) (((buttonLast) ^ (button)) & (buttonLast)))
|
| D | wpad.h | 603 #define WPADButtonDown( buttonLast, button ) \ argument 604 ( (u16) (((buttonLast) ^ (button)) & (button)) ) 606 #define WPADButtonUp( buttonLast, button ) \ argument 607 ( (u16) (((buttonLast) ^ (button)) & (buttonLast)) )
|
| /RvlSDK-3.1.4/build/demos/paddemo/src/ |
| D | cont.c | 173 contAll->buttonLast = contAll->button; in ReadCont() 185 cont->buttonLast = cont->button; // not to generate up/down twice in ReadCont() 216 cont->down = PADButtonDown(cont->buttonLast, cont->button); in ReadCont() 217 cont->up = PADButtonUp(cont->buttonLast, cont->button); in ReadCont() 219 cont->repeat = (u16) ((cont->button & cont->buttonLast) & in ReadCont()
|
| /RvlSDK-3.1.4/build/demos/carddemo/src/ |
| D | cont.c | 171 contAll->buttonLast = contAll->button; in ReadCont() 183 cont->buttonLast = cont->button; // not to generate up/down twice in ReadCont() 214 cont->down = PADButtonDown(cont->buttonLast, cont->button); in ReadCont() 215 cont->up = PADButtonUp(cont->buttonLast, cont->button); in ReadCont() 217 cont->repeat = (u16) ((cont->button & cont->buttonLast) & in ReadCont()
|
| /RvlSDK-3.1.4/build/demos/carddemo/include/ |
| D | cont.h | 56 u16 buttonLast; // Or-ed PAD_BUTTON_* bits member
|
| /RvlSDK-3.1.4/build/demos/paddemo/include/ |
| D | cont.h | 56 u16 buttonLast; // Or-ed PAD_BUTTON_* bits member
|