Home
last modified time | relevance | path

Searched refs:curp (Results 1 – 10 of 10) sorted by relevance

/kernel/linux/linux-5.10/tools/hv/
Dhv_kvp_daemon.c807 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()
845 (strncmp(curp->ifa_name, if_name, strlen(if_name)))) { in kvp_get_ip_info()
850 curp = curp->ifa_next; in kvp_get_ip_info()
861 (curp->ifa_addr->sa_family != family))) || in kvp_get_ip_info()
862 (curp->ifa_flags & IFF_LOOPBACK)) { in kvp_get_ip_info()
863 curp = curp->ifa_next; in kvp_get_ip_info()
[all …]
/kernel/linux/linux-5.10/sound/core/seq/
Dseq_memory.c189 struct snd_seq_event_cell *curp, *nextptr; in snd_seq_cell_free() local
190 curp = cell->event.data.ext.ptr; in snd_seq_cell_free()
191 for (; curp; curp = nextptr) { in snd_seq_cell_free()
192 nextptr = curp->next; in snd_seq_cell_free()
193 curp->next = pool->free; in snd_seq_cell_free()
194 free_cell(pool, curp); in snd_seq_cell_free()
/kernel/linux/linux-5.10/drivers/net/usb/
Dsierra_net.c265 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()
/kernel/linux/linux-5.10/sound/pci/nm256/
Dnm256.c655 unsigned long curp; in snd_nm256_playback_pointer() local
659 curp = snd_nm256_readl(chip, NM_PBUFFER_CURRP) - (unsigned long)s->buf; in snd_nm256_playback_pointer()
660 curp %= s->dma_size; in snd_nm256_playback_pointer()
661 return bytes_to_frames(substream->runtime, curp); in snd_nm256_playback_pointer()
669 unsigned long curp; in snd_nm256_capture_pointer() local
673 curp = snd_nm256_readl(chip, NM_RBUFFER_CURRP) - (unsigned long)s->buf; in snd_nm256_capture_pointer()
674 curp %= s->dma_size; in snd_nm256_capture_pointer()
675 return bytes_to_frames(substream->runtime, curp); in snd_nm256_capture_pointer()
/kernel/linux/linux-5.10/fs/ext4/
Dextents.c979 struct ext4_ext_path *curp, in ext4_ext_insert_index() argument
985 err = ext4_ext_get_access(handle, inode, curp); in ext4_ext_insert_index()
989 if (unlikely(logical == le32_to_cpu(curp->p_idx->ei_block))) { in ext4_ext_insert_index()
992 logical, le32_to_cpu(curp->p_idx->ei_block)); in ext4_ext_insert_index()
996 if (unlikely(le16_to_cpu(curp->p_hdr->eh_entries) in ext4_ext_insert_index()
997 >= le16_to_cpu(curp->p_hdr->eh_max))) { in ext4_ext_insert_index()
1000 le16_to_cpu(curp->p_hdr->eh_entries), in ext4_ext_insert_index()
1001 le16_to_cpu(curp->p_hdr->eh_max)); in ext4_ext_insert_index()
1005 if (logical > le32_to_cpu(curp->p_idx->ei_block)) { in ext4_ext_insert_index()
1009 ix = curp->p_idx + 1; in ext4_ext_insert_index()
[all …]
/kernel/linux/linux-5.10/fs/xfs/libxfs/
Dxfs_bmap.h240 struct xfs_iext_cursor *icur, struct xfs_btree_cur **curp,
Dxfs_btree.c2616 struct xfs_btree_cur **curp, in __xfs_btree_split() argument
2775 error = xfs_btree_dup_cursor(cur, curp); in __xfs_btree_split()
2778 (*curp)->bc_ptrs[level + 1]++; in __xfs_btree_split()
2796 struct xfs_btree_cur **curp; member
2829 args->key, args->curp, args->stat); in xfs_btree_split_worker()
2853 struct xfs_btree_cur **curp, in xfs_btree_split() argument
2860 return __xfs_btree_split(cur, level, ptrp, key, curp, stat); in xfs_btree_split()
2866 args.curp = curp; in xfs_btree_split()
3187 struct xfs_btree_cur **curp, /* output: new cursor replacing cur */ in xfs_btree_insrec() argument
3371 *curp = ncur; in xfs_btree_insrec()
Dxfs_bmap.c648 struct xfs_btree_cur **curp, /* cursor returned to caller */ in xfs_bmap_extents_to_btree() argument
772 ASSERT(*curp == NULL); in xfs_bmap_extents_to_btree()
773 *curp = cur; in xfs_bmap_extents_to_btree()
2042 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */ in xfs_bmap_add_extent_unwritten_real() argument
2060 cur = *curp; in xfs_bmap_add_extent_unwritten_real()
2556 *curp = cur; in xfs_bmap_add_extent_unwritten_real()
2559 xfs_bmap_check_leaf_extents(*curp, ip, whichfork); in xfs_bmap_add_extent_unwritten_real()
2717 struct xfs_btree_cur **curp, in xfs_bmap_add_extent_hole_real() argument
2724 struct xfs_btree_cur *cur = *curp; in xfs_bmap_add_extent_hole_real()
2926 error = xfs_bmap_extents_to_btree(tp, ip, curp, 0, in xfs_bmap_add_extent_hole_real()
[all …]
/kernel/linux/linux-5.10/sound/pci/
Des1968.c1987 unsigned int curp = __apu_get_register(chip, chip->measure_apu, 5); in snd_es1968_interrupt() local
1988 if (curp < chip->measure_lastpos) in snd_es1968_interrupt()
1990 chip->measure_lastpos = curp; in snd_es1968_interrupt()
/kernel/linux/linux-5.10/drivers/infiniband/hw/hfi1/
Dchip.c5278 static int append_str(char *buf, char **curp, int *lenp, const char *s) in append_str() argument
5280 char *p = *curp; in append_str()
5307 *curp = p; in append_str()