/linux/tools/hv/ |
A D | hv_kvp_daemon.c | 807 struct ifaddrs *curp; in kvp_get_ip_info() local 837 curp = ifap; in kvp_get_ip_info() 838 while (curp != NULL) { in kvp_get_ip_info() 839 if (curp->ifa_addr == NULL) { in kvp_get_ip_info() 840 curp = curp->ifa_next; in kvp_get_ip_info() 850 curp = curp->ifa_next; in kvp_get_ip_info() 863 curp = curp->ifa_next; in kvp_get_ip_info() 868 curp = curp->ifa_next; in kvp_get_ip_info() 883 curp->ifa_netmask, in kvp_get_ip_info() 900 curp->ifa_netmask; in kvp_get_ip_info() [all …]
|
/linux/sound/core/seq/ |
A D | seq_memory.c | 188 struct snd_seq_event_cell *curp, *nextptr; in snd_seq_cell_free() local 189 curp = cell->event.data.ext.ptr; in snd_seq_cell_free() 190 for (; curp; curp = nextptr) { in snd_seq_cell_free() 191 nextptr = curp->next; in snd_seq_cell_free() 192 curp->next = pool->free; in snd_seq_cell_free() 193 free_cell(pool, curp); in snd_seq_cell_free()
|
/linux/drivers/net/usb/ |
A D | sierra_net.c | 265 const u8 *curp = buf; in parse_hip() local 271 curp = save16bit(&hh->payload_len, curp); in parse_hip() 272 curp = save8bit(&hh->msgid, curp); in parse_hip() 273 curp = save8bit(&hh->msgspecific, curp); in parse_hip() 285 curp = save16bit(&hh->extmsgid, curp); in parse_hip()
|
/linux/sound/pci/nm256/ |
A D | nm256.c | 651 unsigned long curp; in snd_nm256_playback_pointer() local 655 curp = snd_nm256_readl(chip, NM_PBUFFER_CURRP) - (unsigned long)s->buf; in snd_nm256_playback_pointer() 656 curp %= s->dma_size; in snd_nm256_playback_pointer() 657 return bytes_to_frames(substream->runtime, curp); in snd_nm256_playback_pointer() 665 unsigned long curp; in snd_nm256_capture_pointer() local 669 curp = snd_nm256_readl(chip, NM_RBUFFER_CURRP) - (unsigned long)s->buf; in snd_nm256_capture_pointer() 670 curp %= s->dma_size; in snd_nm256_capture_pointer() 671 return bytes_to_frames(substream->runtime, curp); in snd_nm256_capture_pointer()
|
/linux/fs/ext4/ |
A D | extents.c | 967 struct ext4_ext_path *curp, in ext4_ext_insert_index() argument 988 le16_to_cpu(curp->p_hdr->eh_entries), in ext4_ext_insert_index() 989 le16_to_cpu(curp->p_hdr->eh_max)); in ext4_ext_insert_index() 997 ix = curp->p_idx + 1; in ext4_ext_insert_index() 1002 ix = curp->p_idx; in ext4_ext_insert_index() 1021 le16_add_cpu(&curp->p_hdr->eh_entries, 1); in ext4_ext_insert_index() 1028 err = ext4_ext_dirty(handle, inode, curp); in ext4_ext_insert_index() 1397 struct ext4_ext_path *curp; in ext4_ext_create_new_leaf() local 1404 curp = path + depth; in ext4_ext_create_new_leaf() 1407 curp--; in ext4_ext_create_new_leaf() [all …]
|
/linux/fs/xfs/libxfs/ |
A D | xfs_btree.c | 2613 struct xfs_btree_cur **curp, in __xfs_btree_split() argument 2772 error = xfs_btree_dup_cursor(cur, curp); in __xfs_btree_split() 2775 (*curp)->bc_levels[level + 1].ptr++; in __xfs_btree_split() 2794 struct xfs_btree_cur **curp; member 2827 args->key, args->curp, args->stat); in xfs_btree_split_worker() 2851 struct xfs_btree_cur **curp, in xfs_btree_split() argument 2858 return __xfs_btree_split(cur, level, ptrp, key, curp, stat); in xfs_btree_split() 2864 args.curp = curp; in xfs_btree_split() 3191 struct xfs_btree_cur **curp, /* output: new cursor replacing cur */ in xfs_btree_insrec() argument 3375 *curp = ncur; in xfs_btree_insrec()
|
A D | xfs_bmap.h | 221 struct xfs_iext_cursor *icur, struct xfs_btree_cur **curp,
|
A D | xfs_bmap.c | 599 struct xfs_btree_cur **curp, /* cursor returned to caller */ in xfs_bmap_extents_to_btree() argument 722 ASSERT(*curp == NULL); in xfs_bmap_extents_to_btree() 723 *curp = cur; in xfs_bmap_extents_to_btree() 1941 struct xfs_btree_cur **curp, /* if *curp is null, not a btree */ in xfs_bmap_add_extent_unwritten_real() argument 1959 cur = *curp; in xfs_bmap_add_extent_unwritten_real() 2455 *curp = cur; in xfs_bmap_add_extent_unwritten_real() 2458 xfs_bmap_check_leaf_extents(*curp, ip, whichfork); in xfs_bmap_add_extent_unwritten_real() 2616 struct xfs_btree_cur **curp, in xfs_bmap_add_extent_hole_real() argument 2623 struct xfs_btree_cur *cur = *curp; in xfs_bmap_add_extent_hole_real() 2825 error = xfs_bmap_extents_to_btree(tp, ip, curp, 0, in xfs_bmap_add_extent_hole_real() [all …]
|
/linux/sound/pci/ |
A D | es1968.c | 1989 unsigned int curp = __apu_get_register(chip, chip->measure_apu, 5); in snd_es1968_interrupt() local 1990 if (curp < chip->measure_lastpos) in snd_es1968_interrupt() 1992 chip->measure_lastpos = curp; in snd_es1968_interrupt()
|
/linux/drivers/infiniband/hw/hfi1/ |
A D | chip.c | 5237 static int append_str(char *buf, char **curp, int *lenp, const char *s) in append_str() argument 5239 char *p = *curp; in append_str() 5266 *curp = p; in append_str()
|