Searched refs:curp (Results 1 – 8 of 8) sorted by relevance
/linux-4.1.27/tools/hv/ |
D | hv_kvp_daemon.c | 920 struct ifaddrs *curp; in kvp_get_ip_info() local 950 curp = ifap; in kvp_get_ip_info() 951 while (curp != NULL) { in kvp_get_ip_info() 952 if (curp->ifa_addr == NULL) { in kvp_get_ip_info() 953 curp = curp->ifa_next; in kvp_get_ip_info() 958 (strncmp(curp->ifa_name, if_name, strlen(if_name)))) { in kvp_get_ip_info() 963 curp = curp->ifa_next; in kvp_get_ip_info() 974 (curp->ifa_addr->sa_family != family))) || in kvp_get_ip_info() 975 (curp->ifa_flags & IFF_LOOPBACK)) { in kvp_get_ip_info() 976 curp = curp->ifa_next; in kvp_get_ip_info() [all …]
|
/linux-4.1.27/sound/core/seq/ |
D | seq_memory.c | 201 struct snd_seq_event_cell *curp, *nextptr; in snd_seq_cell_free() local 202 curp = cell->event.data.ext.ptr; in snd_seq_cell_free() 203 for (; curp; curp = nextptr) { in snd_seq_cell_free() 204 nextptr = curp->next; in snd_seq_cell_free() 205 curp->next = pool->free; in snd_seq_cell_free() 206 free_cell(pool, curp); in snd_seq_cell_free()
|
/linux-4.1.27/drivers/net/usb/ |
D | sierra_net.c | 253 const u8 *curp = buf; in parse_hip() local 259 curp = save16bit(&hh->payload_len, curp); in parse_hip() 260 curp = save8bit(&hh->msgid, curp); in parse_hip() 261 curp = save8bit(&hh->msgspecific, curp); in parse_hip() 273 curp = save16bit(&hh->extmsgid, curp); in parse_hip()
|
/linux-4.1.27/sound/pci/nm256/ |
D | nm256.c | 667 unsigned long curp; in snd_nm256_playback_pointer() local 671 curp = snd_nm256_readl(chip, NM_PBUFFER_CURRP) - (unsigned long)s->buf; in snd_nm256_playback_pointer() 672 curp %= s->dma_size; in snd_nm256_playback_pointer() 673 return bytes_to_frames(substream->runtime, curp); in snd_nm256_playback_pointer() 681 unsigned long curp; in snd_nm256_capture_pointer() local 685 curp = snd_nm256_readl(chip, NM_RBUFFER_CURRP) - (unsigned long)s->buf; in snd_nm256_capture_pointer() 686 curp %= s->dma_size; in snd_nm256_capture_pointer() 687 return bytes_to_frames(substream->runtime, curp); in snd_nm256_capture_pointer()
|
/linux-4.1.27/fs/ext4/ |
D | extents.c | 947 struct ext4_ext_path *curp, in ext4_ext_insert_index() argument 953 err = ext4_ext_get_access(handle, inode, curp); in ext4_ext_insert_index() 957 if (unlikely(logical == le32_to_cpu(curp->p_idx->ei_block))) { in ext4_ext_insert_index() 960 logical, le32_to_cpu(curp->p_idx->ei_block)); in ext4_ext_insert_index() 964 if (unlikely(le16_to_cpu(curp->p_hdr->eh_entries) in ext4_ext_insert_index() 965 >= le16_to_cpu(curp->p_hdr->eh_max))) { in ext4_ext_insert_index() 968 le16_to_cpu(curp->p_hdr->eh_entries), in ext4_ext_insert_index() 969 le16_to_cpu(curp->p_hdr->eh_max)); in ext4_ext_insert_index() 973 if (logical > le32_to_cpu(curp->p_idx->ei_block)) { in ext4_ext_insert_index() 976 ix = curp->p_idx + 1; in ext4_ext_insert_index() [all …]
|
/linux-4.1.27/fs/xfs/libxfs/ |
D | xfs_btree.c | 2330 struct xfs_btree_cur **curp, in __xfs_btree_split() argument 2486 error = xfs_btree_dup_cursor(cur, curp); in __xfs_btree_split() 2489 (*curp)->bc_ptrs[level + 1]++; in __xfs_btree_split() 2510 struct xfs_btree_cur **curp; member 2542 args->key, args->curp, args->stat); in xfs_btree_split_worker() 2559 struct xfs_btree_cur **curp, in xfs_btree_split() argument 2566 return __xfs_btree_split(cur, level, ptrp, key, curp, stat); in xfs_btree_split() 2572 args.curp = curp; in xfs_btree_split() 2899 struct xfs_btree_cur **curp, /* output: new cursor replacing cur */ in xfs_btree_insrec() argument 3085 *curp = ncur; in xfs_btree_insrec()
|
D | xfs_bmap.c | 723 xfs_btree_cur_t **curp, /* cursor returned to caller */ in xfs_bmap_extents_to_btree() argument 855 ASSERT(*curp == NULL); in xfs_bmap_extents_to_btree() 856 *curp = cur; in xfs_bmap_extents_to_btree() 2263 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */ in xfs_bmap_add_extent_unwritten_real() argument 2285 cur = *curp; in xfs_bmap_add_extent_unwritten_real() 2769 *curp = cur; in xfs_bmap_add_extent_unwritten_real() 2772 xfs_bmap_check_leaf_extents(*curp, ip, XFS_DATA_FORK); in xfs_bmap_add_extent_unwritten_real()
|
/linux-4.1.27/sound/pci/ |
D | es1968.c | 2005 unsigned int curp = __apu_get_register(chip, chip->measure_apu, 5); in snd_es1968_interrupt() local 2006 if (curp < chip->measure_lastpos) in snd_es1968_interrupt() 2008 chip->measure_lastpos = curp; in snd_es1968_interrupt()
|