| /CafeSDK-2.12.13/system/src/lib/libsys/ |
| D | ind_alloc.c | 21 void *__ghs_alloc (int size, int align); 35 void *__ghs_alloc (int size, int align) 46 ret = sbrk((-(intptr_t)ret) & (align-1)); /* align our pointer */ 62 void *__ghs_calloc (int size, int align) in __ghs_calloc() argument 64 void *p = __ghs_alloc(size, align); in __ghs_calloc()
|
| D | mip_manprf.h | 61 .align 4 mod 8, OFF_ALIGN_FILL_INST in TIMER_INIT() 66 .align 4 mod 8, OFF_ALIGN_FILL_INST in TIMER_INIT() 82 .align 4 mod 8, OFF_ALIGN_FILL_INST in ENABLE_TIMER_INTERRUPT() 92 .align 4 mod 8, OFF_ALIGN_FILL_INST in ENABLE_TIMER_INTERRUPT() 106 .align 4 mod 8, OFF_ALIGN_FILL_INST in GET_EPC()
|
| D | ind_heap.h | 17 void *__ghs_alloc(int size, int align); 18 void *__ghs_calloc(int size, int align);
|
| D | ghsheap.c | 46 void *__ghs_alloc (int size, int align) in __ghs_alloc() argument 49 return MEMAllocFromDefaultHeapEx(size, align); in __ghs_alloc()
|
| D | ind_call.ppc | 51 .align 3
|
| D | ind_mcnt.ppc | 73 .align 3
|
| D | ind_gcnt.ppc | 75 .align 3
|
| /CafeSDK-2.12.13/system/src/lib/demo/ |
| D | demoGfx.c | 90 void *DEMOGfxAllocMEM1(u32 size, u32 align) in DEMOGfxAllocMEM1() argument 94 if (align < 4) in DEMOGfxAllocMEM1() 96 align = 4; in DEMOGfxAllocMEM1() 103 ptr = MEMAllocFromExpHeapEx(gDEMOMem1Heap, size, align); in DEMOGfxAllocMEM1() 104 GX2NotifyMemAlloc(ptr, size, align); in DEMOGfxAllocMEM1() 117 void *DEMOGfxAllocBucket(u32 size, u32 align) in DEMOGfxAllocBucket() argument 121 void * ptr = MEMAllocFromExpHeapEx(gDEMOBucketHeap, size, align); in DEMOGfxAllocBucket() 122 GX2NotifyMemAlloc(ptr, size, align); in DEMOGfxAllocBucket() 135 void *DEMOGfxAllocMEM2(u32 size, u32 align) in DEMOGfxAllocMEM2() argument 139 if (align < 4) in DEMOGfxAllocMEM2() [all …]
|
| D | demoDRC.c | 201 u32 size, align; in DEMODRCInit() local 202 GX2CalcColorBufferAuxInfo(&DEMODRCColorBuffer, &size, &align); in DEMODRCInit() 203 ptr = DEMOGfxAllocMEM1(size, align); in DEMODRCInit() 224 u32 size, align; in DEMODRCInit() local 225 GX2CalcDepthBufferHiZInfo(&DEMODRCDepthBuffer, &size, &align); in DEMODRCInit() 226 ptr = DEMOGfxAllocMEM1(size, align); in DEMODRCInit() 322 u32 size, align; in DEMODRCAcquiredForeground() local 323 GX2CalcColorBufferAuxInfo(&DEMODRCColorBuffer, &size, &align); in DEMODRCAcquiredForeground() 324 ptr = DEMOGfxAllocMEM1(size, align); in DEMODRCAcquiredForeground() 339 u32 size, align; in DEMODRCAcquiredForeground() local [all …]
|
| D | demoSystem.c | 152 void* DEMOAllocEx(u32 size, u32 align) in DEMOAllocEx() argument 155 return MEMAllocFromDefaultHeapEx(size, align); in DEMOAllocEx() 157 return gpAllocFunc(size, align); in DEMOAllocEx()
|
| D | demoGfd.c | 405 GX2Texture* DEMOGFDReadAlignedTexture(void **pFileBuf, u32 index, u32 align, const char *fileName) in DEMOGFDReadAlignedTexture() argument 411 *pFileBuf = DEMOGfxLoadAssetFileAlign(fileName, &len, align); in DEMOGFDReadAlignedTexture()
|
| /CafeSDK-2.12.13/system/src/lib/demo/headers/cafe/demo/ |
| D | demoGfx.h | 59 void *DEMOGfxAllocMEM1(u32 size, u32 align); 65 void *DEMOGfxAllocBucket(u32 size, u32 align); 71 void *DEMOGfxAllocMEM2(u32 size, u32 align);
|
| D | demoGfd.h | 132 GX2Texture* DEMOGFDReadAlignedTexture(void **pFileBuf, u32 index, u32 align, const char *fileName);
|
| D | demoSystem.h | 98 void* DEMOAllocEx(u32 size, u32 align);
|
| /CafeSDK-2.12.13/system/include/cafe/demo/ |
| D | demoGfx.h | 59 void *DEMOGfxAllocMEM1(u32 size, u32 align); 65 void *DEMOGfxAllocBucket(u32 size, u32 align); 71 void *DEMOGfxAllocMEM2(u32 size, u32 align);
|
| D | demoGfd.h | 132 GX2Texture* DEMOGFDReadAlignedTexture(void **pFileBuf, u32 index, u32 align, const char *fileName);
|
| D | demoSystem.h | 98 void* DEMOAllocEx(u32 size, u32 align);
|
| /CafeSDK-2.12.13/system/include/cafe/gx2/ |
| D | gx2Misc.h | 254 void GX2API GX2NotifyMemAlloc(void* addr, u32 size, u32 align); 266 GX2_INLINE void GX2NotifyMemAlloc(const void* addr, u32 size, u32 align){ in GX2NotifyMemAlloc() argument 269 align=align; in GX2NotifyMemAlloc()
|
| /CafeSDK-2.12.13/system/include/cafe/os/ |
| D | OSMemmap.h | 39 va_t OSAllocVirtAddr(va_t va, size_t size, size_t align);
|
| /CafeSDK-2.12.13/system/include/windows/ |
| D | mem.h | 27 #define align(a) macro
|
| /CafeSDK-2.12.13/system/src/lib/mtx/ |
| D | mtxQuat_asm.s | 16 .align 2
|
| D | mtxVec_asm.s | 16 .align 2
|
| D | mtx44_asm.s | 16 .align 2
|
| D | mtx_asm.s | 16 .align 2
|