Home
last modified time | relevance | path

Searched refs:cutlim (Results 1 – 4 of 4) sorted by relevance

/external/dbus/tools/
Dstrtoull.c72 int neg, any, cutlim; in strtoull() local
105 cutlim = ULLONG_MAX % base; in strtoull()
117 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()
Dstrtoll.c71 int neg, any, cutlim; in strtoll() local
125 cutlim = cutoff % base; in strtoll()
138 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll()
/external/bison/lib/
Dstrtol.c257 register unsigned int cutlim; in INTERNAL() local
360 cutlim = STRTOL_ULONG_MAX % (unsigned LONG int) base; in INTERNAL()
377 if (i > cutoff || (i == cutoff && c > cutlim)) in INTERNAL()
/external/bluetooth/glib/glib/
Dgstrfuncs.c707 guint64 cutlim; in g_parse_long_long() local
758 cutlim = G_MAXUINT64 % base; in g_parse_long_long()
774 if (ui64 > cutoff || (ui64 == cutoff && c > cutlim)) in g_parse_long_long()