Home
last modified time | relevance | path

Searched refs:nptr (Results 1 – 5 of 5) sorted by relevance

/linux/tools/include/nolibc/
H A Dstdlib.h435 uintmax_t __strtox(const char *nptr, char **endptr, int base, intmax_t lower_limit, uintmax_t upper_limit) in u64toa()
447 while (isspace(*nptr)) in __strtox()
448 nptr++; in __strtox()
450 if (*nptr == '+') { in __strtox()
451 nptr++; in __strtox()
452 } else if (*nptr == '-') { in __strtox()
454 nptr++; in __strtox()
463 (strncmp(nptr, "0x", 2) == 0 || strncmp(nptr, "0X", 2) == 0)) { in __strtox()
465 nptr in __strtox()
440 __strtox(const char * nptr,char ** endptr,int base,intmax_t lower_limit,uintmax_t upper_limit) __strtox() argument
513 strtol(const char * nptr,char ** endptr,int base) strtol() argument
519 strtoul(const char * nptr,char ** endptr,int base) strtoul() argument
525 strtoll(const char * nptr,char ** endptr,int base) strtoll() argument
531 strtoull(const char * nptr,char ** endptr,int base) strtoull() argument
537 strtoimax(const char * nptr,char ** endptr,int base) strtoimax() argument
543 strtoumax(const char * nptr,char ** endptr,int base) strtoumax() argument
[all...]
/linux/lib/
H A Dearlycpio.c64 const char *p, *dptr, *nptr; in find_cpio_data() local
112 nptr = PTR_ALIGN(dptr + ch[C_FILESIZE], 4); in find_cpio_data()
114 if (nptr > p + len || dptr < p || nptr < dptr) in find_cpio_data()
122 *nextoff = (long)nptr - (long)data; in find_cpio_data()
135 len -= (nptr - p); in find_cpio_data()
136 p = nptr; in find_cpio_data()
/linux/drivers/media/mc/
H A Dmc-device.c785 struct media_entity_notify *nptr) in media_device_register_entity_notify() argument
788 list_add_tail(&nptr->list, &mdev->entity_notify); in media_device_register_entity_notify()
797 struct media_entity_notify *nptr) in __media_device_unregister_entity_notify() argument
799 list_del(&nptr->list); in __media_device_unregister_entity_notify()
803 struct media_entity_notify *nptr) in media_device_unregister_entity_notify() argument
806 __media_device_unregister_entity_notify(mdev, nptr); in media_device_unregister_entity_notify()
/linux/arch/um/drivers/
H A Dvector_user.c388 static int strtofd(const char *nptr) in strtofd() argument
393 if (nptr == NULL) in strtofd()
397 fd = strtol(nptr, &endptr, 10); in strtofd()
398 if (nptr == endptr || in strtofd()
/linux/fs/xfs/libxfs/
H A Dxfs_btree.h148 const union xfs_btree_ptr *nptr, int level_change);