| /CafeSDK-2.12.13-1/system/include/cafe/demo/ |
| D | demoCommon.h | 40 #define DEMORoundUp256B(x) (((u32)(x) + 256 - 1) & ~(256 - 1)) argument 41 #define DEMORoundUp32B(x) (((u32)(x) + 32 - 1) & ~(32 - 1)) argument 42 #define DEMORoundUp4B(x) (((u32)(x) + 4 - 1) & ~(4 - 1)) argument 44 #define DEMORoundUpForIO(x) (((u32)(x) + PPC_IO_BUFFER_ALIGN - 1) & ~(PPC_IO_BUFFER_ALIGN - 1)) argument
|
| D | demoSystem.h | 24 #define DEMORoundUp256B(x) (((u32)(x) + 256 - 1) & ~(256 - 1)) argument 25 #define DEMORoundUp32B(x) (((u32)(x) + 32 - 1) & ~(32 - 1)) argument 26 #define DEMORoundUp4B(x) (((u32)(x) + 4 - 1) & ~(4 - 1)) argument 28 #define DEMORoundUpForIO(x) (((u32)(x) + PPC_IO_BUFFER_ALIGN - 1) & ~(PPC_IO_BUFFER_ALIGN - 1)) argument
|
| D | demoGfxTypes.h | 31 struct{ f32 x, y, z, w;} v; member 43 struct{ f32 x, y, z;} v; member 55 struct{ f32 x, y;} v; member 67 struct{ f32 x;} v; member 79 struct{ u32 x, y, z, w;} v; member 91 struct{ u32 x, y, z;} v; member 103 struct{ u32 x, y;} v; member 115 struct{ u32 x;} v; member 127 struct{ s32 x, y, z, w;} v; member 139 struct{ s32 x, y, z;} v; member [all …]
|
| /CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/ |
| D | demoCommon.h | 40 #define DEMORoundUp256B(x) (((u32)(x) + 256 - 1) & ~(256 - 1)) argument 41 #define DEMORoundUp32B(x) (((u32)(x) + 32 - 1) & ~(32 - 1)) argument 42 #define DEMORoundUp4B(x) (((u32)(x) + 4 - 1) & ~(4 - 1)) argument 44 #define DEMORoundUpForIO(x) (((u32)(x) + PPC_IO_BUFFER_ALIGN - 1) & ~(PPC_IO_BUFFER_ALIGN - 1)) argument
|
| D | demoSystem.h | 24 #define DEMORoundUp256B(x) (((u32)(x) + 256 - 1) & ~(256 - 1)) argument 25 #define DEMORoundUp32B(x) (((u32)(x) + 32 - 1) & ~(32 - 1)) argument 26 #define DEMORoundUp4B(x) (((u32)(x) + 4 - 1) & ~(4 - 1)) argument 28 #define DEMORoundUpForIO(x) (((u32)(x) + PPC_IO_BUFFER_ALIGN - 1) & ~(PPC_IO_BUFFER_ALIGN - 1)) argument
|
| D | demoGfxTypes.h | 31 struct{ f32 x, y, z, w;} v; member 43 struct{ f32 x, y, z;} v; member 55 struct{ f32 x, y;} v; member 67 struct{ f32 x;} v; member 79 struct{ u32 x, y, z, w;} v; member 91 struct{ u32 x, y, z;} v; member 103 struct{ u32 x, y;} v; member 115 struct{ u32 x;} v; member 127 struct{ s32 x, y, z, w;} v; member 139 struct{ s32 x, y, z;} v; member [all …]
|
| /CafeSDK-2.12.13-1/system/src/lib/demo/demowin/ |
| D | demowin_slider_bar.cpp | 76 float x = CursorX() - this->oldX; in Update() local 106 float x = t * (this->width - this->height * 3); in Update() local 156 float x = t * (this->width - this->height * 3); in Draw() local
|
| D | demowin_slider_bar_float.cpp | 76 float x = CursorX() - this->oldX; in Update() local 106 float x = t * (this->width - this->height * 3); in Update() local 156 float x = t * (this->width - this->height * 3); in Draw() local
|
| D | demowin_tab_window.cpp | 33 float x = -GetWidth() / 2 + GetWidth() / tabWindowList.size() / 2; in Draw() local
|
| /CafeSDK-2.12.13-1/system/include/ |
| D | types.h | 48 #define ALIGNVAR(x) PRAGMA( alignvar(x) ) argument 61 #define SET_STRUCT_ALIGN(x) PRAGMA(ghs struct_min_alignment(x)) argument 62 #define ATTRIB_STRUCT_ALIGN(x) argument 107 #define SET_STRUCT_ALIGN(x) argument 108 #define ATTRIB_STRUCT_ALIGN(x) __attribute((aligned (x))) argument 129 #define SET_STRUCT_ALIGN(x) argument 130 #define ATTRIB_STRUCT_ALIGN(x) __attribute((aligned (x))) argument 148 #define SET_STRUCT_ALIGN(x) argument 149 #define ATTRIB_STRUCT_ALIGN(x) argument
|
| /CafeSDK-2.12.13-1/system/include/cafe/gfd/ |
| D | gfdInterface.h | 29 #define GFD_SWAP_8_IN_16(x) (((x)>>8)|((x)<<8)) argument 32 #define GFD_SWAP_8_IN_32(x) ((((x)>>24)&0xff)|(((x)>>8)&0xff00)|(((x)<<8)&0xff0000)|(((x)<<24)&0xff… argument
|
| /CafeSDK-2.12.13-1/system/src/lib/gfd/headers/cafe/gfd/ |
| D | gfdInterface.h | 29 #define GFD_SWAP_8_IN_16(x) (((x)>>8)|((x)<<8)) argument 32 #define GFD_SWAP_8_IN_32(x) ((((x)>>24)&0xff)|(((x)>>8)&0xff00)|(((x)<<8)&0xff0000)|(((x)<<24)&0xff… argument
|
| /CafeSDK-2.12.13-1/system/include/cafe/gx2/ |
| D | gx2Misc.h | 60 #define GX2_GET_COMP_SEL(x,y,z,w) ((((x)&0xff)<<24)|(((y)&0xff)<<16)|(((z)&0xff)<<8)|((w)&0xff)) argument 104 #define GX2_SWAP_8_IN_32(x) \ argument 111 #define GX2_SWAP_8_IN_16(x) \ argument 118 #define GX2_SWAP_16_IN_32(x) \ argument 124 #define GX2_SWAP_8_IN_64(x) \ argument
|
| /CafeSDK-2.12.13-1/system/src/lib/libsys/ |
| D | inderrno.h | 30 #define __gh_set_errno(x) ((errno) = (x)) argument
|
| D | arm_manprf.h | 30 #define MM(x) (*(mm_reg*)x) argument
|
| /CafeSDK-2.12.13-1/system/include/cafe/curl/ |
| D | curlrules.h | 220 # define __CURL_OFF_T_C_HLPR2(x) x argument 221 # define __CURL_OFF_T_C_HLPR1(x) __CURL_OFF_T_C_HLPR2(x) argument
|
| /CafeSDK-2.12.13-1/system/src/tool/gfx/projects/TexConv2/tgaReader/ |
| D | tgaReader.cpp | 35 unsigned short x; member 68 u32 x,y,c; in SwapFromBottomToTop() local 87 u32 x,y,c; in SwapFromRightToLeft() local 112 u32 x = 0; in DecodeRLEImage() local 273 u32 x = 0; in ReadRawImage() local
|
| /CafeSDK-2.12.13-1/system/include/cafe/mtx/ |
| D | mtxGeoTypes.h | 30 f32 x; ///< X Component member 38 f32 x; ///< X component member 46 s16 x; ///< X component member 61 f32 x, y, z, w; member
|
| /CafeSDK-2.12.13-1/system/src/lib/mtx/headers/cafe/mtx/ |
| D | mtxGeoTypes.h | 30 f32 x; ///< X Component member 38 f32 x; ///< X component member 46 s16 x; ///< X component member 61 f32 x, y, z, w; member
|
| /CafeSDK-2.12.13-1/system/include/cafe/demo/demowin/ |
| D | demowin_assets.h | 33 float x; member 54 float x; member 71 : x(_x), y(_y), z(_z), w(_w) {} in x() function 77 float x; member
|
| /CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/demowin/ |
| D | demowin_assets.h | 33 float x; member 54 float x; member 71 : x(_x), y(_y), z(_z), w(_w) {} in x() function 77 float x; member
|
| /CafeSDK-2.12.13-1/system/include/cafe/pads/wpad/ |
| D | wpadBulk.h | 33 #define WPAD_IS_BULK_DEVICE(x) ( x == WPAD_DEV_BULK_01 \ argument
|
| /CafeSDK-2.12.13-1/system/include/cafe/ |
| D | os.h | 38 #define OSRoundUp32B(x) (((u32)(x) + 32 - 1) & ~(32 - 1)) argument 39 #define OSRoundDown32B(x) (((u32)(x)) & ~(32 - 1)) argument
|
| /CafeSDK-2.12.13-1/system/include/windows/ |
| D | gx2.h | 47 #define ALIGNVAR(x) argument
|
| /CafeSDK-2.12.13-1/system/src/tool/gfx/include/ |
| D | shaderUtils.h | 59 #define GSH2_ABI_ID(x) (((x)&0xFF800000)) argument 65 #define GSH2_ABI_MAJOR(x) ( ((x)&0x7F0000) >> 16 ) argument 74 #define GSH2_ABI_MINOR(x) ((x)&0xFFFF ) argument 110 #define GSH2_ABI_OK(x) (GSH2_ABI_ID(x) == GSH2_ABI_ID_CURRENT) argument
|