Searched refs:nptr (Results 1 – 6 of 6) sorted by relevance
| /linux/tools/include/nolibc/ |
| H A D | stdlib.h | 440 uintmax_t __strtox(const char *nptr, char **endptr, int base, intmax_t lower_limit, uintmax_t upper… in __strtox() argument 452 while (isspace(*nptr)) in __strtox() 453 nptr++; in __strtox() 455 if (*nptr == '+') { in __strtox() 456 nptr++; in __strtox() 457 } else if (*nptr == '-') { in __strtox() 459 nptr++; in __strtox() 468 (strncmp(nptr, "0x", 2) == 0 || strncmp(nptr, "0X", 2) == 0)) { in __strtox() 470 nptr += 2; in __strtox() 471 } else if (base == 0 && strncmp(nptr, "0", 1) == 0) { in __strtox() [all …]
|
| /linux/lib/ |
| H A D | earlycpio.c | 64 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/include/media/ |
| H A D | media-device.h | 368 * @nptr: The media_entity_notify 377 struct media_entity_notify *nptr); 384 * @nptr: The media_entity_notify 388 struct media_entity_notify *nptr); 464 struct media_entity_notify *nptr) in media_device_pci_init() 469 struct media_entity_notify *nptr) 455 media_device_register_entity_notify(struct media_device * mdev,struct media_entity_notify * nptr) media_device_register_entity_notify() argument 460 media_device_unregister_entity_notify(struct media_device * mdev,struct media_entity_notify * nptr) media_device_unregister_entity_notify() argument
|
| /linux/drivers/media/mc/ |
| H A D | mc-device.c | 785 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 D | vector_user.c | 388 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 D | xfs_btree.h | 148 const union xfs_btree_ptr *nptr, int level_change);
|