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()
242 #define SKIP_NON_DIGIT(c) ((c)!=0&&((c)<'0'||(c)>'9')) in DEMOGfxInit() macro250 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()
137 #define SKIP_NON_DIGIT(c) ((c)!=0&&((c)<'0'||(c)>'9')) in DEMOTestInit() macro