Home
last modified time | relevance | path

Searched refs:SKIP_NON_DIGIT (Results 1 – 3 of 3) sorted by relevance

/CafeSDK-2.12.13/system/src/lib/demo/
DdemoDRC.c87 #define SKIP_NON_DIGIT(c) ((c)!=0&&((c)<'0'||(c)>'9')) in DEMODRCInit() macro
95 renderWidth = (u32)atoi(p+14+SKIP_NON_DIGIT(p[14])); in DEMODRCInit()
99 renderHeight = (u32)atoi(p+15+SKIP_NON_DIGIT(p[15])); in DEMODRCInit()
103 p = p+18+SKIP_NON_DIGIT(p[18]); in DEMODRCInit()
122 p = p+20+SKIP_NON_DIGIT(p[20]); in DEMODRCInit()
137 p = p+18+SKIP_NON_DIGIT(p[18]); in DEMODRCInit()
154 renderAAMode = (GX2AAMode)atoi(p+16+SKIP_NON_DIGIT(p[16])); in DEMODRCInit()
DdemoGfx.c234 #define SKIP_NON_DIGIT(c) ((c)!=0&&((c)<'0'||(c)>'9')) in DEMOGfxInit() macro
242 renderWidth = (u32)atoi(p+10+SKIP_NON_DIGIT(p[10])); in DEMOGfxInit()
246 renderHeight = (u32)atoi(p+11+SKIP_NON_DIGIT(p[11])); in DEMOGfxInit()
250 p = p+14+SKIP_NON_DIGIT(p[14]); in DEMOGfxInit()
273 p = p+16+SKIP_NON_DIGIT(p[16]); in DEMOGfxInit()
288 p = p+14+SKIP_NON_DIGIT(p[14]); in DEMOGfxInit()
305 renderAAMode = (GX2AAMode)atoi(p+12+SKIP_NON_DIGIT(p[12])); in DEMOGfxInit()
335 swapInterval = atoi(p+offset+SKIP_NON_DIGIT(p[offset])); in DEMOGfxInit()
DdemoTest.c136 #define SKIP_NON_DIGIT(c) ((c)!=0&&((c)<'0'||(c)>'9')) in DEMOTestInit() macro