Searched refs:SKIP_NON_DIGIT (Results 1 – 3 of 3) sorted by relevance
87 #define SKIP_NON_DIGIT(c) ((c)!=0&&((c)<'0'||(c)>'9')) in DEMODRCInit() macro95 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()
234 #define SKIP_NON_DIGIT(c) ((c)!=0&&((c)<'0'||(c)>'9')) in DEMOGfxInit() macro242 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()
136 #define SKIP_NON_DIGIT(c) ((c)!=0&&((c)<'0'||(c)>'9')) in DEMOTestInit() macro