Searched refs:endptr (Results 1 - 25 of 26) sorted by relevance

12

/xsrc/external/mit/MesaLib/dist/src/freedreno/afuc/
H A Dutil.c57 char *endptr = NULL; local in function:reg
58 val = strtol(name, &endptr, 0);
59 if (endptr && *endptr) {
144 char *endptr = NULL; local in function:afuc_gpu_reg
145 val = strtol(name, &endptr, 0);
146 if (endptr && *endptr) {
201 char *endptr = NULL; local in function:afuc_gpr_reg
202 unsigned val = strtol(name, &endptr, 1
[all...]
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/config/
H A Dscanner.l151 char *endptr;
156 x = strtol(tmp, &endptr, 10);
157 while (*endptr && !isdigit(*endptr)) ++endptr;
158 y = strtol(endptr, NULL, 10);
H A Dscanner.c1994 char *endptr; local in function:getdimension
1999 x = strtol(tmp, &endptr, 10);
2000 while (*endptr && !isdigit(*endptr)) ++endptr;
2001 y = strtol(endptr, NULL, 10);
/xsrc/external/mit/libdrm/dist/amdgpu/
H A Damdgpu_asic_id.c45 char *endptr; local in function:parse_one_line
61 did = strtol(s_did, &endptr, 16);
62 if (*endptr)
75 rid = strtol(s_rid, &endptr, 16);
76 if (*endptr)
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/common/
H A Dutils.c535 char *endptr; local in function:driQueryRendererIntegerCommon
538 v[0] = strtol(ver, &endptr, 10);
539 assert(endptr[0] == '.');
540 if (endptr[0] != '.')
543 v[1] = strtol(endptr + 1, &endptr, 10);
544 assert(endptr[0] == '.');
545 if (endptr[0] != '.')
548 v[2] = strtol(endptr + 1, &endptr, 1
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/common/
H A Dutils.c570 char *endptr; local in function:driQueryRendererIntegerCommon
573 v[0] = strtol(ver, &endptr, 10);
574 assert(endptr[0] == '.');
575 if (endptr[0] != '.')
578 v[1] = strtol(endptr + 1, &endptr, 10);
579 assert(endptr[0] == '.');
580 if (endptr[0] != '.')
583 v[2] = strtol(endptr + 1, &endptr, 1
[all...]
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dlower_xfb_varying.cpp174 char *endptr = NULL; local in function:get_deref
177 index = strtol(name + 1, &endptr, 10);
178 assert(*type != NULL && (*type)->is_array() && endptr[0] == ']');
181 return get_deref(ctx, endptr + 1, shader, deref, type);
/xsrc/external/mit/libXfont/dist/src/FreeType/
H A Dftfuncs.c2258 char *beginptr=NULL,*endptr; local in function:FreeTypeSetUpTTCap
2264 lv=strtol(beginptr, &endptr, 10);
2265 if ( *beginptr != '\0' && *endptr == '\0' ) {
2336 char *endptr,*beginptr; local in function:FreeTypeSetUpTTCap
2341 v=strtod(beginptr, &endptr);
2342 if ( endptr!=beginptr ) {
2345 if ( *endptr != ';' && *endptr != ',' ) break;
2346 if ( *endptr == ',' ) {
2347 beginptr=endptr
2461 char *endptr; local in function:FreeTypeSetUpTTCap
2471 char *endptr; local in function:FreeTypeSetUpTTCap
2607 char *endptr,*beginptr=strMetrics; local in function:FreeTypeSetUpTTCap
2637 char *endptr,*beginptr=semic_ptr+1; local in function:FreeTypeSetUpTTCap
[all...]
/xsrc/external/mit/libXfont2/dist/src/FreeType/
H A Dftfuncs.c2261 char *beginptr=NULL,*endptr; local in function:FreeTypeSetUpTTCap
2267 lv=strtol(beginptr, &endptr, 10);
2268 if ( *beginptr != '\0' && *endptr == '\0' ) {
2340 char *endptr,*beginptr; local in function:FreeTypeSetUpTTCap
2345 v=strtod(beginptr, &endptr);
2346 if ( endptr!=beginptr ) {
2349 if ( *endptr != ';' && *endptr != ',' ) break;
2350 if ( *endptr == ',' ) {
2351 beginptr=endptr
2465 char *endptr; local in function:FreeTypeSetUpTTCap
2475 char *endptr; local in function:FreeTypeSetUpTTCap
2611 char *endptr,*beginptr=strMetrics; local in function:FreeTypeSetUpTTCap
2641 char *endptr,*beginptr=semic_ptr+1; local in function:FreeTypeSetUpTTCap
[all...]
/xsrc/external/mit/libXfont/dist/src/util/
H A Dfontutil.c238 fsRange *ptr = NULL, *ptr1, *ptr2, *endptr; local in function:add_range
368 endptr = *range + *nranges;
381 for (ptr2 = ptr; ptr2 < endptr; ptr2++)
399 memmove(ptr1, ptr2, (char *)endptr - (char *)ptr2);
/xsrc/external/mit/libXfont2/dist/src/util/
H A Dfontutil.c229 fsRange *ptr = NULL, *ptr1, *ptr2, *endptr; local in function:add_range
359 endptr = *range + *nranges;
372 for (ptr2 = ptr; ptr2 < endptr; ptr2++)
390 memmove(ptr1, ptr2, (char *)endptr - (char *)ptr2);
/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Du_debug.c205 char *endptr; local in function:debug_get_num_option
207 result = strtol(str, &endptr, 0);
208 if (str == endptr) {
/xsrc/external/mit/MesaLib/dist/src/util/
H A Du_debug.c204 char *endptr; local in function:debug_get_num_option
206 result = strtol(str, &endptr, 0);
207 if (str == endptr) {
/xsrc/external/mit/MesaLib/dist/src/intel/common/
H A Dintel_measure.c344 char *nptr = buf, *endptr = buf; local in function:intel_measure_frame_transition
345 while (*nptr != '\0' && *endptr != '\0') {
346 long fcount = strtol(nptr, &endptr, 10);
347 if (nptr == endptr) {
360 nptr = endptr + 1;
/xsrc/external/mit/xinput/dist/src/
H A Dproperty.c315 char *endptr; local in function:do_set_prop_xi1
404 *(float *)(data.l + i) = strtod(argv[2 + i], &endptr);
405 if (endptr == argv[2 + i]) {
620 char *endptr; local in function:do_set_prop_xi2
702 *(float *)(data.l + i) = strtod(argv[2 + i], &endptr);
703 if (endptr == argv[2 + i]) {
/xsrc/external/mit/libICE/dist/src/
H A Dconnect.c509 char *ptr, *endptr, *delim; local in function:ConnectToPeer
520 endptr = networkIdsList + len;
535 while (ptr < endptr && !madeConnection)
538 delim = endptr;
/xsrc/external/mit/libxcb/dist/src/
H A Dxcb_util.c118 char *dot, *endptr; local in function:_xcb_parse_display_path_to_socket
126 lscreen = strtoul(dot + 1, &endptr, 10);
127 if (lscreen > INT_MAX || !endptr || *endptr || errno)
/xsrc/external/mit/xorg-server.old/dist/hw/xwin/
H A DInitOutput.c511 const char *endptr, *ptr, *oldptr = defaultFontPath; local in function:winFixupPaths
513 endptr = oldptr + strlen(oldptr);
516 ptr = endptr;
566 ptr = endptr;
/xsrc/external/mit/xorg-server/dist/hw/xwin/
H A DInitOutput.c489 const char *endptr, *ptr, *oldptr = defaultFontPath; local in function:winFixupPaths
491 endptr = oldptr + strlen(oldptr);
494 ptr = endptr;
541 ptr = endptr;
/xsrc/external/mit/ctwm/dist/
H A Dwin_resize.c1182 char *endptr; local in function:ChangeSize
1188 wx = strtol(in_string, &endptr, 10);
1189 if(*endptr++ != 'x') {
1195 wy = strtol(endptr, &endptr, 10);
1219 change = strtol(in_string + cmdlen + 1, &endptr, 10);
1220 if(*endptr != 0) {
/xsrc/external/mit/xedit/dist/
H A Dxedit.c211 char *endptr; local in function:main
213 lineno = strtol(argv[i], &endptr, 10);
215 if (*endptr)
/xsrc/external/mit/xrandr/dist/
H A Dxrandr.c2257 char *endptr; local in function:check_strtol
2258 int result = strtol(s, &endptr, 10);
2259 if (s == endptr)
2267 char *endptr; local in function:check_strtod
2268 double result = strtod(s, &endptr);
2269 if (s == endptr)
2337 char *endptr; local in function:property_values_from_string
2338 long int val = strtol (token, &endptr, 0);
2340 if (token == endptr || *endptr !
2781 char *endptr; local in function:main
[all...]
/xsrc/external/mit/fontconfig/dist/src/
H A Dfccache.c1165 char *endptr; local in function:FcDirChecksum
1173 epoch = strtoull(source_date_epoch, &endptr, 10);
1175 if (endptr == source_date_epoch)
1183 else if (*endptr != '\0')
/xsrc/external/mit/xterm/dist/
H A Dmain.c854 char *endptr = strrchr(host, ':'); \
855 if (endptr) { \
857 *endptr = '\0'; \
/xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
H A Dradv_device.c1743 char *endptr; local in function:radv_get_int_debug_option
1745 result = strtol(str, &endptr, 0);
1746 if (str == endptr) {

Completed in 45 milliseconds

12