/linux-4.4.14/sound/core/oss/ |
D | pcm_plugin.c | 49 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 …]
|
D | route.c | 28 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 …]
|
D | rate.c | 183 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 …]
|
D | io.c | 40 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()
|
D | mulaw.c | 144 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 …]
|
D | copy.c | 30 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()
|
D | pcm_plugin.h | 43 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,
|
D | linear.c | 58 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()
|
D | pcm_oss.c | 611 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.4.14/drivers/media/usb/pwc/ |
D | pwc-ctrl.c | 154 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 …]
|
D | pwc.h | 369 int pixfmt, int frames, int *compression, int send_to_cam);
|
D | philips.txt | 58 frames from the cam. This will help if the process that reads images from
|
/linux-4.4.14/sound/firewire/ |
D | amdtp-am824.c | 43 __be32 *buffer, unsigned int frames); 156 __be32 *buffer, unsigned int frames) in write_pcm_s32() argument 168 for (i = 0; i < frames; ++i) { in write_pcm_s32() 182 __be32 *buffer, unsigned int frames) in write_pcm_s16() argument 194 for (i = 0; i < frames; ++i) { in write_pcm_s16() 208 __be32 *buffer, unsigned int frames) in read_pcm_s32() argument 220 for (i = 0; i < frames; ++i) { in read_pcm_s32() 232 __be32 *buffer, unsigned int frames) in write_pcm_silence() argument 237 for (i = 0; i < frames; ++i) { in write_pcm_silence() 355 unsigned int frames) in write_midi_messages() argument [all …]
|
D | amdtp-stream.c | 340 unsigned int frames) in update_pcm_pointers() argument 344 ptr = s->pcm_buffer_pointer + frames; in update_pcm_pointers() 349 s->pcm_period_pointer += frames; in update_pcm_pointers()
|
/linux-4.4.14/net/can/ |
D | bcm.c | 107 struct can_frame *frames; member 251 struct can_frame *cf = &op->frames[op->currframe]; in bcm_can_tx() 294 struct can_frame *frames, int has_timestamp) in bcm_send_to_user() argument 313 memcpy(skb_put(skb, datalen), frames, datalen); in bcm_send_to_user() 499 if ((GET_U64(&op->frames[index]) & GET_U64(rxdata)) != in bcm_rx_cmp_to_index() 500 (GET_U64(&op->frames[index]) & GET_U64(&op->last_frames[index]))) { in bcm_rx_cmp_to_index() 682 if ((GET_U64(&op->frames[0]) & GET_U64(rxframe)) == in bcm_rx_handler() 683 (GET_U64(&op->frames[0]) & in bcm_rx_handler() 684 GET_U64(&op->frames[i]))) { in bcm_rx_handler() 722 if ((op->frames) && (op->frames != &op->sframe)) in bcm_remove_op() [all …]
|
D | Kconfig | 28 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.4.14/net/mac80211/ |
D | mesh_ps.c | 412 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 …]
|
D | rx.c | 804 struct sk_buff_head *frames) in ieee80211_release_reorder_frame() argument 825 __skb_queue_tail(frames, skb); in ieee80211_release_reorder_frame() 835 struct sk_buff_head *frames) in ieee80211_release_reorder_frames() argument 844 frames); in ieee80211_release_reorder_frames() 861 struct sk_buff_head *frames) in ieee80211_sta_reorder_release() argument 896 frames); in ieee80211_sta_reorder_release() 909 frames); in ieee80211_sta_reorder_release() 942 struct sk_buff_head *frames) in ieee80211_sta_manage_reorder_buf() argument 982 head_seq_num, frames); in ieee80211_sta_manage_reorder_buf() 1015 ieee80211_sta_reorder_release(sdata, tid_agg_rx, frames); in ieee80211_sta_manage_reorder_buf() [all …]
|
D | sta_info.c | 1347 struct sk_buff_head frames; in ieee80211_sta_ps_deliver_response() local 1352 __skb_queue_head_init(&frames); in ieee80211_sta_ps_deliver_response() 1366 if (skb_queue_empty(&frames)) { in ieee80211_sta_ps_deliver_response() 1399 __skb_queue_tail(&frames, skb); in ieee80211_sta_ps_deliver_response() 1414 if (skb_queue_empty(&frames) && !driver_release_tids) { in ieee80211_sta_ps_deliver_response() 1445 while ((skb = __skb_dequeue(&frames))) { in ieee80211_sta_ps_deliver_response() 1464 if (more_data || !skb_queue_empty(&frames)) in ieee80211_sta_ps_deliver_response() 1480 if (!skb_queue_empty(&frames)) in ieee80211_sta_ps_deliver_response()
|
D | ieee80211_i.h | 1825 static inline bool ieee80211_rx_reorder_ready(struct sk_buff_head *frames) in ieee80211_rx_reorder_ready() argument 1827 struct sk_buff *tail = skb_peek_tail(frames); in ieee80211_rx_reorder_ready()
|
/linux-4.4.14/sound/core/ |
D | pcm_compat.c | 46 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 …]
|
D | pcm_lib.c | 56 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 …]
|
D | pcm_native.c | 517 snd_pcm_uframes_t frames; in snd_pcm_hw_params() local 573 frames = 1; in snd_pcm_hw_params() 576 frames *= 2; in snd_pcm_hw_params() 579 runtime->min_align = frames; in snd_pcm_hw_params() 2431 snd_pcm_uframes_t frames) in snd_pcm_playback_rewind() argument 2438 if (frames == 0) in snd_pcm_playback_rewind() 2466 if (frames > (snd_pcm_uframes_t)hw_avail) in snd_pcm_playback_rewind() 2467 frames = hw_avail; in snd_pcm_playback_rewind() 2468 appl_ptr = runtime->control->appl_ptr - frames; in snd_pcm_playback_rewind() 2472 ret = frames; in snd_pcm_playback_rewind() [all …]
|
/linux-4.4.14/sound/firewire/tascam/ |
D | amdtp-tascam.c | 20 __be32 *buffer, unsigned int frames); 42 __be32 *buffer, unsigned int frames) in write_pcm_s32() argument 54 for (i = 0; i < frames; ++i) { in write_pcm_s32() 67 __be32 *buffer, unsigned int frames) in write_pcm_s16() argument 79 for (i = 0; i < frames; ++i) { in write_pcm_s16() 92 __be32 *buffer, unsigned int frames) in read_pcm_s32() argument 107 for (i = 0; i < frames; ++i) { in read_pcm_s32()
|
/linux-4.4.14/Documentation/video4linux/cx2341x/ |
D | fw-decoder-api.txt | 23 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 …]
|
D | fw-encoder-api.txt | 17 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 …]
|
D | README.hm12 | 30 Y, U and V planes. This code assumes frames of 720x576 (PAL) pixels.
|
/linux-4.4.14/sound/usb/misc/ |
D | ua101.c | 222 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.4.14/Documentation/networking/ |
D | can.txt | 15 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 …]
|
D | netlink_mmap.txt | 47 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 …]
|
D | mac80211-auth-assoc-deauth.txt | 22 BA session stop & deauth/disassoc frames 78 (data frames) 87 mac80211->driver: flush frames
|
D | l2tp.txt | 43 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 …]
|
D | packet_mmap.txt | 142 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 …]
|
D | altera_tse.txt | 44 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
|
D | cdc_mbim.txt | 210 - 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
|
D | vxge.txt | 40 iv) Jumbo frames 84 Enables/disables vlan tag stripping from all received tagged frames that
|
D | tcp.txt | 88 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
|
D | tuntap.txt | 26 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.
|
D | ppp_generic.txt | 21 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
|
D | dl2k.txt | 211 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.
|
D | gianfar.txt | 34 The gianfar driver supports padding received frames with 2 bytes
|
D | s2io.txt | 16 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,
|
D | ray_cs.txt | 122 translate integer 0 = no translation (encapsulate frames) 143 Support for defragmenting frames is not yet debugged, and in
|
D | z8530drv.txt | 337 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
|
D | x25.txt | 27 option appeared, XOT. This allows X.25 Packet Layer frames to operate over
|
D | netdev-features.txt | 164 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
|
D | stmmac.txt | 74 Wake up on Lan feature through Magic and Unicast frames are supported for the 106 Jumbo frames are supported and tested for the GMAC. 163 over-sized frames due to limited buffer sizes. 165 JUMBO frames.
|
D | igb.txt | 57 - Using Jumbo frames at 10 or 100 Mbps is not supported and may result in
|
D | cs89x0.txt | 459 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
|
D | generic-hdlc.txt | 96 frames. The device will be named pvceth0, pvceth1 etc.
|
D | e1000.txt | 76 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
|
D | ixgbe.txt | 108 receiving and transmitting pause frames for ixgbe. When TX is enabled, PAUSE 109 frames are generated when the receive packet buffer crosses a predefined
|
D | vortex.txt | 160 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.
|
D | ixgb.txt | 126 Ethernet PAUSE frames. There are hardware bugs associated with enabling 373 Degradation in throughput performance may be observed in some Jumbo frames
|
D | ip-sysctl.txt | 26 discarded. Outgoing frames are handled the same as in mode 1, 599 Since linux-3.12, TCP does an automatic sizing of TSO frames, 602 TSO frames. Note that TCP stack might split too big TSO packets 625 building larger TSO frames. 897 frames. Such violations are normally logged via a kernel warning. 1160 Define behavior for gratuitous ARP frames who's IP is not
|
D | decnet.txt | 191 Ethernet cards are designed to normally only pass received network frames
|
D | e1000e.txt | 262 - Using Jumbo frames at 10 or 100 Mbps is not supported and may result in
|
D | bonding.txt | 262 Specifies that duplicate frames (received on inactive ports) should be 265 Normally, bonding will drop duplicate frames (received on inactive 267 it is nice to allow duplicate frames to be delivered. 269 The default value is 0 (drop duplicate frames received on inactive 2376 that frames be delivered in order (within certain limits), so
|
/linux-4.4.14/net/hsr/ |
D | Kconfig | 14 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.4.14/sound/firewire/digi00x/ |
D | amdtp-dot.c | 53 __be32 *buffer, unsigned int frames); 155 __be32 *buffer, unsigned int frames) in write_pcm_s32() argument 168 for (i = 0; i < frames; ++i) { in write_pcm_s32() 181 __be32 *buffer, unsigned int frames) in write_pcm_s16() argument 194 for (i = 0; i < frames; ++i) { in write_pcm_s16() 207 __be32 *buffer, unsigned int frames) in read_pcm_s32() argument 220 for (i = 0; i < frames; ++i) { in read_pcm_s32()
|
/linux-4.4.14/drivers/staging/most/aim-sound/ |
D | sound.c | 188 unsigned int frames; in copy_data() local 192 frames = mbo->processed_length / frame_bytes; in copy_data() 194 frames = mbo->buffer_length / frame_bytes; in copy_data() 195 fr0 = min(buffer_size - channel->buffer_pos, frames); in copy_data() 201 if (frames > fr0) { in copy_data() 205 (frames - fr0) * frame_bytes); in copy_data() 208 channel->buffer_pos += frames; in copy_data() 211 channel->period_pos += frames; in copy_data()
|
/linux-4.4.14/sound/soc/blackfin/ |
D | bf5xx-i2s-pcm.c | 147 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.4.14/sound/usb/line6/ |
D | capture.c | 94 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()
|
D | playback.c | 72 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.4.14/drivers/dma/ |
D | bcm2835-dma.c | 94 unsigned int frames; member 154 for (i = 0; i < desc->frames; i++) in bcm2835_dma_desc_free() 280 for (size = i = 0; i < d->frames; i++) { in bcm2835_dma_desc_size_pos() 396 d->frames = buf_len / period_len; in bcm2835_dma_prep_dma_cyclic() 398 d->cb_list = kcalloc(d->frames, sizeof(*d->cb_list), GFP_KERNEL); in bcm2835_dma_prep_dma_cyclic() 404 for (i = 0; i < d->frames; i++) { in bcm2835_dma_prep_dma_cyclic() 417 for (frame = 0; frame < d->frames; frame++) { in bcm2835_dma_prep_dma_cyclic() 452 control_block->next = d->cb_list[((frame + 1) % d->frames)].paddr; in bcm2835_dma_prep_dma_cyclic()
|
/linux-4.4.14/drivers/usb/gadget/function/ |
D | u_uac1.c | 162 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.4.14/drivers/xen/ |
D | grant-table.c | 85 int (*map_frames)(xen_pfn_t *frames, unsigned int nr_gframes); 941 static int gnttab_map_frames_v1(xen_pfn_t *frames, unsigned int nr_gframes) in gnttab_map_frames_v1() argument 945 rc = arch_gnttab_map_shared(frames, nr_gframes, in gnttab_map_frames_v1() 961 xen_pfn_t *frames; in gnttab_map() local 993 frames = kmalloc(nr_gframes * sizeof(unsigned long), GFP_ATOMIC); in gnttab_map() 994 if (!frames) in gnttab_map() 999 set_xen_guest_handle(setup.frame_list, frames); in gnttab_map() 1003 kfree(frames); in gnttab_map() 1009 rc = gnttab_interface->map_frames(frames, nr_gframes); in gnttab_map() 1011 kfree(frames); in gnttab_map()
|
/linux-4.4.14/fs/ext4/ |
D | namei.c | 258 static void dx_release(struct dx_frame *frames); 270 struct dx_frame *frames, 857 static void dx_release(struct dx_frame *frames) in dx_release() argument 859 if (frames[0].bh == NULL) in dx_release() 862 if (((struct dx_root *)frames[0].bh->b_data)->info.indirect_levels) in dx_release() 863 brelse(frames[1].bh); in dx_release() 864 brelse(frames[0].bh); in dx_release() 886 struct dx_frame *frames, in ext4_htree_next_block() argument 905 if (p == frames) in ext4_htree_next_block() 1047 struct dx_frame frames[2], *frame; in ext4_htree_fill_tree() local [all …]
|
/linux-4.4.14/arch/x86/xen/ |
D | grant-table.c | 54 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()
|
D | enlighten.c | 594 unsigned long frames[pages]; in xen_load_gdt() local 625 frames[f] = mfn; in xen_load_gdt() 631 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct))) in xen_load_gdt() 643 unsigned long frames[pages]; in xen_load_gdt_boot() local 666 frames[f] = mfn; in xen_load_gdt_boot() 669 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct))) in xen_load_gdt_boot()
|
/linux-4.4.14/net/l2tp/ |
D | Kconfig | 64 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.4.14/net/bridge/netfilter/ |
D | Kconfig | 45 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.4.14/arch/arm/xen/ |
D | grant-table.c | 36 int arch_gnttab_map_shared(xen_pfn_t *frames, unsigned long nr_gframes, in arch_gnttab_map_shared() argument
|
/linux-4.4.14/Documentation/networking/mac80211_hwsim/ |
D | README | 34 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.4.14/sound/atmel/ |
D | ac97c.c | 593 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()
|
D | abdac.c | 272 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.4.14/sound/usb/ |
D | pcm.c | 1269 unsigned int stride, frames, bytes, oldptr; in retire_capture_urb() local 1288 frames = bytes / stride; in retire_capture_urb() 1290 bytes = frames * stride; in retire_capture_urb() 1293 bytes = frames * stride; in retire_capture_urb() 1304 frames = (bytes + (oldptr % stride)) / stride; in retire_capture_urb() 1305 subs->transfer_done += frames; in retire_capture_urb() 1446 unsigned int counts, frames, bytes; in prepare_playback_urb() local 1452 frames = 0; in prepare_playback_urb() 1463 urb->iso_frame_desc[i].offset = frames * ep->stride; in prepare_playback_urb() 1465 frames += counts; in prepare_playback_urb() [all …]
|
/linux-4.4.14/Documentation/video4linux/ |
D | omap4_camera.txt | 31 which only the last one is supported, outputting YUV422 frames). 34 which only the OV5650 are supported, outputting RAW10 frames).
|
D | cpia2_overview.txt | 5 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,
|
D | omap3isp.txt | 56 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.
|
D | Zoran | 287 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.
|
D | README.cpia2 | 90 be necessary to increase the buffer size to avoid having frames dropped due
|
D | videobuf | 7 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
|
D | vivid.txt | 262 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.4.14/drivers/media/usb/go7007/ |
D | snd-go7007.c | 77 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.4.14/net/irda/ |
D | Kconfig | 43 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.4.14/drivers/block/ |
D | pktcdvd.c | 522 static struct packet_data *pkt_alloc_packet_data(int frames) in pkt_alloc_packet_data() argument 531 pkt->frames = frames; in pkt_alloc_packet_data() 532 pkt->w_bio = bio_kmalloc(GFP_KERNEL, frames); in pkt_alloc_packet_data() 536 for (i = 0; i < frames / FRAMES_PER_PAGE; i++) { in pkt_alloc_packet_data() 545 for (i = 0; i < frames; i++) { in pkt_alloc_packet_data() 556 for (i = 0; i < frames; i++) { in pkt_alloc_packet_data() 563 for (i = 0; i < frames / FRAMES_PER_PAGE; i++) in pkt_alloc_packet_data() 580 for (i = 0; i < pkt->frames; i++) { in pkt_free_packet_data() 585 for (i = 0; i < pkt->frames / FRAMES_PER_PAGE; i++) in pkt_free_packet_data() 961 for (f = 0; f < pkt->frames; f++) { in pkt_make_local_copy() [all …]
|
/linux-4.4.14/include/uapi/linux/can/ |
D | bcm.h | 73 struct can_frame frames[0]; member
|
/linux-4.4.14/sound/soc/fsl/ |
D | fsl_dma.c | 709 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.4.14/sound/soc/omap/ |
D | omap-mcbsp.c | 100 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.4.14/Documentation/input/ |
D | ntrig.txt | 33 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
|
D | iforce-protocol.txt | 25 The 2B, LEN and CS fields have disappeared, probably because USB handles frames and
|
/linux-4.4.14/drivers/gpu/drm/panel/ |
D | panel-sharp-lq101r1sx01.c | 42 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.4.14/net/nfc/hci/ |
D | Kconfig | 8 HCI frames, like for example the NXP pn544.
|
/linux-4.4.14/arch/arm/lib/ |
D | backtrace.S | 33 beq no_frame @ we have no stack frames 95 beq no_frame @ no further frames
|
/linux-4.4.14/arch/unicore32/lib/ |
D | backtrace.S | 36 beq no_frame @ we have no stack frames 94 beq no_frame @ no further frames
|
/linux-4.4.14/Documentation/nfc/ |
D | nfc-hci.txt | 118 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.4.14/Documentation/networking/caif/ |
D | Linux-CAIF.txt | 98 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.4.14/net/ax25/ |
D | TODO | 20 Handle XID and TEST frames properly.
|
/linux-4.4.14/net/lapb/ |
D | Kconfig | 10 connection service to exchange data frames with one other host, and
|
/linux-4.4.14/Documentation/usb/ |
D | URB.txt | 89 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
|
D | error-codes.txt | 40 -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.4.14/drivers/isdn/mISDN/ |
D | Kconfig | 37 - layer 1 control via network keepalive frames
|
/linux-4.4.14/include/linux/ |
D | pktcdvd.h | 121 int frames; /* Number of frames in this packet */ member
|
D | isdn_ppp.h | 109 long frames; /* number of frames in the frame list */ member
|
/linux-4.4.14/include/trace/events/ |
D | v4l2.h | 134 __entry->timecode_frames = buf->timecode.frames; 211 __entry->timecode_frames = vbuf->timecode.frames;
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-bus-fcoe | 75 Fibre Channel frames into a FC fabric. It can also take 76 outbound FC frames and pack them in Ethernet packets to
|
D | sysfs-class-net | 47 Bitmask to allow forwarding of link local frames with address 51 Default value 0 does not forward any link local frames. 59 care when forwarding control frames e.g. 802.1X-PAE or LLDP.
|
D | sysfs-class-net-cdc_ncm | 8 tx_max sized frames with no terminating short 19 Set to 0 to pad all frames. Set greater than tx_max to
|
D | sysfs-class-net-statistics | 68 Indicates the number of received frames with error, such as
|
/linux-4.4.14/include/sound/ |
D | pcm.h | 1067 int snd_pcm_format_set_silence(snd_pcm_format_t format, void *buf, unsigned int frames); 1081 snd_pcm_uframes_t frames); 1083 void __user *buf, snd_pcm_uframes_t frames); 1085 void __user **bufs, snd_pcm_uframes_t frames); 1087 void __user **bufs, snd_pcm_uframes_t frames);
|
/linux-4.4.14/drivers/scsi/libsas/ |
D | Kconfig | 46 Allows sas hosts to receive SMP frames. Selecting this
|
/linux-4.4.14/Documentation/devicetree/bindings/net/nfc/ |
D | nfcmrvl.txt | 13 - hci-muxed: Specifies that the chip is muxing NCI over HCI frames.
|
/linux-4.4.14/Documentation/isdn/ |
D | syncPPP.FAQ | 26 frames (bit based protocol) ... The PPP driver 29 frames to the /dev/ippp* device. 38 frames ... you probably connect to a
|
D | README.hfc-pci | 4 to read the echo-channel of the isdn bus. So all frames in both directions
|
D | README | 231 0 = X75/LAPB with I-frames 232 1 = X75/LAPB with UI-frames 233 2 = X75/LAPB with BUI-frames
|
D | README.HiSax | 395 0x0400 D-Channel frames for isdnlog (set with 1 0x4 too)
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/ |
D | Kconfig | 86 broadcast frames, except some very specific predefined 147 Say Y here to trace all commands, including TX frames and IO
|
/linux-4.4.14/drivers/gpu/drm/sti/ |
D | NOTES | 4 - The High Quality Video Display Processor (HQVDP) gets video frames from a
|
/linux-4.4.14/arch/x86/include/asm/xen/ |
D | hypercall.h | 589 MULTI_set_gdt(struct multicall_entry *mcl, unsigned long *frames, int entries) in MULTI_set_gdt() argument 592 mcl->args[0] = (unsigned long)frames; in MULTI_set_gdt()
|
/linux-4.4.14/sound/drivers/ |
D | mts64.c | 155 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.4.14/drivers/media/platform/marvell-ccic/ |
D | mcam-core.h | 86 unsigned int frames; member
|
D | mcam-core.c | 1129 cam->frame_state.frames = 0; in mcam_vb_start_streaming() 1163 cam->frame_state.frames, cam->frame_state.singles, in mcam_vb_stop_streaming() 1691 cam->frame_state.frames++; in mcam_frame_complete()
|
/linux-4.4.14/include/xen/ |
D | grant_table.h | 178 int arch_gnttab_map_shared(xen_pfn_t *frames, unsigned long nr_gframes,
|
/linux-4.4.14/Documentation/vm/ |
D | highmem.txt | 149 (*) you can have 896M/sizeof(struct page) page-frames at most; with struct 152 page-frames in that memory...
|
/linux-4.4.14/net/batman-adv/ |
D | Kconfig | 24 to avoid Ethernet frames looping when mesh nodes are connected
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | arch_timer.txt | 4 or a memory mapped architected timer, which provides up to 8 frames with a
|
/linux-4.4.14/Documentation/networking/dsa/ |
D | dsa.txt | 27 receiving Ethernet frames from the switch. This is a very common setup for all 45 Ethernet frames it received to/from specific ports to help the management 138 frames that can be processed by the networking stack. 161 switch tag in the Ethernet frames. 163 These frames are then queued for transmission using the master network device 165 Ethernet switch will be able to process these incoming frames from the 166 management interface and delivers these frames to the physical switch port.
|
/linux-4.4.14/drivers/gpu/drm/tegra/ |
D | drm.h | 109 unsigned long frames; member
|
D | dc.c | 81 stats->frames = 0; in tegra_dc_stats_reset() 1320 dc->stats.frames++; in tegra_dc_irq() 1622 seq_printf(s, "frames: %lu\n", dc->stats.frames); in tegra_dc_show_stats()
|
/linux-4.4.14/sound/soc/sh/ |
D | fsi.c | 442 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.4.14/include/uapi/sound/ |
D | asound.h | 490 snd_pcm_uframes_t frames; member 496 snd_pcm_uframes_t frames; member
|
/linux-4.4.14/net/ieee802154/ |
D | nl-mac.c | 839 u8 frames; in ieee802154_llsec_parse_key() local 848 frames = nla_get_u8(info->attrs[IEEE802154_ATTR_LLSEC_KEY_USAGE_FRAME_TYPES]); in ieee802154_llsec_parse_key() 849 if ((frames & BIT(IEEE802154_FC_TYPE_MAC_CMD)) && in ieee802154_llsec_parse_key() 866 key->frame_types = frames; in ieee802154_llsec_parse_key()
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | emu10k1-jack.txt | 19 even 32 (0.66ms) frames should work well.
|
D | compress_offload.txt | 10 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.4.14/drivers/isdn/i4l/ |
D | isdn_ppp.c | 1596 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.4.14/arch/xtensa/kernel/ |
D | entry.S | 206 ffs_ws a0, a3 # number of frames to the '1' from left 213 slli a3, a0, 4 # number of frames to save in bits 8..4 589 l32i a2, a1, PT_WMASK # register frames saved (in bits 4...9) 1203 ffs_ws a0, a3 # a0: shifts to skip empty frames
|
/linux-4.4.14/Documentation/devicetree/bindings/usb/ |
D | ci-hdrc-usb2.txt | 73 gadget-itc-setting = <0x4>; /* 4 micro-frames */
|
/linux-4.4.14/sound/pci/emu10k1/ |
D | emupcm.c | 1608 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.4.14/drivers/net/ethernet/chelsio/cxgb4/ |
D | cxgb4_ethtool.c | 280 u64 frames; member 358 s->frames = usm_stats.frames; in collect_adapter_stats()
|
D | cxgb4.h | 178 u64 frames; member 212 u32 frames; member
|
D | t4_hw.c | 4928 st->frames = val[0]; in t4_get_usm_stats() 5473 p->frames = GET_STAT(FRAMES); in t4_get_lb_stats()
|
/linux-4.4.14/drivers/staging/slicoss/ |
D | slicoss.c | 2022 u32 frames = 0; in slic_rcv_handler() local 2054 ++frames; in slic_rcv_handler() 2056 if (frames >= SLIC_RCVQ_MAX_PROCESS_ISR) { in slic_rcv_handler() 2062 adapter->max_isr_rcvs = max(adapter->max_isr_rcvs, frames); in slic_rcv_handler() 2069 u32 frames = 0; in slic_xmit_complete() local 2093 frames++; in slic_xmit_complete() 2095 adapter->max_isr_xmits = max(adapter->max_isr_xmits, frames); in slic_xmit_complete()
|
/linux-4.4.14/Documentation/devicetree/bindings/soc/fsl/ |
D | qman.txt | 14 supports queuing and QoS scheduling of frames to CPUs, network interfaces and
|
/linux-4.4.14/drivers/net/ethernet/i825xx/ |
D | 82596.c | 750 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()
|
D | lib82596.c | 653 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()
|
/linux-4.4.14/Documentation/ioctl/ |
D | cdrom.txt | 141 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.4.14/drivers/net/appletalk/ |
D | Kconfig | 106 IP packets inside AppleTalk frames; this is useful if your Linux box
|
/linux-4.4.14/Documentation/x86/ |
D | entry_64.txt | 43 magic to get the stack frames right. (You can find some
|
/linux-4.4.14/sound/pci/rme9652/ |
D | hdspm.c | 1533 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()
|
D | rme9652.c | 449 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()
|
D | hdsp.c | 1089 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.4.14/Documentation/dvb/ |
D | avermedia.txt | 27 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.4.14/Documentation/ide/ |
D | ChangeLog.ide-tape.1995-2002 | 219 * 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.4.14/include/media/ |
D | v4l2-subdev.h | 482 int (*g_skip_frames)(struct v4l2_subdev *sd, u32 *frames);
|
/linux-4.4.14/Documentation/DocBook/ |
D | alsa-driver-api.xml.db | 73 API-bytes-to-frames 75 API-frames-to-bytes
|
D | device-drivers.xml.db | 635 API-bytes-to-frames 637 API-frames-to-bytes
|
/linux-4.4.14/drivers/net/can/ |
D | Kconfig | 20 As only the sending and receiving of CAN frames is implemented, this
|
/linux-4.4.14/drivers/staging/most/Documentation/ |
D | driver_usage.txt | 115 written to 'set_subbuffer_size'. Additionally, the number of MOST frames that
|
/linux-4.4.14/drivers/net/ppp/ |
D | Kconfig | 115 Support PPP (Point to Point Protocol) encapsulated in ATM frames.
|
/linux-4.4.14/Documentation/scheduler/ |
D | sched-rt-group.txt | 61 frames a second, which yields a period of 0.04s per frame. Now say it will also
|
/linux-4.4.14/arch/um/ |
D | Kconfig.net | 184 frames. In general, slirp allows the UML the same IP connectivity
|
/linux-4.4.14/drivers/staging/fsl-mc/ |
D | README.txt | 176 physical transmission and reception of Ethernet frames.
|
/linux-4.4.14/include/uapi/linux/ |
D | videodev2.h | 728 __u8 frames; member
|
/linux-4.4.14/drivers/net/wan/ |
D | Kconfig | 380 Send and receive X.25 frames over regular asynchronous serial
|
/linux-4.4.14/drivers/usb/gadget/ |
D | Kconfig | 272 grouping of several ethernet frames into one USB transfer and
|
/linux-4.4.14/drivers/atm/ |
D | Kconfig | 361 frames (<64 bytes) or raw AAL0 cells (48 bytes) to the ATM adapter.
|
/linux-4.4.14/drivers/usb/gadget/legacy/ |
D | Kconfig | 170 of several ethernet frames into one USB transfer and different
|
/linux-4.4.14/drivers/media/i2c/smiapp/ |
D | smiapp-core.c | 2275 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.4.14/drivers/net/wireless/hostap/ |
D | hostap_hw.c | 2484 int frames = 30; in hostap_bap_tasklet() local 2493 while (frames-- > 0) { in hostap_bap_tasklet()
|
/linux-4.4.14/Documentation/scsi/ |
D | ChangeLog.megaraid_sas | 24 3. Return leaked MPT frames to MPT command pool.
|
/linux-4.4.14/net/sched/ |
D | Kconfig | 573 Say Y here if you want to be able to classify CAN frames based
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | mmu.txt | 398 a large spte. The frames at the end of an unaligned memory slot have
|
D | api.txt | 2870 The count field is the number of consecutive frames (starting from start_gfn) 2893 The count field is the number of consecutive frames (starting from start_gfn) 2900 single frame starting at start_gfn for count frames.
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | CHANGES | 4 to more strictly handle corrupt frames. 381 transact response for an SMB request and search entry split across two frames.
|
/linux-4.4.14/drivers/media/platform/vivid/ |
D | vivid-vid-cap.c | 228 tc->frames = seq % fps; in vid_cap_buf_finish()
|
/linux-4.4.14/Documentation/cdrom/ |
D | cdrom-standard.tex | 526 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.4.14/lib/ |
D | Kconfig.debug | 198 int "Warn for stack frames larger than (needs gcc 4.4)" 204 Tell gcc to warn at build time for stack frames larger than this.
|
/linux-4.4.14/drivers/media/usb/s2255/ |
D | s2255drv.c | 264 int frames; member
|
/linux-4.4.14/drivers/video/fbdev/ |
D | Kconfig | 2382 serial updates, reducing the number of possible frames per second. 2390 concurrent updates, making higher frames per second possible.
|
/linux-4.4.14/drivers/media/v4l2-core/ |
D | v4l2-ioctl.c | 473 tc->type, tc->flags, tc->frames, *(__u32 *)tc->userbits); in v4l_print_buffer()
|
/linux-4.4.14/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 1656 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)
|