| /RvlSDK-3.2.2/build/libraries/pad/src/ |
| D | Padclamp.c | 71 s8 minStick; // the play of the control stick 72 s8 maxStick; 73 s8 xyStick; // max on x = y 74 s8 minSubstick; // the play of the C stick 75 s8 maxSubstick; 76 s8 xySubstick; 78 s8 radStick; // max radius of the control stick 79 s8 radSubstick; // max radius of the C stick 152 static void ClampStick(s8* px, s8* py, s8 max, s8 xy, s8 min) in ClampStick() 211 x = (s8) (xy * max * x / d); in ClampStick() [all …]
|
| /RvlSDK-3.2.2/include/revolution/gx/ |
| D | GXEmVert.h | 43 void EmGXParam1s8( s8 x ); 57 void EmGXPosition3s8 ( s8 x, s8 y, s8 z ); 62 void EmGXPosition2s8 ( s8 x, s8 y ); 69 void EmGXNormal3s8 ( s8 x, s8 y, s8 z ); 85 void EmGXTexCoord2s8 ( s8 s, s8 t ); 90 void EmGXTexCoord1s8 ( s8 s );
|
| /RvlSDK-3.2.2/build/tools/sndconv/src/ |
| D | soundformat.c | 26 typedef void (*FUNCTION1)(s16*, s8*, ADPCMINFO*, u32); 36 void soundStereoCombine8Bit(s8 *dest, s8 *source, u32 samples) in soundStereoCombine8Bit() 79 void soundStereoLeft8Bit(s8 *dest, s8 *source, u32 samples) in soundStereoLeft8Bit() 117 void soundStereoRight8Bit(s8 *dest, s8 *source, u32 samples) in soundStereoRight8Bit() 155 void soundConvert8to16Bit(s16 *dest, s8 *source, u32 samples) in soundConvert8to16Bit() 172 void soundConvert16to8Bit(s8 *dest, s16 *source, u32 samples) in soundConvert16to8Bit() 178 *dest = (s8)((*source >> 8) & 0xFF); in soundConvert16to8Bit() 210 void soundConvert8BitToAdpcm(void *dest, s8 *source, ADPCMINFO *adpcminfo, in soundConvert8BitToAdpcm() 228 void soundConvert8BitToAdpcmLoop(void *dest, s8 *source, ADPCMINFO *adpcminfo, in soundConvert8BitToAdpcmLoop()
|
| D | soundconv.h | 131 void soundStereoCombine8Bit (s8 *dest, s8 *source, u32 samples); 133 void soundStereoLeft8Bit (s8 *dest, s8 *source, u32 samples); 135 void soundStereoRight8Bit (s8 *dest, s8 *source, u32 samples); 137 void soundConvert8to16Bit (s16 *dest, s8 *source, u32 samples); 138 void soundConvert16to8Bit (s8 *dest, s16 *source, u32 samples); 141 void soundConvert8BitToAdpcm (void *, s8 *, ADPCMINFO *, u32 samples); 142 void soundConvert8BitToAdpcmLoop(void *, s8 *, ADPCMINFO *, u32 samples, u32 loopStart);
|
| D | Types.h | 54 typedef char s8; typedef 66 typedef char s8; typedef 76 typedef __int8 s8; typedef
|
| /RvlSDK-3.2.2/build/demos/paddemo/include/ |
| D | cont.h | 46 s8 stickX; // -128 <= stickX <= 127 47 s8 stickY; // -128 <= stickY <= 127 48 s8 substickX; // -128 <= substickX <= 127 49 s8 substickY; // -128 <= substickY <= 127 54 s8 err; // one of PAD_ERR_* number
|
| /RvlSDK-3.2.2/build/demos/gxdemo/src/TexGen/ |
| D | tg-shadow.c | 469 s8 x, y, z; in DrawFloor() 486 z = (s8)(NUM_GRIDS - x - y); in DrawFloor() 492 GXPosition3s8((s8)(x+1), y, z); in DrawFloor() 495 GXPosition3s8((s8)(x+1), (s8)(y+1), z); in DrawFloor() 498 GXPosition3s8(x, (s8)(y+1), z); in DrawFloor() 503 GXPosition3s8((s8)(x+1), y, z); in DrawFloor() 506 GXPosition3s8((s8)(x+1), (s8)(y+1), z); in DrawFloor() 509 GXPosition3s8((s8)(x+1), (s8)(y+1), (s8)(z-1)); in DrawFloor() 512 GXPosition3s8((s8)(x+1), y, (s8)(z-1)); in DrawFloor() 517 GXPosition3s8((s8)(x+1), (s8)(y+1), z); in DrawFloor() [all …]
|
| /RvlSDK-3.2.2/build/demos/gxdemo/include/ |
| D | G2D-test.h | 48 extern s8 stickX; 49 extern s8 stickY; 92 s8 JoyReadStickX ( void ); 93 s8 JoyReadStickY ( void ); 105 void RenderEditorMode( s8 *aSortBuffer );
|
| /RvlSDK-3.2.2/build/libraries/wpad/src/ |
| D | WPADClamp.c | 354 x = *((s8*)px); in __ClampStickOctagon() 355 y = *((s8*)py); in __ClampStickOctagon() 405 *((s8*)px) = 0; in __ClampStickOctagon() 406 *((s8*)py) = 0; in __ClampStickOctagon() 425 x = (s8) (xy * max * x / d); in __ClampStickOctagon() 426 y = (s8) (xy * max * y / d); in __ClampStickOctagon() 442 x = (s8) (xy * max * x / d); in __ClampStickOctagon() 443 y = (s8) (xy * max * y / d); in __ClampStickOctagon() 455 *(s8*)px = (s8) (signX * x); in __ClampStickOctagon() 456 *(s8*)py = (s8) (signY * y); in __ClampStickOctagon() [all …]
|
| /RvlSDK-3.2.2/include/revolution/ |
| D | types.h | 126 typedef signed char s8; typedef 143 typedef signed char s8; typedef 146 typedef signed char s8; typedef 156 typedef __int8 s8; typedef 172 typedef volatile s8 vs8;
|
| D | G2D.h | 72 s8 nHS; // Horizontal Shift (Width of layer = 1<<nHS) 73 s8 nVS; // Vertical Shift (Height of layer = 1<<nVS) 74 s8 nBPI; // Bytes per Index (1,2) 77 s8 bWrap; // Whether layer wraps or not 111 extern void G2DDrawLayer( G2DLayer *layer, s8 *aSortBuffer );
|
| D | kpadOld.h | 173 s8 dpd_valid_fg ; 174 s8 wpad_err ; 201 void KPADSetFSStickClamp ( s8 min, s8 max ) ; 220 void KPADSetGCStickClamp ( s8 min, s8 max ) ; 221 void KPADSetGCSubstickClamp( s8 min, s8 max ) ;
|
| D | pad.h | 174 s8 stickX; // -128 <= stickX <= 127 175 s8 stickY; // -128 <= stickY <= 127 176 s8 substickX; // -128 <= substickX <= 127 177 s8 substickY; // -128 <= substickY <= 127 182 s8 err; // one of PAD_ERR_* number
|
| D | fnt.h | 74 s8 left; // Left space width 76 s8 charWidth; // Character width = left + glyphWidth + right space width 92 s8 baselinePos; // Base line position 93 s8 leading; // Leading (line feed)
|
| /RvlSDK-3.2.2/include/ |
| D | G2D.h | 69 s8 nHS; // Horizontal Shift (Width of layer = 1<<nHS) 70 s8 nVS; // Vertical Shift (Height of layer = 1<<nVS) 71 s8 nBPI; // Bytes per Index (1,2) 74 s8 bWrap; // Whether layer wraps or not 108 extern void G2DDrawLayer( G2DLayer *layer, s8 *aSortBuffer );
|
| /RvlSDK-3.2.2/build/demos/gxdemo/src/PixelProc/ |
| D | pix-sub.c | 601 s8 x, y, z; in DrawFloor() 618 z = (s8)(NUM_GRIDS - x - y); in DrawFloor() 624 GXPosition3s8(x, (s8)(y+1), z); in DrawFloor() 627 GXPosition3s8((s8)(x+1), (s8)(y+1), z); in DrawFloor() 630 GXPosition3s8((s8)(x+1), y, z); in DrawFloor() 635 GXPosition3s8((s8)(x+1), y, z); in DrawFloor() 638 GXPosition3s8((s8)(x+1), (s8)(y+1), z); in DrawFloor() 641 GXPosition3s8((s8)(x+1), (s8)(y+1), (s8)(z-1)); in DrawFloor() 644 GXPosition3s8((s8)(x+1), y, (s8)(z-1)); in DrawFloor() 649 GXPosition3s8((s8)(x+1), (s8)(y+1), z); in DrawFloor() [all …]
|
| /RvlSDK-3.2.2/include/demo/ |
| D | DEMOPad.h | 92 static inline s8 DEMOPadGetStickX(u32 i) in DEMOPadGetStickX() 95 static inline s8 DEMOPadGetStickY(u32 i) in DEMOPadGetStickY() 98 static inline s8 DEMOPadGetSubStickX(u32 i) in DEMOPadGetSubStickX() 101 static inline s8 DEMOPadGetSubStickY(u32 i) in DEMOPadGetSubStickY() 116 static inline s8 DEMOPadGetErr(u32 i) in DEMOPadGetErr()
|
| /RvlSDK-3.2.2/include/dolphin/ |
| D | pad.h | 166 s8 stickX; // -128 <= stickX <= 127 167 s8 stickY; // -128 <= stickY <= 127 168 s8 substickX; // -128 <= substickX <= 127 169 s8 substickY; // -128 <= substickY <= 127 174 s8 err; // One of PAD_ERR_* number
|
| /RvlSDK-3.2.2/build/libraries/kpadOld/include/ |
| D | KPADinside.h | 59 s8 error_fg ; // -1: not displayed, 0: OK, 1: too far out, 2: same coordinate 60 s8 state_fg ; // -1: expected value, 0: normal 61 s8 _fg_1 ; // Extra 62 s8 _fg_2 ; // Extra 114 s8 _fg_4 ; // Extra
|
| /RvlSDK-3.2.2/build/tools/dspadpcm/src/ |
| D | Types.h | 51 typedef char s8; typedef 63 typedef char s8; typedef 73 typedef __int8 s8; typedef
|
| /RvlSDK-3.2.2/build/tools/soundfile/src/ |
| D | Types.h | 54 typedef char s8; typedef 66 typedef char s8; typedef 76 typedef __int8 s8; typedef
|
| /RvlSDK-3.2.2/include/revolution/gd/ |
| D | GDVert.h | 108 __GXCDEF( GDParam, 1, s8 ) 119 __GXCDEF( GDPosition, 3, s8 ) 125 __GXCDEF( GDPosition, 2, s8 ) 136 __GXCDEF( GDNormal, 3, s8 ) 158 __GXCDEF( GDTexCoord, 2, s8 ) 164 __GXCDEF( GDTexCoord, 1, s8 )
|
| /RvlSDK-3.2.2/include/revolution/os/ |
| D | OSFastCast.h | 264 static inline f32 __OSs8tof32(register s8* in) in __OSs8tof32() 274 static inline void OSs8tof32(register s8* in, volatile register f32* out) in OSs8tof32() 354 static inline s8 __OSf32tos8(register f32 in) in __OSf32tos8() 358 register s8 r; in __OSf32tos8() 369 static inline void OSf32tos8(register f32* in, volatile register s8* out) in OSf32tos8() 416 static inline void OSs8tof32(s8* in, f32* out) 447 static inline void OSf32tos8(register f32* in, register s8* out) 449 *out = (s8)*in;
|
| /RvlSDK-3.2.2/include/revolution/base/ |
| D | PPCWGPipe.h | 60 s8 s8; member
|
| /RvlSDK-3.2.2/build/demos/gxdemo/src/Transform/ |
| D | tf-reflect.c | 104 s8 x, y; 105 s8 nx, ny, nz; 106 s8 pad; 299 GXNormal3s8 ( (s8)(ringVtx[i].nx/4), (s8)(ringVtx[i].ny/4), -60 ); in myDrawModel() 343 GXNormal3s8 ( (s8)(ringVtx[i].nx/4), (s8)(ringVtx[i].ny/4), +60 ); in myDrawModel()
|