Home
last modified time | relevance | path

Searched refs:frames (Results 1 – 168 of 168) sorted by relevance

/linux-4.1.27/sound/core/oss/
Dpcm_plugin.c49 static int snd_pcm_plugin_alloc(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t frames) in snd_pcm_plugin_alloc() argument
64 size = frames * format->channels * width; in snd_pcm_plugin_alloc()
68 if (plugin->buf_frames < frames) { in snd_pcm_plugin_alloc()
71 plugin->buf_frames = frames; in snd_pcm_plugin_alloc()
80 c->frames = frames; in snd_pcm_plugin_alloc()
92 c->frames = frames; in snd_pcm_plugin_alloc()
104 int snd_pcm_plug_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t frames) in snd_pcm_plug_alloc() argument
113 frames = plugin->dst_frames(plugin, frames); in snd_pcm_plug_alloc()
114 if (snd_BUG_ON(frames <= 0)) in snd_pcm_plug_alloc()
117 err = snd_pcm_plugin_alloc(plugin, frames); in snd_pcm_plug_alloc()
[all …]
Droute.c28 snd_pcm_uframes_t frames, snd_pcm_format_t format) in zero_areas() argument
33 snd_pcm_area_silence(&dvp->area, 0, frames, format); in zero_areas()
41 snd_pcm_uframes_t frames, snd_pcm_format_t format) in copy_area() argument
44 snd_pcm_area_copy(&src_channel->area, 0, &dst_channel->area, 0, frames, format); in copy_area()
50 snd_pcm_uframes_t frames) in route_transfer() argument
58 if (frames == 0) in route_transfer()
69 copy_area(src_channels, dvp, frames, format); in route_transfer()
72 return frames; in route_transfer()
76 copy_area(src_channels, dvp, frames, format); in route_transfer()
81 zero_areas(dvp, ndsts - dst, frames, format); in route_transfer()
[all …]
Drate.c183 static snd_pcm_sframes_t rate_src_frames(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t frames) in rate_src_frames() argument
190 if (frames == 0) in rate_src_frames()
194 res = (((frames * data->pitch) + (BITS/2)) >> SHIFT); in rate_src_frames()
196 res = (((frames << SHIFT) + (data->pitch / 2)) / data->pitch); in rate_src_frames()
199 snd_pcm_sframes_t frames1 = frames, res1 = data->old_dst_frames; in rate_src_frames()
211 data->old_src_frames = frames; in rate_src_frames()
216 static snd_pcm_sframes_t rate_dst_frames(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t frames) in rate_dst_frames() argument
223 if (frames == 0) in rate_dst_frames()
227 res = (((frames << SHIFT) + (data->pitch / 2)) / data->pitch); in rate_dst_frames()
229 res = (((frames * data->pitch) + (BITS/2)) >> SHIFT); in rate_dst_frames()
[all …]
Dio.c40 snd_pcm_uframes_t frames) in io_playback_transfer() argument
47 return pcm_write(plugin->plug, src_channels->area.addr, frames); in io_playback_transfer()
59 return pcm_writev(plugin->plug, bufs, frames); in io_playback_transfer()
66 snd_pcm_uframes_t frames) in io_capture_transfer() argument
73 return pcm_read(plugin->plug, dst_channels->area.addr, frames); in io_capture_transfer()
85 return pcm_readv(plugin->plug, bufs, frames); in io_capture_transfer()
91 snd_pcm_uframes_t frames, in io_src_channels() argument
97 err = snd_pcm_plugin_client_channels(plugin, frames, &v); in io_src_channels()
105 return frames; in io_src_channels()
Dmulaw.c144 snd_pcm_uframes_t frames);
171 snd_pcm_uframes_t frames) in mulaw_decode() argument
183 snd_pcm_area_silence(&dst_channels[channel].area, 0, frames, plugin->dst_format.format); in mulaw_decode()
192 frames1 = frames; in mulaw_decode()
217 snd_pcm_uframes_t frames) in mulaw_encode() argument
229 snd_pcm_area_silence(&dst_channels[channel].area, 0, frames, plugin->dst_format.format); in mulaw_encode()
238 frames1 = frames; in mulaw_encode()
251 snd_pcm_uframes_t frames) in mulaw_transfer() argument
257 if (frames == 0) in mulaw_transfer()
273 data->func(plugin, src_channels, dst_channels, frames); in mulaw_transfer()
[all …]
Dcopy.c30 snd_pcm_uframes_t frames) in copy_transfer() argument
37 if (frames == 0) in copy_transfer()
49 snd_pcm_area_silence(&dst_channels->area, 0, frames, plugin->dst_format.format); in copy_transfer()
54 …snd_pcm_area_copy(&src_channels->area, 0, &dst_channels->area, 0, frames, plugin->src_format.forma… in copy_transfer()
58 return frames; in copy_transfer()
Dlinear.c58 snd_pcm_uframes_t frames) in convert() argument
70 snd_pcm_area_silence(&dst_channels[channel].area, 0, frames, plugin->dst_format.format); in convert()
79 frames1 = frames; in convert()
91 snd_pcm_uframes_t frames) in linear_transfer() argument
95 if (frames == 0) in linear_transfer()
110 convert(plugin, src_channels, dst_channels, frames); in linear_transfer()
111 return frames; in linear_transfer()
Dpcm_plugin.h43 snd_pcm_uframes_t frames; /* allocated frames */ member
65 snd_pcm_uframes_t frames,
70 snd_pcm_uframes_t frames);
93 int snd_pcm_plug_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t frames);
145 snd_pcm_uframes_t frames,
165 void **bufs, snd_pcm_uframes_t frames,
168 void **bufs, snd_pcm_uframes_t frames,
Dpcm_oss.c611 static long snd_pcm_oss_bytes(struct snd_pcm_substream *substream, long frames) in snd_pcm_oss_bytes() argument
615 long bytes = frames_to_bytes(runtime, frames); in snd_pcm_oss_bytes()
1015 snd_pcm_uframes_t frames; in snd_pcm_oss_change_params() local
1016 frames = runtime->period_size + 16; in snd_pcm_oss_change_params()
1017 if (frames > runtime->buffer_size) in snd_pcm_oss_change_params()
1018 frames = runtime->buffer_size; in snd_pcm_oss_change_params()
1019 sw_params->silence_threshold = frames; in snd_pcm_oss_change_params()
1020 sw_params->silence_size = frames; in snd_pcm_oss_change_params()
1154 snd_pcm_uframes_t frames; in snd_pcm_oss_capture_position_fixup() local
1166 frames = (*delay - runtime->buffer_size) + runtime->period_size - 1; in snd_pcm_oss_capture_position_fixup()
[all …]
/linux-4.1.27/drivers/media/usb/pwc/
Dpwc-ctrl.c154 int frames, int *compression, int send_to_cam) in set_video_mode_Nala() argument
180 if (frames < 4) in set_video_mode_Nala()
181 frames = 4; in set_video_mode_Nala()
182 else if (size > PSZ_QCIF && frames > 15) in set_video_mode_Nala()
183 frames = 15; in set_video_mode_Nala()
184 else if (frames > 25) in set_video_mode_Nala()
185 frames = 25; in set_video_mode_Nala()
186 frames = frames2frames[frames]; in set_video_mode_Nala()
187 fps = frames2table[frames]; in set_video_mode_Nala()
203 pdev->vframes = frames; in set_video_mode_Nala()
[all …]
Dpwc.h367 int pixfmt, int frames, int *compression, int send_to_cam);
Dphilips.txt58 frames from the cam. This will help if the process that reads images from
/linux-4.1.27/net/can/
Dbcm.c107 struct can_frame *frames; member
246 struct can_frame *cf = &op->frames[op->currframe]; in bcm_can_tx()
289 struct can_frame *frames, int has_timestamp) in bcm_send_to_user() argument
308 memcpy(skb_put(skb, datalen), frames, datalen); in bcm_send_to_user()
494 if ((GET_U64(&op->frames[index]) & GET_U64(rxdata)) != in bcm_rx_cmp_to_index()
495 (GET_U64(&op->frames[index]) & GET_U64(&op->last_frames[index]))) { in bcm_rx_cmp_to_index()
677 if ((GET_U64(&op->frames[0]) & GET_U64(rxframe)) == in bcm_rx_handler()
678 (GET_U64(&op->frames[0]) & in bcm_rx_handler()
679 GET_U64(&op->frames[i]))) { in bcm_rx_handler()
717 if ((op->frames) && (op->frames != &op->sframe)) in bcm_remove_op()
[all …]
DKconfig28 socket has several filter options e.g. ID masking / error frames.
36 sending of RTR frames, and cyclic CAN messages without permanent user
47 The CAN Gateway/Router is used to route (and modify) CAN frames.
49 msg sending and can optionally modify routed CAN frames on the fly.
50 CAN frames can be routed between CAN network interfaces (one hop).
/linux-4.1.27/net/mac80211/
Dmesh_ps.c412 struct sk_buff_head *frames) in mpsp_qos_null_append() argument
415 struct sk_buff *new_skb, *skb = skb_peek_tail(frames); in mpsp_qos_null_append()
440 __skb_queue_tail(frames, new_skb); in mpsp_qos_null_append()
453 struct sk_buff_head frames; in mps_frame_deliver() local
457 skb_queue_head_init(&frames); in mps_frame_deliver()
472 __skb_queue_tail(&frames, skb); in mps_frame_deliver()
481 if (skb_queue_empty(&frames)) { in mps_frame_deliver()
488 mpsp_qos_null_append(sta, &frames); in mps_frame_deliver()
491 skb_queue_len(&frames), sta->sta.addr); in mps_frame_deliver()
494 skb_queue_walk(&frames, skb) { in mps_frame_deliver()
[all …]
Drx.c755 struct sk_buff_head *frames) in ieee80211_release_reorder_frame() argument
776 __skb_queue_tail(frames, skb); in ieee80211_release_reorder_frame()
786 struct sk_buff_head *frames) in ieee80211_release_reorder_frames() argument
795 frames); in ieee80211_release_reorder_frames()
812 struct sk_buff_head *frames) in ieee80211_sta_reorder_release() argument
847 frames); in ieee80211_sta_reorder_release()
860 frames); in ieee80211_sta_reorder_release()
893 struct sk_buff_head *frames) in ieee80211_sta_manage_reorder_buf() argument
933 head_seq_num, frames); in ieee80211_sta_manage_reorder_buf()
966 ieee80211_sta_reorder_release(sdata, tid_agg_rx, frames); in ieee80211_sta_manage_reorder_buf()
[all …]
Dsta_info.c1328 struct sk_buff_head frames; in ieee80211_sta_ps_deliver_response() local
1333 __skb_queue_head_init(&frames); in ieee80211_sta_ps_deliver_response()
1347 if (skb_queue_empty(&frames)) { in ieee80211_sta_ps_deliver_response()
1380 __skb_queue_tail(&frames, skb); in ieee80211_sta_ps_deliver_response()
1395 if (skb_queue_empty(&frames) && !driver_release_tids) { in ieee80211_sta_ps_deliver_response()
1426 while ((skb = __skb_dequeue(&frames))) { in ieee80211_sta_ps_deliver_response()
1445 if (more_data || !skb_queue_empty(&frames)) in ieee80211_sta_ps_deliver_response()
1461 if (!skb_queue_empty(&frames)) in ieee80211_sta_ps_deliver_response()
Dieee80211_i.h1830 static inline bool ieee80211_rx_reorder_ready(struct sk_buff_head *frames) in ieee80211_rx_reorder_ready() argument
1832 struct sk_buff *tail = skb_peek_tail(frames); in ieee80211_rx_reorder_ready()
/linux-4.1.27/sound/core/
Dpcm_compat.c46 snd_pcm_uframes_t frames; in snd_pcm_ioctl_rewind_compat() local
49 if (get_user(frames, src)) in snd_pcm_ioctl_rewind_compat()
52 err = snd_pcm_playback_rewind(substream, frames); in snd_pcm_ioctl_rewind_compat()
54 err = snd_pcm_capture_rewind(substream, frames); in snd_pcm_ioctl_rewind_compat()
63 snd_pcm_uframes_t frames; in snd_pcm_ioctl_forward_compat() local
66 if (get_user(frames, src)) in snd_pcm_ioctl_forward_compat()
69 err = snd_pcm_playback_forward(substream, frames); in snd_pcm_ioctl_forward_compat()
71 err = snd_pcm_capture_forward(substream, frames); in snd_pcm_ioctl_forward_compat()
369 u32 frames; member
376 u32 frames; in snd_pcm_ioctl_xferi_compat() local
[all …]
Dpcm_lib.c56 snd_pcm_uframes_t frames, ofs, transfer; in snd_pcm_playback_silence() local
75 frames = runtime->silence_threshold - noise_dist; in snd_pcm_playback_silence()
76 if (frames > runtime->silence_size) in snd_pcm_playback_silence()
77 frames = runtime->silence_size; in snd_pcm_playback_silence()
89 frames = new_hw_ptr - ofs; in snd_pcm_playback_silence()
90 if ((snd_pcm_sframes_t)frames < 0) in snd_pcm_playback_silence()
91 frames += runtime->boundary; in snd_pcm_playback_silence()
92 runtime->silence_filled -= frames; in snd_pcm_playback_silence()
100 frames = runtime->buffer_size - runtime->silence_filled; in snd_pcm_playback_silence()
102 if (snd_BUG_ON(frames > runtime->buffer_size)) in snd_pcm_playback_silence()
[all …]
Dpcm_native.c507 snd_pcm_uframes_t frames; in snd_pcm_hw_params() local
563 frames = 1; in snd_pcm_hw_params()
566 frames *= 2; in snd_pcm_hw_params()
569 runtime->min_align = frames; in snd_pcm_hw_params()
2433 snd_pcm_uframes_t frames) in snd_pcm_playback_rewind() argument
2440 if (frames == 0) in snd_pcm_playback_rewind()
2468 if (frames > (snd_pcm_uframes_t)hw_avail) in snd_pcm_playback_rewind()
2469 frames = hw_avail; in snd_pcm_playback_rewind()
2470 appl_ptr = runtime->control->appl_ptr - frames; in snd_pcm_playback_rewind()
2474 ret = frames; in snd_pcm_playback_rewind()
[all …]
/linux-4.1.27/sound/firewire/
Damdtp.c260 __be32 *buffer, unsigned int frames);
263 __be32 *buffer, unsigned int frames);
266 __be32 *buffer, unsigned int frames);
399 __be32 *buffer, unsigned int frames) in amdtp_write_s32() argument
410 for (i = 0; i < frames; ++i) { in amdtp_write_s32()
424 __be32 *buffer, unsigned int frames) in amdtp_write_s16() argument
435 for (i = 0; i < frames; ++i) { in amdtp_write_s16()
449 __be32 *buffer, unsigned int frames) in amdtp_read_s32() argument
460 for (i = 0; i < frames; ++i) { in amdtp_read_s32()
472 __be32 *buffer, unsigned int frames) in amdtp_fill_pcm_silence() argument
[all …]
Damdtp.h125 __be32 *buffer, unsigned int frames);
/linux-4.1.27/Documentation/video4linux/cx2341x/
Dfw-decoder-api.txt23 Specifies the number of muted audio frames to play before normal
52 frames.
53 Coarse: host drops frames based on indexing as required to achieve
68 faster playback. Instead the host should start dropping frames.
75 1=I frames
76 3=I, P frames
77 7=I, P, B frames
79 B frames per GOP (for reverse play only)
81 Adding B frames to the mask will result in corrupt video. This field
88 Specifies the number of muted audio frames to play before normal audio
[all …]
Dfw-encoder-api.txt17 parameters must be initialized prior to this API call. Captures frames
18 continuously or until a predefined number of frames have been captured.
82 Set video frames per second. Change occurs at start of new GOP.
127 Number of B frames between the I and P frame, plus 1.
128 For example: IBBPBBPBBPBB --> GOP size: 12, number of B frames: 2+1 = 3
129 Note that GOP size must be a multiple of (B-frames + 1).
426 1=I frames
427 3=I,P frames
428 7=I,P,B frames
429 (Seems to be ignored, it always indexes I, P and B frames)
[all …]
DREADME.hm1230 Y, U and V planes. This code assumes frames of 720x576 (PAL) pixels.
/linux-4.1.27/Documentation/networking/
Dcan.txt15 3.2 local loopback of sent frames
44 6.2 local loopback of sent frames
83 receive raw CAN frames, directly to/from the controller hardware.
84 Queueing of frames and higher-level transport protocols like ISO-TP
97 network layer as a network device, so that CAN frames from the
106 frames on different or the same CAN IDs. Several sockets listening on
107 the same interface for frames with the same CAN ID are all passed the
108 same received matching CAN frames. An application wishing to
112 CAN-IDs, frames, etc.
145 CAN frames between them, (sophisticated) queueing of CAN frames, and
[all …]
Dnetlink_mmap.txt47 descriptor, once the socket is readable the frames from the ring are
60 be used to wait for free frames in the TX ring.
68 Each ring contains a number of continuous memory blocks, containing frames of
83 the ring just contains the frames in a continuous memory zone.
95 and holds nm_block_size / nm_frame_size frames. The total number of frames in
114 - nm_frame_nr must equal the actual number of frames as specified above.
122 Ring frames
125 Each frames contain a frame header, consisting of a synchronization word and some
194 frames.
265 /* Process all frames */
[all …]
Dmac80211-auth-assoc-deauth.txt22 BA session stop & deauth/disassoc frames
78 (data frames)
87 mac80211->driver: flush frames
Dl2tp.txt43 The L2TP protocol separates control and data frames. The L2TP kernel
44 drivers handle only L2TP data frames; control frames are always
45 handled by userspace. L2TP control frames carry messages between L2TP
60 mechanism by which PPP frames carried through an L2TP session are
64 subsystem arranges for PPP control frames to be delivered to pppd,
65 while data frames are forwarded as usual.
70 such as "ip" and "ifconfig". If only IP frames are passed over the
72 peer. If non-IP frames are to be passed over the tunnel, the interface
79 present in data frames - it is inferred from the IP connection on
102 udp_encap_rcv() in net/ipv4/udp.c. PPP data frames are never passed
[all …]
Dpacket_mmap.txt142 know the header size of frames used in the circular buffer.
211 unsigned int tp_frame_nr; /* Total number of frames */
216 Being mapped in the capture process allows reading the captured frames and
220 region of memory and holds tp_block_size/tp_frame_size frames. The total number
249 can only hold an integer number of frames, or in other words, a frame cannot
259 the PACKET_MMAP buffer could hold only 32768 frames in a 32 bit architecture or
343 and, the number of frames be
361 262144 MiB / 2048 bytes = 134217728 frames
416 If tp_frame_size is a divisor of tp_block_size frames will be
418 tp_block_size/tp_frame_size frames there will be a gap between
[all …]
Daltera_tse.txt44 Jumbo frames are not supported at this time.
136 Section 5.2.2.1.2. This statistics is the count of frames that are successfully
140 Section 5.2.2.1.5. This statistic is the count of frames that are successfully
145 802.3-2012, Section 5.2.2.1.6. This statistic is the count of frames that are
150 Section 5.2.2.1.7. This statistic is the count of frames that are not an
163 802.3-2012, Section 30.3.4.2. This statistic is a count of PAUSE frames
167 802.3-2012, Section 30.3.4.3. This statistic is a count of PAUSE frames
252 frames between the length of 1519 and the maximum frame length configured
Dcdc_mbim.txt210 - TX frames using an IP protocol (0x0800 or 0x86dd) will be dropped
211 - RX frames will have the protocol field set to ETH_P_802_3 (but will
212 not be properly formatted 802.3 frames)
213 - RX frames will have the destination address set to the hardware
235 map frames to the correct DSS session and adding 18 byte VLAN ethernet
264 driver. It is initially mapped to untagged frames on the wwanY
278 0 to this VLAN, and will drop untagged frames on the master wwanY
Dvxge.txt40 iv) Jumbo frames
84 Enables/disables vlan tag stripping from all received tagged frames that
Dtcp.txt88 sk->transmit_end Where to add frames
94 Frames are queued for output by tcp_write. We do our best to send the frames
99 If the window is full we queue full sized frames. On the first timeout in
Dtuntap.txt26 IP packets (with tun) or ethernet frames (with tap). Which one is being used
215 TUN works with IP frames. TAP works with Ethernet frames.
218 ethernet frames when using tap.
Dppp_generic.txt21 For sending and receiving PPP frames, the generic PPP driver calls on
23 mechanism for transporting PPP frames from one machine to another. A
26 to be able to send PPP frames, receive PPP frames, and optionally
52 later time when it can accept frames again, and the generic layer
112 At the interface to the PPP generic layer, PPP frames are stored in
128 represents the maximum size of the data part of the PPP frames, that
263 and receive PPP control frames, using the read() and write() system
265 attached to a channel can be used to send and receive PPP frames on
Ddl2k.txt211 the NIC accept jumbo frames. By default, this
221 an interrupt for m frames. Hardware won't
222 assert rx interrupt until m frames received or
230 for 10 frames received or timeout of 512 us.
Dgianfar.txt34 The gianfar driver supports padding received frames with 2 bytes
Ds2io.txt16 such as jumbo frames, MSI/MSI-X, checksum offloads, TSO, UFO and so on.
40 a. Jumbo frames. Xframe I/II supports MTU up to 9600 bytes,
Dray_cs.txt122 translate integer 0 = no translation (encapsulate frames)
143 Support for defragmenting frames is not yet debugged, and in
Dz8530drv.txt337 configure "rxecho" to echo the incoming frames from "9k6" to "axlink"
338 and outgoing frames from "axlink" to "9k6" and start:
390 Sent - number of frames transmitted
391 Received - number of frames received
393 TxErrors - number of discarded Tx frames (due to various reasons)
535 2 mode, in seconds. When no frames have been sent for this
Dx25.txt27 option appeared, XOT. This allows X.25 Packet Layer frames to operate over
Dnetdev-features.txt164 This requests that the NIC receive all possible frames, including errored
165 frames (such as bad FCS, etc). This can be helpful when sniffing a link with
Dstmmac.txt74 Wake up on Lan feature through Magic and Unicast frames are supported for the
106 Jumbo frames are supported and tested for the GMAC.
167 over-sized frames due to limited buffer sizes.
169 JUMBO frames.
Digb.txt57 - Using Jumbo frames at 10 or 100 Mbps is not supported and may result in
Dcs89x0.txt459 Once the Initiator is started, it sends data frames to the Responder which
460 returns the frames to the Initiator.
462 The total number of frames received and transmitted are displayed on the
463 Initiator's display, along with a count of the number of frames received and
Dgeneric-hdlc.txt96 frames. The device will be named pvceth0, pvceth1 etc.
De1000.txt76 to Ethernet PAUSE frames.
414 Degradation in throughput performance may be observed in some Jumbo frames
423 - Using Jumbo frames at 10 or 100 Mbps is not supported and may result in
Dixgbe.txt108 receiving and transmitting pause frames for ixgbe. When TX is enabled, PAUSE
109 frames are generated when the receive packet buffer crosses a predefined
Dvortex.txt160 The 3com cards appear to only respond to PAUSE frames which are
162 do not honour PAUSE frames which are sent to the station MAC address.
Dixgb.txt126 Ethernet PAUSE frames. There are hardware bugs associated with enabling
373 Degradation in throughput performance may be observed in some Jumbo frames
Dip-sysctl.txt26 discarded. Outgoing frames are handled the same as in mode 1,
573 Since linux-3.12, TCP does an automatic sizing of TSO frames,
576 TSO frames. Note that TCP stack might split too big TSO packets
584 building larger TSO frames.
854 frames. Such violations are normally logged via a kernel warning.
1117 Define behavior for gratuitous ARP frames who's IP is not
Ddecnet.txt191 Ethernet cards are designed to normally only pass received network frames
De1000e.txt262 - Using Jumbo frames at 10 or 100 Mbps is not supported and may result in
Dbonding.txt225 Specifies that duplicate frames (received on inactive ports) should be
228 Normally, bonding will drop duplicate frames (received on inactive
230 it is nice to allow duplicate frames to be delivered.
232 The default value is 0 (drop duplicate frames received on inactive
2292 that frames be delivered in order (within certain limits), so
/linux-4.1.27/sound/usb/misc/
Dua101.c222 unsigned int frames) in copy_playback_data() argument
231 if (stream->buffer_pos + frames <= runtime->buffer_size) { in copy_playback_data()
232 memcpy(urb->transfer_buffer, source, frames * frame_bytes); in copy_playback_data()
238 runtime->dma_area, (frames - frames1) * frame_bytes); in copy_playback_data()
241 stream->buffer_pos += frames; in copy_playback_data()
244 stream->period_pos += frames; in copy_playback_data()
264 unsigned int frames; in playback_tasklet() local
287 frames = ua->rate_feedback[ua->rate_feedback_start]; in playback_tasklet()
298 frames * ua->playback.frame_bytes; in playback_tasklet()
302 frames); in playback_tasklet()
[all …]
/linux-4.1.27/net/hsr/
DKconfig14 All Ethernet frames sent over the hsr device will be sent in both
17 bridge for HSR frames, but filters frames that have been forwarded
/linux-4.1.27/fs/ext3/
Dnamei.c150 static void dx_release (struct dx_frame *frames);
160 struct dx_frame *frames,
467 static void dx_release (struct dx_frame *frames) in dx_release() argument
469 if (frames[0].bh == NULL) in dx_release()
472 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels) in dx_release()
473 brelse(frames[1].bh); in dx_release()
474 brelse(frames[0].bh); in dx_release()
496 struct dx_frame *frames, in ext3_htree_next_block() argument
515 if (p == frames) in ext3_htree_next_block()
614 struct dx_frame frames[2], *frame; in ext3_htree_fill_tree() local
[all …]
/linux-4.1.27/sound/soc/blackfin/
Dbf5xx-i2s-pcm.c147 snd_pcm_uframes_t frames; in bf5xx_pcm_pointer() local
167 frames = bytes_to_frames(substream->runtime, diff); in bf5xx_pcm_pointer()
169 frames = frames * runtime->channels / 8; in bf5xx_pcm_pointer()
171 return frames; in bf5xx_pcm_pointer()
/linux-4.1.27/sound/usb/line6/
Dcapture.c94 int frames = fsize / bytes_per_frame; in line6_capture_copy() local
99 if (line6pcm->in.pos_done + frames > runtime->buffer_size) { in line6_capture_copy()
113 (frames - len) * bytes_per_frame); in line6_capture_copy()
125 line6pcm->in.pos_done += frames; in line6_capture_copy()
Dplayback.c72 int frames = urb_out->transfer_buffer_length / bytes_per_frame; in create_impulse_test_signal() local
79 for (i = 0; i < frames; ++i) { in create_impulse_test_signal()
90 for (i = 0; i < frames; ++i) { in create_impulse_test_signal()
/linux-4.1.27/drivers/usb/gadget/function/
Du_uac1.c162 snd_pcm_sframes_t frames; in u_audio_playback() local
176 frames = bytes_to_frames(runtime, count); in u_audio_playback()
179 result = snd_pcm_lib_write(snd->substream, (void __user *)buf, frames); in u_audio_playback()
180 if (result != frames) { in u_audio_playback()
/linux-4.1.27/drivers/xen/
Dgrant-table.c85 int (*map_frames)(xen_pfn_t *frames, unsigned int nr_gframes);
894 static int gnttab_map_frames_v1(xen_pfn_t *frames, unsigned int nr_gframes) in gnttab_map_frames_v1() argument
898 rc = arch_gnttab_map_shared(frames, nr_gframes, in gnttab_map_frames_v1()
914 xen_pfn_t *frames; in gnttab_map() local
946 frames = kmalloc(nr_gframes * sizeof(unsigned long), GFP_ATOMIC); in gnttab_map()
947 if (!frames) in gnttab_map()
952 set_xen_guest_handle(setup.frame_list, frames); in gnttab_map()
956 kfree(frames); in gnttab_map()
962 rc = gnttab_interface->map_frames(frames, nr_gframes); in gnttab_map()
964 kfree(frames); in gnttab_map()
/linux-4.1.27/fs/ext4/
Dnamei.c255 static void dx_release(struct dx_frame *frames);
267 struct dx_frame *frames,
867 static void dx_release (struct dx_frame *frames) in dx_release() argument
869 if (frames[0].bh == NULL) in dx_release()
872 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels) in dx_release()
873 brelse(frames[1].bh); in dx_release()
874 brelse(frames[0].bh); in dx_release()
896 struct dx_frame *frames, in ext4_htree_next_block() argument
915 if (p == frames) in ext4_htree_next_block()
1059 struct dx_frame frames[2], *frame; in ext4_htree_fill_tree() local
[all …]
/linux-4.1.27/arch/x86/xen/
Dgrant-table.c54 int arch_gnttab_map_shared(unsigned long *frames, unsigned long nr_gframes, in arch_gnttab_map_shared() argument
69 mfn_pte(frames[i], PAGE_KERNEL)); in arch_gnttab_map_shared()
Denlighten.c592 unsigned long frames[pages]; in xen_load_gdt() local
623 frames[f] = mfn; in xen_load_gdt()
629 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct))) in xen_load_gdt()
641 unsigned long frames[pages]; in xen_load_gdt_boot() local
664 frames[f] = mfn; in xen_load_gdt_boot()
667 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct))) in xen_load_gdt_boot()
/linux-4.1.27/net/l2tp/
DKconfig64 ethernet frames.
67 tunnel raw ethernet frames using L2TP, say Y here. If
77 L2TP frames, namely UDP and plain IP (without UDP). This
91 Support for carrying raw ethernet frames over L2TPv3.
/linux-4.1.27/net/bridge/netfilter/
DKconfig45 bridging and routing frames, giving Linux the functionality of a
74 This option adds matching support for 802.3 Ethernet frames.
125 This option adds the mark match, which allows matching frames based on
173 destination address of frames.
180 This option adds the mark target, which allows marking frames by
199 source address of frames.
/linux-4.1.27/sound/usb/
Dpcm.c1241 unsigned int stride, frames, bytes, oldptr; in retire_capture_urb() local
1260 frames = bytes / stride; in retire_capture_urb()
1262 bytes = frames * stride; in retire_capture_urb()
1265 bytes = frames * stride; in retire_capture_urb()
1276 frames = (bytes + (oldptr % stride)) / stride; in retire_capture_urb()
1277 subs->transfer_done += frames; in retire_capture_urb()
1368 unsigned int counts, frames, bytes; in prepare_playback_urb() local
1374 frames = 0; in prepare_playback_urb()
1385 urb->iso_frame_desc[i].offset = frames * ep->stride; in prepare_playback_urb()
1387 frames += counts; in prepare_playback_urb()
[all …]
/linux-4.1.27/drivers/dma/
Dbcm2835-dma.c88 unsigned int frames; member
263 for (size = i = 0; i < d->frames; i++) { in bcm2835_dma_desc_size_pos()
378 d->frames = buf_len / period_len; in bcm2835_dma_prep_dma_cyclic()
381 d->control_block_size = d->frames * sizeof(struct bcm2835_dma_cb); in bcm2835_dma_prep_dma_cyclic()
395 for (frame = 0; frame < d->frames; frame++) { in bcm2835_dma_prep_dma_cyclic()
433 * ((frame + 1) % d->frames); in bcm2835_dma_prep_dma_cyclic()
/linux-4.1.27/arch/arm/xen/
Dgrant-table.c36 int arch_gnttab_map_shared(xen_pfn_t *frames, unsigned long nr_gframes, in arch_gnttab_map_shared() argument
/linux-4.1.27/Documentation/networking/mac80211_hwsim/
DREADME34 radio and copying all transmitted frames to all other radios that are
36 radio. Software encryption in mac80211 is used so that the frames are
41 mac80211. This interface can be used to monitor all transmitted frames
/linux-4.1.27/sound/atmel/
Dac97c.c593 snd_pcm_uframes_t frames; in atmel_ac97c_playback_pointer() local
602 frames = bytes_to_frames(runtime, bytes); in atmel_ac97c_playback_pointer()
603 if (frames >= runtime->buffer_size) in atmel_ac97c_playback_pointer()
604 frames -= runtime->buffer_size; in atmel_ac97c_playback_pointer()
605 return frames; in atmel_ac97c_playback_pointer()
613 snd_pcm_uframes_t frames; in atmel_ac97c_capture_pointer() local
622 frames = bytes_to_frames(runtime, bytes); in atmel_ac97c_capture_pointer()
623 if (frames >= runtime->buffer_size) in atmel_ac97c_capture_pointer()
624 frames -= runtime->buffer_size; in atmel_ac97c_capture_pointer()
625 return frames; in atmel_ac97c_capture_pointer()
Dabdac.c272 snd_pcm_uframes_t frames; in atmel_abdac_pointer() local
278 frames = bytes_to_frames(runtime, bytes); in atmel_abdac_pointer()
279 if (frames >= runtime->buffer_size) in atmel_abdac_pointer()
280 frames -= runtime->buffer_size; in atmel_abdac_pointer()
282 return frames; in atmel_abdac_pointer()
/linux-4.1.27/Documentation/video4linux/
Domap4_camera.txt31 which only the last one is supported, outputting YUV422 frames).
34 which only the OV5650 are supported, outputting RAW10 frames).
Dcpia2_overview.txt5 STV0672, which is capable of up to 30 frames per second (fps) in frame sizes
6 up to CIF, and 15 fps for VGA frames. The STV0676 is an improved version,
Domap3isp.txt56 is run one frame at a time. Applying the settings is done between the frames.
59 insist on receiving complete frames. Sensors must thus never send the ISP
60 partial frames.
DZoran287 LML33 perfect, Buz tolerable (3 or 4 frames dropped per movie)
289 LML33 tolerable. Buz starting to get annoying (6-10 frames/hour)
382 1:2 compression. For 1:4 compression, you'd have frames of half this size.
412 frame, and one of those frames goes into each buffer.
DREADME.cpia290 be necessary to increase the buffer size to avoid having frames dropped due
Dvideobuf7 the storage of video frames. There is a set of functions which can be used
195 read a single frame, while videobuf_read_stream() will read multiple frames
Dvivid.txt262 Special attention has been given to the rate at which new frames become
267 exceeds your kernel's HZ value, then you will get dropped frames, but the
269 count will skip whenever frames are dropped.
276 supports frames per second settings of 10, 15, 25, 30, 50 and 60 fps. Which ones
278 lower the maximum frames per second.
/linux-4.1.27/drivers/media/usb/go7007/
Dsnd-go7007.c77 int frames = bytes_to_frames(runtime, length); in parse_audio_stream_data() local
80 gosnd->hw_ptr += frames; in parse_audio_stream_data()
83 gosnd->avail += frames; in parse_audio_stream_data()
/linux-4.1.27/net/irda/
DKconfig43 no management frames, simple fixed header).
54 makes sense since most frames will be sent/received on the same
63 Say Y here is you want IrLAP to send fast RR (Receive Ready) frames
/linux-4.1.27/include/uapi/linux/can/
Dbcm.h68 struct can_frame frames[0]; member
/linux-4.1.27/drivers/block/
Dpktcdvd.c521 static struct packet_data *pkt_alloc_packet_data(int frames) in pkt_alloc_packet_data() argument
530 pkt->frames = frames; in pkt_alloc_packet_data()
531 pkt->w_bio = bio_kmalloc(GFP_KERNEL, frames); in pkt_alloc_packet_data()
535 for (i = 0; i < frames / FRAMES_PER_PAGE; i++) { in pkt_alloc_packet_data()
544 for (i = 0; i < frames; i++) { in pkt_alloc_packet_data()
555 for (i = 0; i < frames; i++) { in pkt_alloc_packet_data()
562 for (i = 0; i < frames / FRAMES_PER_PAGE; i++) in pkt_alloc_packet_data()
579 for (i = 0; i < pkt->frames; i++) { in pkt_free_packet_data()
584 for (i = 0; i < pkt->frames / FRAMES_PER_PAGE; i++) in pkt_free_packet_data()
960 for (f = 0; f < pkt->frames; f++) { in pkt_make_local_copy()
[all …]
/linux-4.1.27/sound/soc/fsl/
Dfsl_dma.c709 snd_pcm_uframes_t frames; in fsl_dma_pointer() local
745 frames = bytes_to_frames(runtime, position - dma_private->dma_buf_phys); in fsl_dma_pointer()
751 if (frames == runtime->buffer_size) in fsl_dma_pointer()
752 frames = 0; in fsl_dma_pointer()
754 return frames; in fsl_dma_pointer()
/linux-4.1.27/sound/soc/omap/
Domap-mcbsp.c100 struct snd_interval frames; in omap_mcbsp_hwrule_min_buffersize() local
103 snd_interval_any(&frames); in omap_mcbsp_hwrule_min_buffersize()
106 frames.min = size / channels->min; in omap_mcbsp_hwrule_min_buffersize()
107 frames.integer = 1; in omap_mcbsp_hwrule_min_buffersize()
108 return snd_interval_refine(buffer_size, &frames); in omap_mcbsp_hwrule_min_buffersize()
/linux-4.1.27/Documentation/input/
Dntrig.txt33 deactivate_slack the number of "no contact" frames to ignore before
37 frames. By holding off on deactivation for a few frames we can tolerate false
86 Time is measured in terms of the number of fingers reported, not frames since
Diforce-protocol.txt25 The 2B, LEN and CS fields have disappeared, probably because USB handles frames and
/linux-4.1.27/drivers/gpu/drm/panel/
Dpanel-sharp-lq101r1sx01.c42 static void sharp_wait_frames(struct sharp_panel *sharp, unsigned int frames) in sharp_wait_frames() argument
46 if (WARN_ON(frames > refresh)) in sharp_wait_frames()
49 msleep(1000 / (refresh / frames)); in sharp_wait_frames()
/linux-4.1.27/net/nfc/hci/
DKconfig8 HCI frames, like for example the NXP pn544.
/linux-4.1.27/arch/arm/lib/
Dbacktrace.S33 beq no_frame @ we have no stack frames
95 beq no_frame @ no further frames
/linux-4.1.27/arch/unicore32/lib/
Dbacktrace.S36 beq no_frame @ we have no stack frames
94 beq no_frame @ no further frames
/linux-4.1.27/Documentation/nfc/
Dnfc-hci.txt118 On the rx path, the driver is responsible to push incoming HCP frames to HCI
186 fast, cannot sleep. sends incoming frames to HCI where they are passed to
227 handles shdlc framing in and out. It uses the driver xmit to send frames and
228 receives incoming frames in an skb queue filled from the driver IRQ handler.
229 SHDLC I(nformation) frames payload are HCP fragments. They are aggregated to
230 form complete HCI frames, which can be a response, command, or event.
277 frames. This thread will also check the shdlc sticky status and report to HCI
/linux-4.1.27/Documentation/networking/caif/
DLinux-CAIF.txt98 External Interface). This layer encodes/decodes VEI frames.
101 traffic), encodes/decodes Datagram frames.
112 - CFSERL CAIF Serial layer. Handles concatenation/split of frames
/linux-4.1.27/net/ax25/
DTODO20 Handle XID and TEST frames properly.
/linux-4.1.27/net/lapb/
DKconfig10 connection service to exchange data frames with one other host, and
/linux-4.1.27/Documentation/usb/
DURB.txt89 The parameter isoframes specifies the number of isochronous transfer frames
136 - Too many requested ISO frames (-EFBIG)
238 0 to omit one or more frames (striping).
245 If you specify your own start frame, make sure it's several frames in advance
253 in intervals that are powers of two (1, 2, 4 etc) units. Units are frames
Derror-codes.txt40 -EXDEV ISO: URB_ISO_ASAP wasn't specified and all the frames
43 -EFBIG Host controller driver can't schedule that many ISO frames.
/linux-4.1.27/include/linux/
Disdn_ppp.h109 long frames; /* number of frames in the frame list */ member
Dpktcdvd.h121 int frames; /* Number of frames in this packet */ member
/linux-4.1.27/drivers/isdn/mISDN/
DKconfig37 - layer 1 control via network keepalive frames
/linux-4.1.27/include/sound/
Dpcm.h1060 int snd_pcm_format_set_silence(snd_pcm_format_t format, void *buf, unsigned int frames);
1074 snd_pcm_uframes_t frames);
1076 void __user *buf, snd_pcm_uframes_t frames);
1078 void __user **bufs, snd_pcm_uframes_t frames);
1080 void __user **bufs, snd_pcm_uframes_t frames);
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-bus-fcoe75 Fibre Channel frames into a FC fabric. It can also take
76 outbound FC frames and pack them in Ethernet packets to
Dsysfs-class-net-cdc_ncm8 tx_max sized frames with no terminating short
19 Set to 0 to pad all frames. Set greater than tx_max to
Dsysfs-class-net-statistics68 Indicates the number of received frames with error, such as
/linux-4.1.27/drivers/scsi/libsas/
DKconfig46 Allows sas hosts to receive SMP frames. Selecting this
/linux-4.1.27/include/xen/
Dgrant_table.h167 int arch_gnttab_map_shared(xen_pfn_t *frames, unsigned long nr_gframes,
/linux-4.1.27/Documentation/isdn/
DsyncPPP.FAQ26 frames (bit based protocol) ... The PPP driver
29 frames to the /dev/ippp* device.
38 frames ... you probably connect to a
DREADME.hfc-pci4 to read the echo-channel of the isdn bus. So all frames in both directions
DREADME231 0 = X75/LAPB with I-frames
232 1 = X75/LAPB with UI-frames
233 2 = X75/LAPB with BUI-frames
DREADME.HiSax395 0x0400 D-Channel frames for isdnlog (set with 1 0x4 too)
/linux-4.1.27/drivers/net/wireless/iwlwifi/
DKconfig84 broadcast frames, except some very specific predefined
144 Say Y here to trace all commands, including TX frames and IO
/linux-4.1.27/drivers/gpu/drm/sti/
DNOTES4 - The High Quality Video Display Processor (HQVDP) gets video frames from a
/linux-4.1.27/arch/x86/include/asm/xen/
Dhypercall.h583 MULTI_set_gdt(struct multicall_entry *mcl, unsigned long *frames, int entries) in MULTI_set_gdt() argument
586 mcl->args[0] = (unsigned long)frames; in MULTI_set_gdt()
/linux-4.1.27/sound/drivers/
Dmts64.c155 u8 seconds, u8 frames,
369 u8 seconds, u8 frames, in mts64_smpte_start() argument
379 mts64_write_command(p, frames); in mts64_smpte_start()
/linux-4.1.27/include/trace/events/
Dv4l2.h134 buf->timecode.frames; \
/linux-4.1.27/drivers/media/platform/marvell-ccic/
Dmcam-core.h86 unsigned int frames; member
Dmcam-core.c1694 cam->frame_state.frames = 0; in mcam_v4l_open()
1720 cam->frame_state.frames, cam->frame_state.singles, in mcam_v4l_release()
1815 cam->frame_state.frames++; in mcam_frame_complete()
/linux-4.1.27/Documentation/vm/
Dhighmem.txt149 (*) you can have 896M/sizeof(struct page) page-frames at most; with struct
152 page-frames in that memory...
/linux-4.1.27/net/batman-adv/
DKconfig24 to avoid Ethernet frames looping when mesh nodes are connected
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Darch_timer.txt4 or a memory mapped architected timer, which provides up to 8 frames with a
/linux-4.1.27/sound/soc/sh/
Dfsi.c442 static int fsi_frame2sample(struct fsi_priv *fsi, int frames) in fsi_frame2sample() argument
444 return frames * fsi->chan_num; in fsi_frame2sample()
457 int frames; in fsi_get_current_fifo_samples() local
463 frames = 0x1ff & (status >> 8); in fsi_get_current_fifo_samples()
465 return fsi_frame2sample(fsi, frames); in fsi_get_current_fifo_samples()
/linux-4.1.27/include/uapi/sound/
Dasound.h488 snd_pcm_uframes_t frames; member
494 snd_pcm_uframes_t frames; member
/linux-4.1.27/net/ieee802154/
Dnl-mac.c844 u8 frames; in ieee802154_llsec_parse_key() local
853 frames = nla_get_u8(info->attrs[IEEE802154_ATTR_LLSEC_KEY_USAGE_FRAME_TYPES]); in ieee802154_llsec_parse_key()
854 if ((frames & BIT(IEEE802154_FC_TYPE_MAC_CMD)) && in ieee802154_llsec_parse_key()
871 key->frame_types = frames; in ieee802154_llsec_parse_key()
/linux-4.1.27/Documentation/sound/alsa/
Demu10k1-jack.txt19 even 32 (0.66ms) frames should work well.
Dcompress_offload.txt10 returned values in frames are the norm, making it a challenge to
201 additional interface to let the decoder synthesize data when frames
/linux-4.1.27/drivers/isdn/i4l/
Disdn_ppp.c1596 lp->netdev->pb->frames = 0; in isdn_ppp_mp_init()
1639 if (++mp->frames > stats->max_queue_len) in isdn_ppp_mp_receive()
1640 stats->max_queue_len = mp->frames; in isdn_ppp_mp_receive()
1824 if (mp->frames > MP_MAX_QUEUE_LEN) { in isdn_ppp_mp_receive()
1826 while (mp->frames > MP_MAX_QUEUE_LEN) { in isdn_ppp_mp_receive()
1912 mp->frames--; in isdn_ppp_mp_reassembly()
1949 mp->frames--; in isdn_ppp_mp_free_skb()
/linux-4.1.27/arch/xtensa/kernel/
Dentry.S185 ffs_ws a0, a3 # number of frames to the '1' from left
192 slli a3, a0, 4 # number of frames to save in bits 8..4
526 l32i a2, a1, PT_WMASK # register frames saved (in bits 4...9)
1139 ffs_ws a0, a3 # a0: shifts to skip empty frames
/linux-4.1.27/sound/pci/emu10k1/
Demupcm.c1608 unsigned int frames = bytes >> 2, count; in fx8010_pb_trans_copy() local
1612 while (frames > tram_pos) { in fx8010_pb_trans_copy()
1618 frames -= count; in fx8010_pb_trans_copy()
1624 src, frames, tram_shift); in fx8010_pb_trans_copy()
1625 tram_pos -= frames; in fx8010_pb_trans_copy()
/linux-4.1.27/drivers/staging/slicoss/
Dslicoss.c2003 u32 frames = 0; in slic_rcv_handler() local
2035 ++frames; in slic_rcv_handler()
2037 if (frames >= SLIC_RCVQ_MAX_PROCESS_ISR) { in slic_rcv_handler()
2043 adapter->max_isr_rcvs = max(adapter->max_isr_rcvs, frames); in slic_rcv_handler()
2050 u32 frames = 0; in slic_xmit_complete() local
2075 frames++; in slic_xmit_complete()
2077 adapter->max_isr_xmits = max(adapter->max_isr_xmits, frames); in slic_xmit_complete()
/linux-4.1.27/Documentation/devicetree/bindings/soc/fsl/
Dqman.txt14 supports queuing and QoS scheduling of frames to CPUs, network interfaces and
/linux-4.1.27/drivers/net/ethernet/i825xx/
Dlib82596.c653 int frames = 0; in i596_rx() local
685 frames++; in i596_rx()
791 DEB(DEB_RXFRAME, printk(KERN_DEBUG "frames %d\n", frames)); in i596_rx()
D82596.c750 int frames = 0; in i596_rx() local
777 frames++; in i596_rx()
870 DEB(DEB_RXFRAME,printk(KERN_DEBUG "frames %d\n", frames)); in i596_rx()
/linux-4.1.27/Documentation/ioctl/
Dcdrom.txt141 MSF stands for minutes-seconds-frames
145 is described as minutes:seconds:frames. A frame is 1/75 of
209 MSF stands for minutes-seconds-frames
/linux-4.1.27/Documentation/x86/
Dentry_64.txt43 magic to get the stack frames right. (You can find some
/linux-4.1.27/drivers/net/appletalk/
DKconfig106 IP packets inside AppleTalk frames; this is useful if your Linux box
/linux-4.1.27/sound/pci/rme9652/
Dhdspm.c1533 static int hdspm_set_interrupt_interval(struct hdspm *s, unsigned int frames) in hdspm_set_interrupt_interval() argument
1539 if (32 == frames) { in hdspm_set_interrupt_interval()
1552 frames >>= 7; in hdspm_set_interrupt_interval()
1554 while (frames) { in hdspm_set_interrupt_interval()
1556 frames >>= 1; in hdspm_set_interrupt_interval()
4757 int a, ltc, frames, seconds, minutes, hours; in snd_hdspm_proc_read_tco() local
4839 frames = ltc & 0xF; in snd_hdspm_proc_read_tco()
4841 frames += (ltc & 0x3) * 10; in snd_hdspm_proc_read_tco()
4856 hours, minutes, seconds, frames); in snd_hdspm_proc_read_tco()
Drme9652.c449 unsigned int frames) in rme9652_set_interrupt_interval() argument
460 frames >>= 7; in rme9652_set_interrupt_interval()
462 while (frames) { in rme9652_set_interrupt_interval()
464 frames >>= 1; in rme9652_set_interrupt_interval()
Dhdsp.c1089 static int hdsp_set_interrupt_interval(struct hdsp *s, unsigned int frames) in hdsp_set_interrupt_interval() argument
1095 frames >>= 7; in hdsp_set_interrupt_interval()
1097 while (frames) { in hdsp_set_interrupt_interval()
1099 frames >>= 1; in hdsp_set_interrupt_interval()
/linux-4.1.27/Documentation/dvb/
Davermedia.txt27 sequence of image frames (25 per second) rasterised using an
47 color pixels over 25 frames per second - a fair amount of data
/linux-4.1.27/Documentation/ide/
DChangeLog.ide-tape.1995-2002219 * Ver 1.16f Dec 15 99 Change place of the secondary OnStream header frames.
222 * function to get tape capacity in frames: tape->capacity.
/linux-4.1.27/include/media/
Dv4l2-subdev.h408 int (*g_skip_frames)(struct v4l2_subdev *sd, u32 *frames);
/linux-4.1.27/drivers/net/can/
DKconfig20 As only the sending and receiving of CAN frames is implemented, this
/linux-4.1.27/drivers/net/ppp/
DKconfig115 Support PPP (Point to Point Protocol) encapsulated in ATM frames.
/linux-4.1.27/Documentation/scheduler/
Dsched-rt-group.txt61 frames a second, which yields a period of 0.04s per frame. Now say it will also
/linux-4.1.27/arch/um/
DKconfig.net184 frames. In general, slirp allows the UML the same IP connectivity
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4.h174 u64 frames; member
/linux-4.1.27/include/uapi/linux/
Dvideodev2.h636 __u8 frames; member
/linux-4.1.27/drivers/usb/gadget/
DKconfig272 grouping of several ethernet frames into one USB transfer and
/linux-4.1.27/drivers/net/wan/
DKconfig380 Send and receive X.25 frames over regular asynchronous serial
/linux-4.1.27/drivers/atm/
DKconfig361 frames (<64 bytes) or raw AAL0 cells (48 bytes) to the ATM adapter.
/linux-4.1.27/drivers/usb/gadget/legacy/
DKconfig170 of several ethernet frames into one USB transfer and different
/linux-4.1.27/drivers/net/wireless/hostap/
Dhostap_hw.c2484 int frames = 30; in hostap_bap_tasklet() local
2493 while (frames-- > 0) { in hostap_bap_tasklet()
/linux-4.1.27/drivers/media/i2c/smiapp/
Dsmiapp-core.c2275 static int smiapp_get_skip_frames(struct v4l2_subdev *subdev, u32 *frames) in smiapp_get_skip_frames() argument
2279 *frames = sensor->frame_skip; in smiapp_get_skip_frames()
/linux-4.1.27/Documentation/scsi/
DChangeLog.megaraid_sas24 3. Return leaked MPT frames to MPT command pool.
/linux-4.1.27/net/sched/
DKconfig562 Say Y here if you want to be able to classify CAN frames based
/linux-4.1.27/Documentation/virtual/kvm/
Dmmu.txt392 a large spte. The frames at the end of an unaligned memory slot have
Dapi.txt2829 The count field is the number of consecutive frames (starting from start_gfn)
2852 The count field is the number of consecutive frames (starting from start_gfn)
2859 single frame starting at start_gfn for count frames.
/linux-4.1.27/Documentation/filesystems/cifs/
DCHANGES4 to more strictly handle corrupt frames.
381 transact response for an SMB request and search entry split across two frames.
/linux-4.1.27/drivers/media/platform/vivid/
Dvivid-vid-cap.c226 tc->frames = seq % fps; in vid_cap_buf_finish()
/linux-4.1.27/Documentation/cdrom/
Dcdrom-standard.tex526 problem here could be the fact that audio-frames are 2352 bytes long,
532 in audio frames. Once these issues are resolved, this code should be
/linux-4.1.27/lib/
DKconfig.debug198 int "Warn for stack frames larger than (needs gcc 4.4)"
203 Tell gcc to warn at build time for stack frames larger than this.
/linux-4.1.27/drivers/media/usb/s2255/
Ds2255drv.c263 int frames; member
/linux-4.1.27/drivers/video/fbdev/
DKconfig2387 serial updates, reducing the number of possible frames per second.
2395 concurrent updates, making higher frames per second possible.
/linux-4.1.27/drivers/media/v4l2-core/
Dv4l2-ioctl.c470 tc->type, tc->flags, tc->frames, *(__u32 *)tc->userbits); in v4l_print_buffer()
/linux-4.1.27/Documentation/virtual/uml/
DUserModeLinux-HOWTO.txt1656 which exchanges ethernet frames with the host and can be used to
3157 o There are two segfaults on this stack (frames 9 and 14)