Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 119) sorted by relevance

12345

/RvlSDK-2.1/build/demos/gddemo/src/
Dgd-matrix-create.c42 #define OSRoundUp32B(x) (((u32)(x) + 31) & ~31) argument
43 #define OSAlloc(x) ((void*)OSRoundUp32B(malloc((x)+31))) argument
44 #define OSFree(x) free(x) argument
Dgd-matrix-host.c45 #define OSRoundUp32B(x) (((u32)(x) + 31) & ~31) argument
46 #define OSAlloc(x) ((void*)OSRoundUp32B(malloc((x)+31))) argument
47 #define OSFree(x) free(x) argument
Dgd-texture-create.c50 #define OSRoundUp32B(x) (((u32)(x) + 31) & ~31) argument
51 #define OSAlloc(x) ((void*)OSRoundUp32B(malloc((x)+31))) argument
52 #define OSFree(x) free(x) argument
Dgd-init-host.c46 #define OSRoundUp32B(x) (((u32)(x) + 31) & ~31) argument
47 #define OSAlloc(x) ((void*)OSRoundUp32B(malloc((x)+31))) argument
48 #define OSFree(x) free(x) argument
Dgd-texture-host.c46 #define OSRoundUp32B(x) (((u32)(x) + 31) & ~31) argument
47 #define OSAlloc(x) ((void*)OSRoundUp32B(malloc((x)+31))) argument
48 #define OSFree(x) free(x) argument
Dgd-init-create.c41 #define OSRoundUp32B(x) (((u32)(x) + 31) & ~31) argument
42 #define OSAlloc(x) ((void*)OSRoundUp32B(malloc((x)+31))) argument
43 #define OSFree(x) free(x) argument
/RvlSDK-2.1/build/libraries/cx/include/
DCXUtil.h27 static inline u32 CXiConvertEndian_( u32 x ) in CXiConvertEndian_()
41 static inline u16 CXiConvertEndian16_( u16 x ) in CXiConvertEndian16_()
/RvlSDK-2.1/build/demos/wpaddemo/src/
Dpointing.c231 s16 x = (s16)( stat->obj[i].x*SCREEN_WIDTH/WPAD_DPD_IMG_RESO_WX ); in renderLuminousSources() local
247 s16 x = FONT_HEIGHT; in renderStatus() local
288 s16 x; in renderAiming() local
311 static void getMidpoint( const WPADStatus *stat, s16 *x, s16 *y ) in getMidpoint()
Dsimple.c265 s16 x = (s16)( stat->obj[i].x*SCREEN_WIDTH/WPAD_DPD_IMG_RESO_WX ); in renderLuminousSources() local
283 s16 x = FONT_HEIGHT; in renderStatus() local
Dsampling.c202 s16 x = FONT_HEIGHT; in renderStatus() local
280 …s16 x=(s16)(SCREEN_WIDTH -(s_ringBuf[index].obj[0].x+s_ringBuf[index].obj[1].x)/2*SCREEN_WIDTH /WP… in renderAimings() local
/RvlSDK-2.1/build/demos/osdemo/src/
Dfontdemo1.c37 static void DrawCell(int x, int y, int xChar, int yChar) in DrawCell()
98 static s32 DrawChar(int x, int y, u16 code) in DrawChar()
130 static s32 DrawString(int x, int y, char* string) in DrawString()
225 int x; in main() local
Dfontdemo3.c43 static void DrawCell(int x, int y, int xChar, int yChar) in DrawCell()
104 static s32 DrawChar(int x, int y, u16 code) in DrawChar()
133 static s32 DrawString(int x, int y, char* string) in DrawString()
222 int x; in main() local
/RvlSDK-2.1/include/revolution/mtx/
DGeoTypes.h57 f32 x, y, z; member
67 s16 x; member
79 f32 x, y, z, w; member
/RvlSDK-2.1/build/demos/videmo/src/
Dbmp.c37 #define CLAMP(x,l,h) ((x > h) ? h : ((x < l) ? l : x)) argument
41 #define REV16(x) ((u16)( ( (x) >> 8 ) + ( ((x) & 0xff) << 8 ) )) argument
42 #define REV32(x) ((u32)( ( ((x) & 0xff000000) >> 24) \ argument
Dmoving.c35 #define FLOOR(x, a) ( (x < a)? a : x ) argument
36 #define CEIL(x, b) ( (x > b)? b : x ) argument
37 #define CLAMP(x, a, b) (CEIL(FLOOR(x, a), b)) argument
Dmoving.progressive.c30 #define FLOOR(x, a) ( (x < a)? a : x ) argument
31 #define CEIL(x, b) ( (x > b)? b : x ) argument
32 #define CLAMP(x, a, b) (CEIL(FLOOR(x, a), b)) argument
Dmoving.30Hz.c35 #define FLOOR(x, a) ( (x < a)? a : x ) argument
36 #define CEIL(x, b) ( (x > b)? b : x ) argument
37 #define CLAMP(x, a, b) (CEIL(FLOOR(x, a), b)) argument
/RvlSDK-2.1/build/demos/gxdemo/src/Tev/
Dtev-multi.c46 #define ALI_COL(x) (x * 68 + 48) argument
521 u32 x; in DrawTexMapPanels() local
555 u32 x; in DrawTexCoordPanels() local
588 u32 x; in DrawColorChanPanels() local
621 u32 x; in DrawResultPanels() local
654 s16 x; in DrawCaption() local
/RvlSDK-2.1/build/tools/darch/include/
Ddarch.h88 #define roundUp4B(x) (((unsigned int)(x) + 4 - 1) & \ argument
90 #define roundUp32B(x) (((unsigned int)(x) + 32 - 1) & \ argument
152 #define RoundUp32B(x) (((u32)(x) + 32 - 1) & ~(32 - 1)) argument
153 #define RoundDown32B(x) (((u32)(x)) & ~(32 - 1)) argument
155 #define RoundUp4B(x) (((u32)(x) + 4 - 1) & ~(4 - 1)) argument
156 #define RoundDown4B(x) (((u32)(x)) & ~(4 - 1)) argument
182 #define MIN(x, y) (((x) < (y))? (x) : (y)) argument
/RvlSDK-2.1/build/libraries/demo/src/
DDEMOPuts.c325 void DEMOPuts( s16 x, s16 y, s16 z, char* string ) in DEMOPuts()
391 void DEMOPrintf( s16 x, s16 y, s16 z, char* fmt, ... ) in DEMOPrintf()
516 static void DrawFontChar(int x, int y, int z, int xChar, int yChar) in DrawFontChar()
594 int DEMORFPuts(s16 x, s16 y, s16 z, char* string) in DEMORFPuts()
646 int DEMORFPutsEx(s16 x, s16 y, s16 z, char* string, s16 maxWidth, int length) in DEMORFPutsEx()
713 int DEMORFPrintf(s16 x, s16 y, s16 z, char* fmt, ...) in DEMORFPrintf()
/RvlSDK-2.1/build/libraries/wpad/src/
DWPADClamp.c343 int x; in __ClampStickOctagon() local
476 int x; in __ClampStickCircle() local
585 f32 x = (f32)((f32)*px / (f32)unit.x); in __ClampCube() local
645 f32 x = (f32)((f32)*px / (f32)unit.x); in __ClampSphere() local
/RvlSDK-2.1/build/tools/sndconv/src/
Dendian.c28 u32 reverse_endian_32(u32 x) in reverse_endian_32()
/RvlSDK-2.1/build/tools/soundfile/src/
Dendian.c28 u32 reverse_endian_32(u32 x) in reverse_endian_32()
/RvlSDK-2.1/build/tools/dspadpcm/src/
Dendian.c28 u32 reverse_endian_32(u32 x) in reverse_endian_32()
/RvlSDK-2.1/build/demos/kpaddemo/src/
Dkfont.c227 f32 x ; in draw_kfont_s32() local
266 f32 x, vf ; in draw_kfont_f32() local
322 f32 x = cx ; in draw_kfont_bit() local
348 f32 x = cx ; in draw_kfont_letter() local

12345