Home
last modified time | relevance | path

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

/CafeSDK-2.12.13-1/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.c242 #define SKIP_NON_DIGIT(c) ((c)!=0&&((c)<'0'||(c)>'9')) in DEMOGfxInit() macro
250 renderWidth = (u32)atoi(p+10+SKIP_NON_DIGIT(p[10])); in DEMOGfxInit()
254 renderHeight = (u32)atoi(p+11+SKIP_NON_DIGIT(p[11])); in DEMOGfxInit()
258 p = p+14+SKIP_NON_DIGIT(p[14]); in DEMOGfxInit()
281 p = p+16+SKIP_NON_DIGIT(p[16]); in DEMOGfxInit()
296 p = p+14+SKIP_NON_DIGIT(p[14]); in DEMOGfxInit()
313 renderAAMode = (GX2AAMode)atoi(p+12+SKIP_NON_DIGIT(p[12])); in DEMOGfxInit()
343 swapInterval = atoi(p+offset+SKIP_NON_DIGIT(p[offset])); in DEMOGfxInit()
DdemoTest.c137 #define SKIP_NON_DIGIT(c) ((c)!=0&&((c)<'0'||(c)>'9')) in DEMOTestInit() macro