Home
last modified time | relevance | path

Searched refs:c (Results 1 – 25 of 53) sorted by relevance

123

/CafeSDK-2.12.13/system/src/lib/libsys/
Dmakefile41 CLIBSRCS := ind_alloc.c \
42 ind_bcnt.c \
43 ind_gmtm.c \
44 ind_gpid.c \
45 ind_gprf.c \
46 ind_heap.c \
47 ind_io.c \
48 ind_lock.c \
49 ind_manprf.c \
50 ind_mprf.c \
[all …]
Dlibsys.gpj13 ind_crt1.c
16 ind_io.c
17 ind_bcnt.c
20 ind_errn.c
21 ind_exit.c
24 ind_gmtm.c
25 ind_gpid.c
26 ind_gprf.c
27 ind_heap.c
29 ind_alloc.c
[all …]
Dprof_mip.c68 unsigned char c,x; in __ghs_bmcisr_c() local
74 for (c = 8; c >= 1; c--) in __ghs_bmcisr_c()
77 buf[c] = (x <= 9) ? ('0'+x) : ('a'+x-10); in __ghs_bmcisr_c()
Dind_tmzn.c241 #define IsAlpha(c) ((c>='A'&&c<='Z')||(c>='a'&&c<='z')) argument
242 #define IsDigit(c) (c>='0'&&c<='9') argument
Dind_gcnt.gpj3 ind_gcnt.c
Dind_mcnt.gpj3 ind_mcnt.c
/CafeSDK-2.12.13/system/include/cafe/demo/
DdemoGfxTypes.h32 struct{ f32 r, g, b, a;} c; member
44 struct{ f32 r, g, b;} c; member
56 struct{ f32 r, g;} c; member
68 struct{ f32 r;} c; member
80 struct{ u32 r, g, b, a;} c; member
92 struct{ u32 r, g, b;} c; member
104 struct{ u32 r, g;} c; member
116 struct{ u32 r;} c; member
128 struct{ s32 r, g, b, a;} c; member
140 struct{ s32 r, g, b;} c; member
[all …]
/CafeSDK-2.12.13/system/src/lib/demo/headers/cafe/demo/
DdemoGfxTypes.h32 struct{ f32 r, g, b, a;} c; member
44 struct{ f32 r, g, b;} c; member
56 struct{ f32 r, g;} c; member
68 struct{ f32 r;} c; member
80 struct{ u32 r, g, b, a;} c; member
92 struct{ u32 r, g, b;} c; member
104 struct{ u32 r, g;} c; member
116 struct{ u32 r;} c; member
128 struct{ s32 r, g, b, a;} c; member
140 struct{ s32 r, g, b;} c; member
[all …]
/CafeSDK-2.12.13/system/include/cafe/gfd/
DgfdConstant.h31 #define _GFD_CREATE_MAGIC(a,b,c,d) ((a<<0) | (b<<8) | (c<<16) | (d<<24)) argument
33 #define _GFD_CREATE_MAGIC(a,b,c,d) ((a<<24) | (b<<16) | (c<<8) | (d<<0))
/CafeSDK-2.12.13/system/src/lib/gfd/headers/cafe/gfd/
DgfdConstant.h31 #define _GFD_CREATE_MAGIC(a,b,c,d) ((a<<0) | (b<<8) | (c<<16) | (d<<24)) argument
33 #define _GFD_CREATE_MAGIC(a,b,c,d) ((a<<24) | (b<<16) | (c<<8) | (d<<0))
/CafeSDK-2.12.13/system/include/cafe/os/
DOSDynLoad.h316 #define RPL_EXPORT_CLASS_FUNC(r, c, f, a) \ argument
317 void * const __attribute__((section(".export"))) fexport_ ## c ## f = (void *)c::f; \
318 r c::f a
320 #define RPL_EXPORT_CLASS_STATIC_DATA(t, c, d) \ argument
321 void * const __attribute__((section(".export"))) dexport_ ## c ## d = (void *)&c::d; \
322 t c::d
324 #define RPL_EXPORT_CLASS_STATIC_DATA_ARRAY(t, c, d, num) \ argument
325 void * const __attribute__((section(".export"))) dexport_ ## c ## d = (void *)&c::d; \
326 t c::d[num]
/CafeSDK-2.12.13/system/src/lib/szfile/
DCpuArch.c51 static void MyCPUID(UInt32 function, UInt32 *a, UInt32 *b, UInt32 *c, UInt32 *d) in MyCPUID() argument
70 *c = c2; in MyCPUID()
79 "=c" (*c) , in MyCPUID()
91 *c = CPUInfo[2]; in MyCPUID()
101 MyCPUID(1, &p->ver, &p->b, &p->c, &p->d); in x86cpuid_CheckAndRead()
165 return (p.c >> 25) & 1; in CPU_Is_Aes_Supported()
D7zDec.c258 static Bool IS_SUPPORTED_CODER(const CSzCoderInfo *c) in IS_SUPPORTED_CODER() argument
261 c->NumInStreams == 1 && in IS_SUPPORTED_CODER()
262 c->NumOutStreams == 1 && in IS_SUPPORTED_CODER()
263 c->MethodID <= (UInt32)0xFFFFFFFF && in IS_SUPPORTED_CODER()
264 IS_MAIN_METHOD((UInt32)c->MethodID); in IS_SUPPORTED_CODER()
267 #define IS_BCJ2(c) ((c)->MethodID == k_BCJ2 && (c)->NumInStreams == 4 && (c)->NumOutStreams == 1) argument
283 CSzCoderInfo *c = &f->Coders[1]; in CheckSupportedFolder() local
284 if (c->MethodID > (UInt32)0xFFFFFFFF || in CheckSupportedFolder()
285 c->NumInStreams != 1 || in CheckSupportedFolder()
286 c->NumOutStreams != 1 || in CheckSupportedFolder()
[all …]
Dszfile.c174 int c,v; in sCompStrLens() local
176 c = ((int)strLen2) - ((int)strLen1); in sCompStrLens()
177 if (c > 0) in sCompStrLens()
180 c = STRNICMP(pStr1, pStr2, strLen1); in sCompStrLens()
181 if (!c) in sCompStrLens()
183 return c; in sCompStrLens()
186 if (c < 0) in sCompStrLens()
200 int c; in sComparePaths() local
231 c = sCompStrLens(pPath1, (UINT32)(pSlash1-pPath1), pPath2, (UINT32)(pSlash2-pPath2)); in sComparePaths()
232 if (c) in sComparePaths()
[all …]
/CafeSDK-2.12.13/system/src/lib/zipfile/
Dzipfile.c34 #define ZIP_MAKEID4(endian,a,b,c,d) ((endian==ZIPFILE_ENDIAN_LITTLE) ? \ argument
35 …((((UINT32)a)&0xFF) | ((((UINT32)b)&0xFF)<<8) | ((((UINT32)c)&0xFF)<<16) | ((((UINT32)d)&0xFF)<<24…
36 …((((UINT32)d)&0xFF) | ((((UINT32)c)&0xFF)<<8) | ((((UINT32)b)&0xFF)<<16) | ((((UINT32)a)&0xFF)<<24…
40 #define ZIP_TARGETID4(a,b,c,d) ZIP_MAKEID4(ZIPFILE_ENDIAN,a,b,c,d) argument
417 int c,v; in sCompStrLens() local
419 c = ((int)strLen2) - ((int)strLen1); in sCompStrLens()
420 if (c > 0) in sCompStrLens()
423 c = STRNICMP(pStr1, pStr2, strLen1); in sCompStrLens()
424 if (!c) in sCompStrLens()
426 return c; in sCompStrLens()
[all …]
/CafeSDK-2.12.13/system/include/nn/
DResult.legacy.inclass.h30 #define NN_RESULT_H_MAKE_MASK_HELPER(c) \ argument
31 static const u32 MASK_ ## c = NN_RESULT_H_MAKE_MASK(SIZE_ ## c, SHIFTS_ ## c)
41 #define NN_RESULT_H_MAKE_MAX_HELPER(c) \ argument
42 static const s32 MAX_ ## c = NN_RESULT_H_MAKE_MAX(SIZE_ ## c)
DResult.h217 #define NN_RESULT_H_MAKE_MASK_HELPER(c) \ argument
218 static const u32 MASK_ ## c = NN_RESULT_H_MAKE_MASK(SIZE_ ## c, SHIFTS_ ## c)
226 #define NN_RESULT_H_MAKE_MAX_HELPER(c) \ argument
227 static const s32 MAX_ ## c = NN_RESULT_H_MAKE_MAX(SIZE_ ## c)
/CafeSDK-2.12.13/system/src/tool/cafex/winmakebsf/
Dmakebsf.c195 s32 c; in main() local
209 c = '?'; in main()
217 c = cur[1]; in main()
225 c = '?'; in main()
229 switch (c) in main()
302 fprintf(stderr, "unknown option %c\n", c); in main()
/CafeSDK-2.12.13/system/src/tool/cafex/Properties/binres/
DREADME.txt39 gcc.exe -O2 monitor.c -lwsock32 -static-libgcc -o win_monitor.exe
43 g++ -O2 dkt_main.c dkt_socket_methods.c dkt_char_methods.c
44 dkt_block_methods.c -lwsock32 -static-libgcc -o win_dkt.exe
/CafeSDK-2.12.13/system/src/lib/gfd/
Dmakefile36 CLIBSRCS := gfdInterface.c
/CafeSDK-2.12.13/system/src/lib/def_malloc/
Dmakefile42 CLIBSRCS := cos_def_malloc.c \
/CafeSDK-2.12.13/data/mlc/sys/title/0005001b/10042300/content/
Dexceptions.txt24 /vol/system_slc/title/0005001c;
63 /vol/storage_mlc01/sys/title/0005001c;
80 /vol/storage_mlc01/sys/title/0005003c;
107 /vol/storage_mlc01/title/0005001c;
124 /vol/storage_mlc01/title/0005003c;
/CafeSDK-2.12.13/data/mlc/sys/title/0005001b/10042300/content/content/
Dexceptions.txt24 /vol/system_slc/title/0005001c;
63 /vol/storage_mlc01/sys/title/0005001c;
80 /vol/storage_mlc01/sys/title/0005003c;
107 /vol/storage_mlc01/title/0005001c;
124 /vol/storage_mlc01/title/0005003c;
/CafeSDK-2.12.13/system/src/build/make/
Deppccleandepend_cygwin.sed25 # people change a .c file into a .cpp file (or vice versa), and this would break things.
28 1,3 s/[^ ]*[.]c //
/CafeSDK-2.12.13/system/src/lib/demo/
DdemoTest.c136 #define SKIP_NON_DIGIT(c) ((c)!=0&&((c)<'0'||(c)>'9')) in DEMOTestInit() argument

123