Home
last modified time | relevance | path

Searched refs:pos (Results 1 – 25 of 1774) sorted by relevance

12345678910>>...71

/linux/drivers/net/wireless/intel/iwlegacy/
H A D4965-debug.c45 int pos = 0; in il4965_ucode_rx_stats_read() local
89 pos += il4965_stats_flag(il, buf, bufsz); in il4965_ucode_rx_stats_read()
90 pos += in il4965_ucode_rx_stats_read()
91 scnprintf(buf + pos, bufsz - pos, fmt_header, in il4965_ucode_rx_stats_read()
93 pos += in il4965_ucode_rx_stats_read()
94 scnprintf(buf + pos, bufsz - pos, fmt_table, "ina_cnt:", in il4965_ucode_rx_stats_read()
97 pos += in il4965_ucode_rx_stats_read()
98 scnprintf(buf + pos, bufsz - pos, fmt_table, "fina_cnt:", in il4965_ucode_rx_stats_read()
101 pos += in il4965_ucode_rx_stats_read()
102 scnprintf(buf + pos, bufsz - pos, fmt_table, "plcp_err:", in il4965_ucode_rx_stats_read()
[all …]
H A D3945-debug.c38 int pos = 0; in il3945_ucode_rx_stats_read() local
76 pos += il3945_stats_flag(il, buf, bufsz); in il3945_ucode_rx_stats_read()
77 pos += in il3945_ucode_rx_stats_read()
78 scnprintf(buf + pos, bufsz - pos, in il3945_ucode_rx_stats_read()
82 pos += in il3945_ucode_rx_stats_read()
83 scnprintf(buf + pos, bufsz - pos, in il3945_ucode_rx_stats_read()
87 pos += in il3945_ucode_rx_stats_read()
88 scnprintf(buf + pos, bufsz - pos, in il3945_ucode_rx_stats_read()
92 pos += in il3945_ucode_rx_stats_read()
93 scnprintf(buf + pos, bufsz - pos, in il3945_ucode_rx_stats_read()
[all …]
H A Ddebug.c206 int pos = 0; in il_dbgfs_tx_stats_read() local
215 pos += scnprintf(buf + pos, bufsz - pos, "Management:\n"); in il_dbgfs_tx_stats_read()
217 pos += in il_dbgfs_tx_stats_read()
218 scnprintf(buf + pos, bufsz - pos, "\t%25s\t\t: %u\n", in il_dbgfs_tx_stats_read()
221 pos += scnprintf(buf + pos, bufsz - pos, "Control\n"); in il_dbgfs_tx_stats_read()
223 pos += in il_dbgfs_tx_stats_read()
224 scnprintf(buf + pos, bufsz - pos, "\t%25s\t\t: %u\n", in il_dbgfs_tx_stats_read()
227 pos += scnprintf(buf + pos, bufsz - pos, "Data:\n"); in il_dbgfs_tx_stats_read()
228 pos += in il_dbgfs_tx_stats_read()
229 scnprintf(buf + pos, bufsz - pos, "\tcnt: %u\n", in il_dbgfs_tx_stats_read()
[all …]
/linux/fs/ntfs3/
H A Dbitfunc.c35 size_t pos = bit & 7; in are_bits_clear() local
38 if (pos) { in are_bits_clear()
39 if (8 - pos >= nbits) in are_bits_clear()
40 return !nbits || !(*map & fill_mask[pos + nbits] & in are_bits_clear()
41 zero_mask[pos]); in are_bits_clear()
43 if (*map++ & zero_mask[pos]) in are_bits_clear()
45 nbits -= 8 - pos; in are_bits_clear()
48 pos = ((size_t)map) & (sizeof(size_t) - 1); in are_bits_clear()
49 if (pos) { in are_bits_clear()
50 pos = sizeof(size_t) - pos; in are_bits_clear()
[all …]
/linux/tools/include/linux/
H A Dlist.h413 #define list_next_entry(pos, member) \ argument
414 list_entry((pos)->member.next, typeof(*(pos)), member)
421 #define list_prev_entry(pos, member) \ argument
422 list_entry((pos)->member.prev, typeof(*(pos)), member)
429 #define list_for_each(pos, head) \ argument
430 for (pos = (head)->next; pos != (head); pos = pos->next)
437 #define list_for_each_prev(pos, head) \ argument
438 for (pos = (head)->prev; pos != (head); pos = pos->prev)
446 #define list_for_each_safe(pos, n, head) \ argument
447 for (pos = (head)->next, n = pos->next; pos != (head); \
[all …]
/linux/net/ieee802154/
H A Dheader_ops.c18 int pos = 0; in ieee802154_hdr_push_addr() local
24 memcpy(buf + pos, &addr->pan_id, 2); in ieee802154_hdr_push_addr()
25 pos += 2; in ieee802154_hdr_push_addr()
30 memcpy(buf + pos, &addr->short_addr, 2); in ieee802154_hdr_push_addr()
31 pos += 2; in ieee802154_hdr_push_addr()
35 memcpy(buf + pos, &addr->extended_addr, IEEE802154_ADDR_LEN); in ieee802154_hdr_push_addr()
36 pos += IEEE802154_ADDR_LEN; in ieee802154_hdr_push_addr()
43 return pos; in ieee802154_hdr_push_addr()
49 int pos = 5; in ieee802154_hdr_push_sechdr() local
56 return pos; in ieee802154_hdr_push_sechdr()
[all …]
/linux/security/tomoyo/
H A Drealpath.c97 char *pos = ERR_PTR(-ENOMEM); in tomoyo_get_absolute_path() local
101 pos = d_absolute_path(path, buffer, buflen - 1); in tomoyo_get_absolute_path()
102 if (!IS_ERR(pos) && *pos == '/' && pos[1]) { in tomoyo_get_absolute_path()
111 return pos; in tomoyo_get_absolute_path()
128 char *pos = ERR_PTR(-ENOMEM); in tomoyo_get_dentry_path() local
131 pos = dentry_path_raw(dentry, buffer, buflen - 1); in tomoyo_get_dentry_path()
132 if (!IS_ERR(pos) && *pos == '/' && pos[1]) { in tomoyo_get_dentry_path()
141 return pos; in tomoyo_get_dentry_path()
157 char *pos = tomoyo_get_dentry_path(dentry, buffer, buflen); in tomoyo_get_local_path() local
159 if (IS_ERR(pos)) in tomoyo_get_local_path()
[all …]
/linux/scripts/include/
H A Dlist.h258 #define list_next_entry(pos, member) \ argument
259 list_entry((pos)->member.next, typeof(*(pos)), member)
266 #define list_prev_entry(pos, member) \ argument
267 list_entry((pos)->member.prev, typeof(*(pos)), member)
275 #define list_entry_is_head(pos, head, member) \ argument
276 (&pos->member == (head))
284 #define list_for_each_entry(pos, head, member) \ argument
285 for (pos = list_first_entry(head, typeof(*pos), member); \
286 !list_entry_is_head(pos, head, member); \
287 pos = list_next_entry(pos, member))
[all …]
/linux/fs/romfs/
H A Dstorage.c23 static int romfs_mtd_read(struct super_block *sb, unsigned long pos, in romfs_mtd_read() argument
29 ret = ROMFS_MTD_READ(sb, pos, buflen, &rlen, buf); in romfs_mtd_read()
37 unsigned long pos, size_t maxlen) in romfs_mtd_strnlen() argument
48 ret = ROMFS_MTD_READ(sb, pos, segment, &len, buf); in romfs_mtd_strnlen()
55 pos += len; in romfs_mtd_strnlen()
66 static int romfs_mtd_strcmp(struct super_block *sb, unsigned long pos, in romfs_mtd_strcmp() argument
79 ret = ROMFS_MTD_READ(sb, pos, segment, &len, buf); in romfs_mtd_strcmp()
87 pos += len; in romfs_mtd_strcmp()
103 static int romfs_blk_read(struct super_block *sb, unsigned long pos, in romfs_blk_read() argument
112 offset = pos & (ROMBSIZE - 1); in romfs_blk_read()
[all …]
/linux/fs/iomap/
H A Dseek.c17 iter->pos, iter->pos + length, SEEK_HOLE); in iomap_seek_hole_iter()
18 if (*hole_pos == iter->pos + length) in iomap_seek_hole_iter()
22 *hole_pos = iter->pos; in iomap_seek_hole_iter()
30 iomap_seek_hole(struct inode *inode, loff_t pos, const struct iomap_ops *ops) in iomap_seek_hole() argument
35 .pos = pos, in iomap_seek_hole()
41 if (pos < 0 || pos >= size) in iomap_seek_hole()
44 iter.len = size - pos; in iomap_seek_hole()
46 iter.status = iomap_seek_hole_iter(&iter, &pos); in iomap_seek_hole()
50 return pos; in iomap_seek_hole()
65 iter->pos, iter->pos + length, SEEK_DATA); in iomap_seek_data_iter()
[all …]
/linux/drivers/gpu/drm/omapdrm/
H A Dtcm-sita.c28 static void free_slots(unsigned long pos, u16 w, u16 h, in free_slots() argument
33 for (i = 0; i < h; i++, pos += stride) in free_slots()
34 bitmap_clear(map, pos, w); in free_slots()
43 static int r2l_b2t_1d(u16 w, unsigned long *pos, unsigned long *map, in r2l_b2t_1d() argument
50 *pos = num_bits - w; in r2l_b2t_1d()
53 bit = find_next_bit(map, num_bits, *pos); in r2l_b2t_1d()
55 if (bit - *pos >= w) { in r2l_b2t_1d()
57 bitmap_set(map, *pos, w); in r2l_b2t_1d()
63 *pos = bit - w; in r2l_b2t_1d()
80 unsigned long *pos, unsigned long slot_bytes, in l2r_t2b() argument
[all …]
/linux/drivers/pci/
H A Drebar.c70 unsigned int pos, nbars, i; in pci_rebar_find_pos() local
74 pos = pci_iov_vf_rebar_cap(pdev); in pci_rebar_find_pos()
77 pos = pdev->rebar_cap; in pci_rebar_find_pos()
80 if (!pos) in pci_rebar_find_pos()
83 pci_read_config_dword(pdev, pos + PCI_REBAR_CTRL, &ctrl); in pci_rebar_find_pos()
86 for (i = 0; i < nbars; i++, pos += 8) { in pci_rebar_find_pos()
89 pci_read_config_dword(pdev, pos + PCI_REBAR_CTRL, &ctrl); in pci_rebar_find_pos()
92 return pos; in pci_rebar_find_pos()
110 int pos; in pci_rebar_get_possible_sizes() local
113 pos = pci_rebar_find_pos(pdev, bar); in pci_rebar_get_possible_sizes()
[all …]
H A Dvc.c27 static void pci_vc_save_restore_dwords(struct pci_dev *dev, int pos, in pci_vc_save_restore_dwords() argument
34 pci_read_config_dword(dev, pos + (i * 4), buf); in pci_vc_save_restore_dwords()
36 pci_write_config_dword(dev, pos + (i * 4), *buf); in pci_vc_save_restore_dwords()
49 static void pci_vc_load_arb_table(struct pci_dev *dev, int pos) in pci_vc_load_arb_table() argument
53 pci_read_config_word(dev, pos + PCI_VC_PORT_CTRL, &ctrl); in pci_vc_load_arb_table()
54 pci_write_config_word(dev, pos + PCI_VC_PORT_CTRL, in pci_vc_load_arb_table()
56 if (pci_wait_for_pending(dev, pos + PCI_VC_PORT_STATUS, in pci_vc_load_arb_table()
73 static void pci_vc_load_port_arb_table(struct pci_dev *dev, int pos, int res) in pci_vc_load_port_arb_table() argument
78 ctrl_pos = pos + PCI_VC_RES_CTRL + (res * PCI_CAP_VC_PER_VC_SIZEOF); in pci_vc_load_port_arb_table()
79 status_pos = pos + PCI_VC_RES_STATUS + (res * PCI_CAP_VC_PER_VC_SIZEOF); in pci_vc_load_port_arb_table()
[all …]
H A Dproc.c32 unsigned int pos = *ppos; in proc_bus_pci_read() local
48 if (pos >= size) in proc_bus_pci_read()
52 if (pos + nbytes > size) in proc_bus_pci_read()
53 nbytes = size - pos; in proc_bus_pci_read()
61 if ((pos & 1) && cnt) { in proc_bus_pci_read()
63 pci_user_read_config_byte(dev, pos, &val); in proc_bus_pci_read()
66 pos++; in proc_bus_pci_read()
70 if ((pos & 3) && cnt > 2) { in proc_bus_pci_read()
72 pci_user_read_config_word(dev, pos, &val); in proc_bus_pci_read()
75 pos += 2; in proc_bus_pci_read()
[all …]
/linux/drivers/tty/vt/
H A Dvc_screen.c248 unsigned int pos, unsigned int count, bool viewed) in vcs_read_buf_uni() argument
257 pos /= 4; in vcs_read_buf_uni()
258 row = pos / maxcol; in vcs_read_buf_uni()
259 col = pos % maxcol; in vcs_read_buf_uni()
276 unsigned int pos, unsigned int count, bool viewed) in vcs_read_buf_noattr() argument
281 org = screen_pos(vc, pos, viewed); in vcs_read_buf_noattr()
282 col = pos % maxcol; in vcs_read_buf_noattr()
283 pos += maxcol - col; in vcs_read_buf_noattr()
288 org = screen_pos(vc, pos, viewed); in vcs_read_buf_noattr()
290 pos += maxcol; in vcs_read_buf_noattr()
[all …]
/linux/tools/perf/dlfilters/
H A Ddlfilter-show-cycles.c49 __u32 pos = tid & MASK; in find_entry() local
52 e = &table[pos]; in find_entry()
56 if (++pos == TABLESZ) in find_entry()
57 pos = 0; in find_entry()
58 e = &table[pos]; in find_entry()
72 static void add_entry(__s32 tid, int pos, __u64 cnt) in add_entry() argument
77 e->cycles[pos] += cnt; in add_entry()
84 int pos; in filter_event_early() local
89 pos = event_entry(sample->event); in filter_event_early()
92 cycles[cpu][pos] += sample->cyc_cnt; in filter_event_early()
[all …]
/linux/drivers/vfio/pci/
H A Dvfio_pci_igd.c50 loff_t *pos, in igd_opregion_shift_copy() argument
58 *pos += bytes; in igd_opregion_shift_copy()
70 loff_t pos = *ppos & VFIO_PCI_OFFSET_MASK, off = 0; in vfio_pci_igd_rw() local
73 if (pos >= vdev->region[i].size || iswrite) in vfio_pci_igd_rw()
76 count = min_t(size_t, count, vdev->region[i].size - pos); in vfio_pci_igd_rw()
80 if (remaining && pos < OPREGION_VERSION) { in vfio_pci_igd_rw()
81 size_t bytes = min_t(size_t, remaining, OPREGION_VERSION - pos); in vfio_pci_igd_rw()
84 opregionvbt->opregion + pos, &pos, in vfio_pci_igd_rw()
90 if (remaining && pos < OPREGION_VERSION + sizeof(__le16)) { in vfio_pci_igd_rw()
92 OPREGION_VERSION + sizeof(__le16) - pos); in vfio_pci_igd_rw()
[all …]
/linux/fs/xfs/scrub/
H A Dxfile.c112 loff_t pos) in xfile_load() argument
119 if (inode->i_sb->s_maxbytes - pos < count) in xfile_load()
122 trace_xfile_load(xf, pos, count); in xfile_load()
130 if (shmem_get_folio(inode, pos >> PAGE_SHIFT, 0, &folio, in xfile_load()
139 PAGE_SIZE - offset_in_page(pos)); in xfile_load()
148 offset = offset_in_folio(folio, pos); in xfile_load()
156 pos += len; in xfile_load()
175 loff_t pos) in xfile_store() argument
182 if (inode->i_sb->s_maxbytes - pos < count) in xfile_store()
185 trace_xfile_store(xf, pos, count); in xfile_store()
[all …]
/linux/net/sctp/
H A Dulpqueue.c270 struct sk_buff *pos; in sctp_ulpq_store_reasm() local
277 pos = skb_peek_tail(&ulpq->reasm); in sctp_ulpq_store_reasm()
278 if (!pos) { in sctp_ulpq_store_reasm()
284 cevent = sctp_skb2event(pos); in sctp_ulpq_store_reasm()
292 skb_queue_walk(&ulpq->reasm, pos) { in sctp_ulpq_store_reasm()
293 cevent = sctp_skb2event(pos); in sctp_ulpq_store_reasm()
301 __skb_queue_before(&ulpq->reasm, pos, sctp_event2skb(event)); in sctp_ulpq_store_reasm()
317 struct sk_buff *pos; in sctp_make_reassembled_event() local
325 pos = NULL; in sctp_make_reassembled_event()
327 pos = f_frag->next; in sctp_make_reassembled_event()
[all …]
H A Dstream_interleave.c128 struct sk_buff *pos, *loc; in sctp_intl_store_reasm() local
130 pos = skb_peek_tail(&ulpq->reasm); in sctp_intl_store_reasm()
131 if (!pos) { in sctp_intl_store_reasm()
136 cevent = sctp_skb2event(pos); in sctp_intl_store_reasm()
155 skb_queue_walk(&ulpq->reasm, pos) { in sctp_intl_store_reasm()
156 cevent = sctp_skb2event(pos); in sctp_intl_store_reasm()
161 loc = pos; in sctp_intl_store_reasm()
169 loc = pos; in sctp_intl_store_reasm()
188 struct sk_buff *pos; in sctp_intl_retrieve_partial() local
194 skb_queue_walk(&ulpq->reasm, pos) { in sctp_intl_retrieve_partial()
[all …]
/linux/drivers/acpi/acpica/
H A Dutprint.c108 char *pos; in acpi_ut_put_number() local
110 pos = string; in acpi_ut_put_number()
114 *(pos++) = '0'; in acpi_ut_put_number()
119 *(pos++) = digits[digit_index]; in acpi_ut_put_number()
124 return (pos); in acpi_ut_put_number()
206 char *pos; in acpi_ut_format_number() local
254 pos = acpi_ut_put_number(reversed_string, number, base, upper); in acpi_ut_format_number()
255 i = (s32)ACPI_PTR_DIFF(pos, reversed_string); in acpi_ut_format_number()
326 char *pos; in vsnprintf() local
334 pos = string; in vsnprintf()
[all …]
/linux/tools/perf/util/hisi-ptt-decoder/
H A Dhisi-ptt-pkt-decoder.c90 static void hisi_ptt_print_pkt(const unsigned char *buf, int pos, const char *desc) in hisi_ptt_print_pkt() argument
96 color_fprintf(stdout, color, " %08x: ", pos); in hisi_ptt_print_pkt()
98 color_fprintf(stdout, color, "%02x ", buf[pos + i]); in hisi_ptt_print_pkt()
104 static int hisi_ptt_8dw_kpt_desc(const unsigned char *buf, int pos) in hisi_ptt_8dw_kpt_desc() argument
111 pos += HISI_PTT_FIELD_LENTH; in hisi_ptt_8dw_kpt_desc()
115 hisi_ptt_print_pkt(buf, pos, hisi_ptt_8dw_pkt_field_name[i]); in hisi_ptt_8dw_kpt_desc()
116 pos += HISI_PTT_FIELD_LENTH; in hisi_ptt_8dw_kpt_desc()
122 static void hisi_ptt_4dw_print_dw0(const unsigned char *buf, int pos) in hisi_ptt_4dw_print_dw0() argument
128 dw0.value = *(uint32_t *)(buf + pos); in hisi_ptt_4dw_print_dw0()
130 color_fprintf(stdout, color, " %08x: ", pos); in hisi_ptt_4dw_print_dw0()
[all …]
/linux/drivers/net/wireless/intel/ipw2x00/
H A Dlibipw_crypto_wep.c62 u8 *pos; in libipw_wep_build_iv() local
67 pos = skb_push(skb, 4); in libipw_wep_build_iv()
68 memmove(pos, pos + 4, hdr_len); in libipw_wep_build_iv()
69 pos += hdr_len; in libipw_wep_build_iv()
85 *pos++ = (wep->iv >> 16) & 0xff; in libipw_wep_build_iv()
86 *pos++ = (wep->iv >> 8) & 0xff; in libipw_wep_build_iv()
87 *pos++ = wep->iv & 0xff; in libipw_wep_build_iv()
88 *pos++ = wep->key_idx << 6; in libipw_wep_build_iv()
103 u8 *pos, *icv; in libipw_wep_encrypt() local
121 pos = skb->data + hdr_len + 4; in libipw_wep_encrypt()
[all …]
/linux/io_uring/
H A Dslist.h7 #define __wq_list_for_each(pos, head) \
8 for (pos = (head)->first; pos; pos = (pos)->next)
10 #define wq_list_for_each(pos, prv, head) \
11 for (pos = (head)->first, prv = NULL; pos; prv = pos, pos
6 __wq_list_for_each(pos,head) global() argument
9 wq_list_for_each(pos,prv,head) global() argument
12 wq_list_for_each_resume(pos,prv) global() argument
22 wq_list_add_after(struct io_wq_work_node * node,struct io_wq_work_node * pos,struct io_wq_work_list * list) wq_list_add_after() argument
[all...]
/linux/scripts/
H A Dcleanfile23 my $pos = 0;
30 my $npos = ($pos+$nsp+8) & ~7;
31 my $ntab = ($npos >> 3) - ($pos >> 3);
33 $pos = $npos;
37 $pos += $nsp;
40 $pos = 0;
45 $pos += $nsp;
48 $pos++;
61 my $pos = 0;
67 $pos = ($pos+8) & ~7;
[all …]

12345678910>>...71