HomeSort by relevance Sort by last modified time
    Searched refs:Sint16 (Results 1 - 25 of 45) sorted by null

1 2

  /external/qemu/distrib/sdl-1.2.15/src/joystick/
SDL_joystick_c.h 32 Uint8 axis, Sint16 value);
34 Uint8 ball, Sint16 xrel, Sint16 yrel);
SDL_sysjoystick.h 34 Sint16 *axes; /* Current axis states */
SDL_joystick.c 129 joystick->axes = (Sint16 *)SDL_malloc
130 (joystick->naxes*sizeof(Sint16));
155 joystick->naxes*sizeof(Sint16));
269 Sint16 SDL_JoystickGetAxis(SDL_Joystick *joystick, int axis)
271 Sint16 state;
432 int SDL_PrivateJoystickAxis(SDL_Joystick *joystick, Uint8 axis, Sint16 value)
493 Sint16 xrel, Sint16 yrel)
  /external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
SDL_ikbdinterrupt_s.h 49 extern volatile Sint16 SDL_AtariIkbd_mousex; /* Mouse X relative motion */
50 extern volatile Sint16 SDL_AtariIkbd_mousey; /* Mouse Y relative motion */
SDL_xbiosinterrupt_s.h 41 extern volatile Sint16 SDL_AtariXbios_mousex; /* X relative motion */
42 extern volatile Sint16 SDL_AtariXbios_mousey; /* Y relative motion */
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_events_c.h 59 Sint16 x, Sint16 y);
60 extern int SDL_PrivateMouseButton(Uint8 state, Uint8 button,Sint16 x,Sint16 y);
SDL_mouse.c 33 static Sint16 SDL_MouseX = 0;
34 static Sint16 SDL_MouseY = 0;
35 static Sint16 SDL_DeltaX = 0;
36 static Sint16 SDL_DeltaY = 0;
37 static Sint16 SDL_MouseMaxX = 0;
38 static Sint16 SDL_MouseMaxY = 0;
94 static void ClipOffset(Sint16 *x, Sint16 *y)
108 SDL_MouseMaxX = (Sint16)maxX;
109 SDL_MouseMaxY = (Sint16)maxY
    [all...]
  /ndk/tests/build/issue56508-gcc4.7-ICE/jni/
extraMachine.c 10 typedef short int Sint16;
87 Sint16 des;
88 Sint16 assoc;
120 Sint16 savrepr;
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_events.h 139 Sint16 xrel; /**< The relative motion in the X direction */
140 Sint16 yrel; /**< The relative motion in the Y direction */
157 Sint16 value; /**< The axis value (range: -32768 to 32767) */
165 Sint16 xrel; /**< The relative motion in the X direction */
166 Sint16 yrel; /**< The relative motion in the Y direction */
SDL_joystick.h 134 extern DECLSPEC Sint16 SDLCALL SDL_JoystickGetAxis(SDL_Joystick *joystick, int axis);
SDL_mouse.h 43 Sint16 hot_x, hot_y; /**< The "tip" of the cursor */
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_events.h 139 Sint16 xrel; /**< The relative motion in the X direction */
140 Sint16 yrel; /**< The relative motion in the Y direction */
157 Sint16 value; /**< The axis value (range: -32768 to 32767) */
165 Sint16 xrel; /**< The relative motion in the X direction */
166 Sint16 yrel; /**< The relative motion in the Y direction */
SDL_joystick.h 134 extern DECLSPEC Sint16 SDLCALL SDL_JoystickGetAxis(SDL_Joystick *joystick, int axis);
SDL_mouse.h 43 Sint16 hot_x, hot_y; /**< The "tip" of the cursor */
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_events.h 139 Sint16 xrel; /**< The relative motion in the X direction */
140 Sint16 yrel; /**< The relative motion in the Y direction */
157 Sint16 value; /**< The axis value (range: -32768 to 32767) */
165 Sint16 xrel; /**< The relative motion in the X direction */
166 Sint16 yrel; /**< The relative motion in the Y direction */
SDL_joystick.h 134 extern DECLSPEC Sint16 SDLCALL SDL_JoystickGetAxis(SDL_Joystick *joystick, int axis);
SDL_mouse.h 43 Sint16 hot_x, hot_y; /**< The "tip" of the cursor */
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_events.h 139 Sint16 xrel; /**< The relative motion in the X direction */
140 Sint16 yrel; /**< The relative motion in the Y direction */
157 Sint16 value; /**< The axis value (range: -32768 to 32767) */
165 Sint16 xrel; /**< The relative motion in the X direction */
166 Sint16 yrel; /**< The relative motion in the Y direction */
SDL_joystick.h 134 extern DECLSPEC Sint16 SDLCALL SDL_JoystickGetAxis(SDL_Joystick *joystick, int axis);
SDL_mouse.h 43 Sint16 hot_x, hot_y; /**< The "tip" of the cursor */
  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_wave.c 35 Sint16 iSamp1;
36 Sint16 iSamp2;
42 Sint16 aCoeff[7][2];
82 Uint8 nybble, Sint16 *coeff)
111 state->iSamp1 = (Sint16)new_sample;
121 Sint16 *coeff[2];
130 MS_ADPCM_state.wavefmt.channels*sizeof(Sint16);
149 encoded += sizeof(Sint16);
152 encoded += sizeof(Sint16);
155 encoded += sizeof(Sint16);
    [all...]
SDL_audiocvt.c 106 sample = (Sint16)((src[0]<<8)|src[1])+
107 (Sint16)((src[2]<<8)|src[3]);
117 sample = (Sint16)((src[1]<<8)|src[0])+
118 (Sint16)((src[3]<<8)|src[2]);
217 lsample = (Sint16)((src[0]<<8)|src[1]);
218 rsample = (Sint16)((src[2]<<8)|src[3]);
230 lsample = (Sint16)((src[1]<<8)|src[0]);
231 rsample = (Sint16)((src[3]<<8)|src[2]);
333 lsample = (Sint16)((src[0]<<8)|src[1]);
334 rsample = (Sint16)((src[2]<<8)|src[3])
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testjoystick.c 136 axis_area[draw].x = (Sint16)x;
137 axis_area[draw].y = (Sint16)y;
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_riscosevents.c 251 static Sint16 last_x = -1, last_y = -1;
263 Sint16 new_x = regs.r[0]; /* Initialy get as OS units */
264 Sint16 new_y = regs.r[1];
  /external/qemu/distrib/sdl-1.2.15/src/audio/sun/
SDL_sunaudio.c 190 Sint16 *sndbuf;
192 sndbuf = (Sint16 *)mixbuf;

Completed in 194 milliseconds

1 2