Searched defs:numstr (Results 1 - 7 of 7) sorted by relevance

/external/openssh/openbsd-compat/
H A Dstrtonum.c34 strtonum(const char *numstr, long long minval, long long maxval, argument
55 ll = strtoll(numstr, &ep, 10);
56 if (numstr == ep || *ep != '\0')
/external/libese/libese-hw/nxp/pn80t/
H A Dlinux_spidev.c82 char numstr[8]; local
97 if (snprintf(numstr, sizeof(numstr), "%d", num) >= (int)sizeof(numstr)) {
106 (void)write(fd, numstr, strlen(numstr));
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DNumberFormatTest.java3223 String numstr = "12345";
3231 threads[i] = new ParseThreadJB5358((DecimalFormat)fmt.clone(), numstr, expected, errors);
3253 private final String numstr; field in class:NumberFormatTest.ParseThreadJB5358
3257 public ParseThreadJB5358(DecimalFormat decfmt, String numstr, double expect, ArrayList errors) { argument
3259 this.numstr = numstr;
3268 Number n = decfmt.parse(numstr);
4144 final String numstr = "* 1^234:56";
4145 expect2(fmt, 1234.56, numstr);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberFormatTest.java3222 String numstr = "12345";
3230 threads[i] = new ParseThreadJB5358((DecimalFormat)fmt.clone(), numstr, expected, errors);
3252 private final String numstr; field in class:NumberFormatTest.ParseThreadJB5358
3256 public ParseThreadJB5358(DecimalFormat decfmt, String numstr, double expect, ArrayList errors) { argument
3258 this.numstr = numstr;
3267 Number n = decfmt.parse(numstr);
4143 final String numstr = "* 1^234:56";
4144 expect2(fmt, 1234.56, numstr);
/external/tcpdump/
H A Dprint-telnet.c374 (((x) < sizeof(tab)/sizeof(tab[0]) && tab[(x)]) ? tab[(x)] : numstr(x))
377 numstr(int x) function
H A Dprint-isakmp.c640 static char *numstr(int);
739 (((x) < sizeof(tab)/sizeof(tab[0]) && tab[(x)]) ? tab[(x)] : numstr(x))
1694 ND_PRINT((ndo," type=%s", numstr(ntohs(n.type))));
1698 ND_PRINT((ndo," type=%s", numstr(ntohs(n.type))));
1718 ND_PRINT((ndo," type=%s", numstr(ntohs(n.type))));
2642 numstr(int x) function
/external/toybox/lib/
H A Dlib.c294 long long atolx(char *numstr) argument
296 char *c = numstr, *suffixes="cbkmgtpe", *end;
299 val = xstrtol(numstr, &c, 0);
300 if (c != numstr && *c && (end = strchr(suffixes, tolower(*c)))) {
309 if (c==numstr || *c) error_exit("not integer: %s", numstr);
314 long long atolx_range(char *numstr, long long low, long long high) argument
316 long long val = atolx(numstr);

Completed in 583 milliseconds