Searched refs:position (Results 1 - 25 of 192) sorted by relevance

12345678

/linux-master/drivers/net/ethernet/freescale/dpaa2/
H A Ddpaa2-eth-devlink.c63 int position; member in struct:dpaa2_faf_error_bit
66 { .position = 5, .trap_id = DEVLINK_TRAP_GENERIC_ID_VXLAN_PARSING },
67 { .position = 20, .trap_id = DEVLINK_TRAP_GENERIC_ID_LLC_SNAP_PARSING },
68 { .position = 24, .trap_id = DEVLINK_TRAP_GENERIC_ID_VLAN_PARSING },
69 { .position = 26, .trap_id = DEVLINK_TRAP_GENERIC_ID_PPPOE_PPP_PARSING },
70 { .position = 29, .trap_id = DEVLINK_TRAP_GENERIC_ID_MPLS_PARSING },
71 { .position = 31, .trap_id = DEVLINK_TRAP_GENERIC_ID_ARP_PARSING },
72 { .position = 52, .trap_id = DEVLINK_TRAP_GENERIC_ID_IP_1_PARSING },
73 { .position = 61, .trap_id = DEVLINK_TRAP_GENERIC_ID_IP_N_PARSING },
74 { .position
[all...]
/linux-master/sound/firewire/
H A Damdtp-am824.h36 unsigned int position);
39 unsigned int position);
/linux-master/drivers/acpi/acpica/
H A Duthex.c27 * position - bit position of the digit within the
36 char acpi_ut_hex_to_ascii_char(u64 integer, u32 position) argument
40 acpi_ut_short_shift_right(integer, position, &index);
H A Dutascii.c47 * position - Byte position (0-3)
60 u8 acpi_ut_valid_name_char(char character, u32 position) argument
66 /* Allow a '!' in the last position */
68 if (character == '!' && position == 3) {
/linux-master/drivers/gpu/drm/i915/display/
H A Dintel_vblank.c206 int position, vtotal; local
221 position = intel_de_read_fw(dev_priv, PIPEDSL(pipe)) & PIPEDSL_LINE_MASK;
235 if (HAS_DDI(dev_priv) && !position) {
241 if (temp != position) {
242 position = temp;
252 return (position + crtc->scanline_offset) % vtotal;
305 int position; local
348 position = __intel_get_crtc_scanline(crtc);
351 * Already exiting vblank? If so, shift our position
356 if (position >
442 int position; local
[all...]
/linux-master/net/sunrpc/xprtrdma/
H A Dsvc_rdma_pcl.c28 static struct svc_rdma_chunk *pcl_alloc_chunk(u32 segcount, u32 position) argument
36 chunk->ch_position = position;
44 pcl_lookup_position(struct svc_rdma_pcl *pcl, u32 position) argument
49 if (pos->ch_position == position)
94 * - The list might not be in order by position.
110 u32 position, handle, length; local
114 p = xdr_decode_read_segment(p, &position, &handle,
116 if (position != 0)
120 chunk = pcl_alloc_chunk(segcount, position);
145 * - The list might not be in order by position
164 u32 position, handle, length; local
[all...]
/linux-master/tools/perf/scripts/python/
H A Dmem-phys-addr.py64 position = bisect.bisect(system_ram, phys_addr)
65 if position % 2 == 0:
70 position = bisect.bisect(pmem, phys_addr)
71 if position % 2 == 0:
/linux-master/include/linux/sunrpc/
H A Drpc_rdma.h135 * Pointer to the XDR position that follows the encoded RDMA segment
148 * @position: The position to encode
154 * Pointer to the XDR position that follows the encoded Read segment
156 static inline __be32 *xdr_encode_read_segment(__be32 *p, u32 position, argument
160 *p++ = cpu_to_be32(position);
185 * @position: Upon return, the segment's position
193 static inline __be32 *xdr_decode_read_segment(__be32 *p, u32 *position, argument
197 *position
[all...]
/linux-master/sound/pci/ctxfi/
H A Dctpcm.c247 unsigned long position; local
252 /* Read out playback position */
253 position = atc->pcm_playback_position(atc, apcm);
254 position = bytes_to_frames(runtime, position);
255 if (position >= runtime->buffer_size)
256 position = 0;
257 return position;
353 unsigned long position; local
358 /* Read out playback position */
[all...]
H A Dcttimer.c38 unsigned int position; member in struct:ct_timer_instance
72 unsigned int position, dist, interval; local
74 position = substream->ops->pointer(substream);
75 dist = (position + buffer_size - ti->position) % buffer_size;
77 position / period_size != ti->position / period_size) {
79 ti->position = position;
83 interval = ((period_size - (position
[all...]
/linux-master/drivers/staging/media/atomisp/pci/runtime/queue/src/
H A Dqueue_access.c128 u8 position,
137 + position * sizeof(ia_css_circbuf_elem_t),
142 + position * sizeof(ia_css_circbuf_elem_t),
155 u8 position,
164 + position * sizeof(ia_css_circbuf_elem_t),
169 + position * sizeof(ia_css_circbuf_elem_t),
126 ia_css_queue_item_load( struct ia_css_queue *rdesc, u8 position, ia_css_circbuf_elem_t *item) argument
153 ia_css_queue_item_store( struct ia_css_queue *rdesc, u8 position, ia_css_circbuf_elem_t *item) argument
H A Dqueue_access.h79 u8 position,
84 u8 position,
/linux-master/drivers/gpu/drm/amd/display/include/
H A Dvector.h75 uint32_t position);
96 * Shifts elements on the right from remove position to the left,
97 * removing an element at position by overwrite means*/
116 uint32_t position) \
118 return dal_vector_insert_at(vector, what, position); \
/linux-master/drivers/gpu/drm/nouveau/nvkm/falcon/
H A Dqmgr.h70 u32 position; member in struct:nvkm_falcon_cmdq
82 u32 position; member in struct:nvkm_falcon_msgq
H A Dmsgq.c29 msgq->position = nvkm_falcon_rd32(msgq->qmgr->falcon, msgq->tail_reg);
38 nvkm_falcon_wr32(falcon, msgq->tail_reg, msgq->position);
59 if (head < msgq->position)
60 msgq->position = msgq->offset;
62 tail = msgq->position;
72 msgq->position += ALIGN(size, QUEUE_ALIGNMENT);
H A Dcmdq.c54 nvkm_falcon_pio_wr(falcon, data, 0, 0, DMEM, cmdq->position, size, 0, false);
55 cmdq->position += ALIGN(size, QUEUE_ALIGNMENT);
67 cmdq->position = cmdq->offset;
84 cmdq->position = nvkm_falcon_rd32(falcon, cmdq->head_reg);
95 nvkm_falcon_wr32(cmdq->qmgr->falcon, cmdq->head_reg, cmdq->position);
/linux-master/lib/zstd/common/
H A Dfse_decompress.c136 size_t position = 0; local
143 size_t const uPosition = (position + (u * step)) & tableMask;
146 position = (position + (unroll * step)) & tableMask;
148 assert(position == 0);
153 U32 s, position = 0; local
157 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s;
158 position = (position + step) & tableMask;
159 while (position > highThreshol
[all...]
/linux-master/drivers/nvdimm/
H A Dlabel.h75 * @position: this label's position in the set
90 __le16 position; member in struct:cxl_region_label
107 * @position: labels position in set
125 __le16 position; member in struct:nvdimm_efi_label
150 * @position: this label's position in the set
167 __le16 position; member in struct:nvdimm_cxl_label
/linux-master/tools/tracing/rtla/src/
H A Dosnoise_hist.c209 char *content, *position; local
219 position = content;
221 position = strstr(position, "duration: ~");
222 if (!position)
224 position += strlen("duration: ~");
225 duration = get_llong_from_str(position);
229 position = strstr(position, "cpu:");
230 if (!position)
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/inc/hw/
H A Dipp.h72 const struct dc_cursor_position *position,
/linux-master/drivers/firmware/tegra/
H A Divc.c153 if (ivc->tx.position == ivc->num_frames - 1)
154 ivc->tx.position = 0;
156 ivc->tx.position++;
165 if (ivc->rx.position == ivc->num_frames - 1)
166 ivc->rx.position = 0;
168 ivc->rx.position++;
291 * Order observation of ivc->rx.position potentially indicating new
296 tegra_ivc_invalidate_frame(ivc, ivc->rx.phys, ivc->rx.position, 0,
299 return tegra_ivc_frame_virt(ivc, &ivc->rx.map, ivc->rx.position, map);
323 * Ensure our write to ivc->rx.position occur
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dce/
H A Ddce_ipp.c43 const struct dc_cursor_position *position,
53 REG_UPDATE(CUR_CONTROL, CURSOR_EN, position->enable);
56 CURSOR_X_POSITION, position->x,
57 CURSOR_Y_POSITION, position->y);
60 CURSOR_HOT_SPOT_X, position->x_hotspot,
61 CURSOR_HOT_SPOT_Y, position->y_hotspot);
41 dce_ipp_cursor_set_position( struct input_pixel_processor *ipp, const struct dc_cursor_position *position, const struct dc_cursor_mi_param *param) argument
/linux-master/drivers/media/dvb-frontends/
H A Dnxt200x.c406 u16 rambase, position, crc = 0; local
425 for (position = 0; position < fw->size; position++) {
429 buf[0] = ((rambase + position) >> 8);
430 buf[1] = (rambase + position) & 0xFF;
439 nxt200x_writebytes(state, chunkpos, &fw->data[position-3], 4);
441 crc = nxt200x_crc(crc, fw->data[position]);
443 if ((written == 255) || (position+1 == fw->size)) {
446 &fw->data[position
473 u16 rambase, position, crc=0; local
[all...]
/linux-master/lib/zstd/compress/
H A Dfse_compress.c139 { size_t position = 0; local
146 size_t const uPosition = (position + (u * step)) & tableMask;
149 position = (position + (unroll * step)) & tableMask;
151 assert(position == 0); /* Must have initialized all positions */
154 U32 position = 0; local
160 tableSymbol[position] = (FSE_FUNCTION_TYPE)symbol;
161 position = (position + step) & tableMask;
162 while (position > highThreshol
[all...]
/linux-master/sound/soc/intel/avs/
H A Dcldma.c47 void *position; member in struct:hda_cldma
74 memcpy(cl->dmab_data.area + offset, cl->position, ss);
77 cl->position += ss;
81 memcpy(cl->dmab_data.area + offset, cl->position, size);
82 cl->position += size;
201 cl->position = data;

Completed in 436 milliseconds

12345678