Searched refs:nptr (Results 1 – 7 of 7) sorted by relevance
/linux/tools/include/nolibc/ |
H A D | stdlib.h | 442 uintmax_t __strtox(const char *nptr, char **endptr, int base, intmax_t lower_limit, uintmax_t upper… in __strtox() argument 454 while (isspace(*nptr)) in __strtox() 455 nptr++; in __strtox() 457 if (*nptr == '+') { in __strtox() 458 nptr++; in __strtox() 459 } else if (*nptr == '-') { in __strtox() 461 nptr++; in __strtox() 470 (strncmp(nptr, "0x", 2) == 0 || strncmp(nptr, "0X", 2) == 0)) { in __strtox() 472 nptr += 2; in __strtox() 473 } 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 struct media_entity_notify *nptr); 379 struct media_entity_notify *nptr); 455 struct media_entity_notify *nptr) in media_device_register_entity_notify() argument 460 struct media_entity_notify *nptr) in media_device_unregister_entity_notify() argument
|
/linux/drivers/media/mc/ |
H A D | mc-device.c | 756 struct media_entity_notify *nptr) in media_device_register_entity_notify() argument 759 list_add_tail(&nptr->list, &mdev->entity_notify); in media_device_register_entity_notify() 768 struct media_entity_notify *nptr) in __media_device_unregister_entity_notify() argument 770 list_del(&nptr->list); in __media_device_unregister_entity_notify() 774 struct media_entity_notify *nptr) in media_device_unregister_entity_notify() argument 777 __media_device_unregister_entity_notify(mdev, nptr); in media_device_unregister_entity_notify()
|
/linux/fs/xfs/libxfs/ |
H A D | xfs_ialloc_btree.c | 55 const union xfs_btree_ptr *nptr, in xfs_inobt_set_root() argument 61 agi->agi_root = nptr->s; in xfs_inobt_set_root() 69 const union xfs_btree_ptr *nptr, in xfs_finobt_set_root() argument 75 agi->agi_free_root = nptr->s; in xfs_finobt_set_root()
|
H A D | xfs_btree.c | 3110 union xfs_btree_ptr nptr; /* new block addr */ in xfs_btree_new_iroot() local 3125 error = xfs_btree_alloc_block(cur, pp, &nptr, stat); in xfs_btree_new_iroot() 3134 error = xfs_btree_get_buf_block(cur, &nptr, &cblock, &cbp); in xfs_btree_new_iroot() 3170 error = xfs_btree_debug_check_ptr(cur, &nptr, 0, level); in xfs_btree_new_iroot() 3174 xfs_btree_copy_ptrs(cur, pp, &nptr, 1); in xfs_btree_new_iroot() 3228 int nptr; /* new value for key index, 1 or 2 */ in xfs_btree_new_root() local 3279 nptr = 1; in xfs_btree_new_root() 3290 nptr = 2; in xfs_btree_new_root() 3331 cur->bc_levels[cur->bc_nlevels].ptr = nptr; in xfs_btree_new_root() 3350 union xfs_btree_ptr *nptr, /* new btree ptr */ in xfs_btree_make_block_unfull() argument [all …]
|
H A D | xfs_btree.h | 148 const union xfs_btree_ptr *nptr, int level_change);
|