HomeSort by relevance Sort by last modified time
    Searched full:endptr (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /build/tools/fs_get_stats/
fs_get_stats.c 39 char *endptr; local
51 perms = (unsigned)strtoul(argv[1], &endptr, 0);
52 if (!endptr || (endptr == argv[1]) || (*endptr != '\0')) {
  /system/core/toolbox/
chown.c 41 char* endptr; local
42 uid = (int) strtoul(user, &endptr, 0);
43 if (endptr == user) { // no conversion
54 char* endptr; local
55 gid = (int) strtoul(group, &endptr, 0);
56 if (endptr == group) { // no conversion
sleep.c 46 char *endptr; local
52 seconds = strtoul(argv[1], &endptr, 10);
54 if (endptr == argv[1]) {
  /external/srec/portable/src/
LCHAR.c 83 LCHAR* endPtr;
87 *result = LSTRTOL(text, &endPtr, base);
88 if (endPtr == text || (!LISSPACE(*endPtr) && *endPtr != L('\0')))
95 LCHAR* endPtr;
99 *result = LSTRTOUL(text, &endPtr, base);
100 if (endPtr == text || (!LISSPACE(*endPtr) && *endPtr != L('\0'))
    [all...]
  /external/opencore/oscl/oscl/osclbase/src/
oscl_tagtree.cpp 29 tag_base_type endptr = dest + oscl_strlen(dest); local
30 while (*endptr != '.' && endptr != dest) endptr--;
31 *endptr = '\0';
  /bionic/libc/stdlib/
strntoimax.c 31 intmax_t strntoimax(const char *nptr, char **endptr, int base, size_t n)
33 return (intmax_t) strntoumax(nptr, endptr, base, n);
strtoll.c 46 strtoll(const char *nptr, char **endptr, int base)
48 return strtoimax(nptr, endptr, base);
strtoull.c 46 strtoull(const char *nptr, char **endptr, int base)
48 return (unsigned long long)strtoumax(nptr, endptr, base);
strntoumax.c 49 strntoumax(const char *nptr, char **endptr, int base, size_t n)
91 if ( endptr )
92 *endptr = (char *)p;
strtoul.c 43 strtoul(const char *nptr, char **endptr, int base)
99 if (endptr != 0)
100 *endptr = (char *) (any ? s - 1 : nptr);
strtoumax.c 43 strtoumax(const char *nptr, char **endptr, int base)
112 if (endptr != 0)
113 *endptr = (char *) (any ? s - 1 : nptr);
wchar.c 362 double wcstod(const wchar_t *nptr, wchar_t **endptr)
364 return strtod( (const char*)nptr, (char**)endptr );
372 long int wcstol(const wchar_t *nptr, wchar_t **endptr, int base)
374 return strtol( (const char*)nptr, (char**)endptr, base );
377 unsigned long int wcstoul(const wchar_t *nptr, wchar_t **endptr, int base)
379 return strtoul( (const char*)nptr, (char**)endptr, base );
strtoimax.c 43 strtoimax(const char *nptr, char **endptr, int base)
168 if (endptr != 0)
169 *endptr = (char *) (any ? s - 1 : nptr);
  /external/bluetooth/bluez/common/
sdp-xml.c 449 char *endptr; local
461 val = strtoll(data, &endptr, 16);
464 if (*endptr != '\0')
485 char *endptr; local
510 int8_t val = strtoul(data, &endptr, 0);
513 if ((endptr != data) && (*endptr != '\0'))
522 uint8_t val = strtoul(data, &endptr, 0);
525 if ((endptr != data) && (*endptr != '\0')
    [all...]
  /external/bison/lib/
strtol.c 248 If ENDPTR is not NULL, a pointer to the character after the last
249 one converted is stored in *ENDPTR. */
252 INTERNAL (strtol) (const STRING_TYPE *nptr, STRING_TYPE **endptr,
390 /* Store in ENDPTR the address of one character
392 if (endptr != NULL)
393 *endptr = (STRING_TYPE *) s;
422 ENDPTR points to the `x`. */
423 if (endptr != NULL)
427 *endptr = (STRING_TYPE *) &save[-1];
430 *endptr = (STRING_TYPE *) nptr
    [all...]
  /bootable/recovery/applypatch/
main.c 37 char* endptr; local
38 size_t bytes = strtol(argv[2], &endptr, 10);
39 if (bytes == 0 && endptr == argv[2]) {
107 char* endptr; local
108 size_t target_size = strtol(argv[4], &endptr, 10);
109 if (target_size == 0 && endptr == argv[4]) {
  /external/opencore/protocols/rtsp_parcom/src/
rtsp_par_com_incoming_message.cpp 671 char * endPtr = beginPtr + Len;
673 while (beginPtr < endPtr)
677 while (beginPtr < endPtr)
683 beginPtr = endPtr;
906 const char *startPtr, *endPtr, *nxtPtr;
979 if (NULL == (endPtr = oscl_strstr(startPtr, "/")))
981 endPtr = final_end;
986 if (!oscl_strncmp(startPtr, "RTP", endPtr - startPtr))
990 else if (!oscl_strncmp(startPtr, "x-pn-tng", endPtr - startPtr))
999 if (endPtr == final_end
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/dhd/exe/
dhdu.c 691 char *endptr = NULL; local
704 func = strtol(argv[1], &endptr, 0);
705 if (*endptr != '\0') {
711 size = strtol(argv[2], &endptr, 0);
712 if (*endptr != '\0') {
1049 char *endptr = NULL; local
1058 idletime = strtol(argv[1], &endptr, 0);
1059 if (*endptr != '\0') {
1071 endptr = buf + strlen(buf) + 1;
1072 memcpy(endptr, &idletime, sizeof(uint32))
1098 char *endptr = NULL; local
1842 char *endptr = NULL; local
1879 char *endptr = NULL; local
1970 char *endptr = NULL; local
2082 char *endptr = NULL; local
    [all...]
  /external/icu4c/tools/pkgdata/
pkgtypes.c 157 CharList *endptr = NULL, *tmp; local
161 end = &endptr;
245 CharList *endptr = NULL;
250 end = &endptr;
  /build/tools/kcm/
kcm.cpp 303 char* endptr; local
304 *value = strtol(str, &endptr, 0);
305 if (*endptr != '\0') {
336 char* endptr; local
337 *value = strtol(str, &endptr, 0);
338 if (*endptr != '\0') {
  /external/bluetooth/bluez/serial/
port.c 106 char *endptr = NULL; local
108 channel = strtol(pattern, &endptr, 10);
118 if (endptr && *endptr == '\0' && port->channel == channel)
503 char *endptr = NULL; local
506 channel = strtol(pattern, &endptr, 10);
507 if ((endptr && *endptr != '\0') || channel < 1 || channel > 30)
  /hardware/ti/wlan/wl1271/CUDK/os/common/inc/
cu_osapi.h 108 S32 os_strtol(const PS8 nptr, PPS8 endptr, S32 base);
109 U32 os_strtoul(const PS8 nptr, PPS8 endptr, S32 base);
  /system/wlan/ti/wilink_6_1/CUDK/os/common/inc/
cu_osapi.h 104 S32 os_strtol(const PS8 nptr, PPS8 endptr, S32 base);
105 U32 os_strtoul(const PS8 nptr, PPS8 endptr, S32 base);
  /external/bluetooth/glib/glib/
gstrfuncs.h 131 gchar **endptr);
133 gchar **endptr);
135 gchar **endptr,
138 gchar **endptr,
  /bionic/libc/include/
stdlib.h 68 extern double strtod(const char *nptr, char **endptr);
70 static __inline__ float strtof(const char *nptr, char **endptr)
72 return (float)strtod(nptr, endptr);

Completed in 2361 milliseconds

1 2 3 4