Searched defs:bytes (Results 26 - 30 of 30) sorted by relevance

12

/include/sound/
H A Dwavefront.h28 of 22 bytes, corresponding to 16-bit alignment (as would have been variable
62 bytes. Defining things like this makes the code much more portable, and
152 /* # of bytes we send to the board when sending it various kinds of
179 /* Magic MIDI bytes used to switch I/O streams on the ICS2115 MPU401
400 data without forcing user-level extraction of the relevant bytes.
551 6000 bytes total has `size' = 3000.
557 wavefront_any __user *hdrptr; /* user-space ptr to hdr bytes */
560 wavefront_any hdr; /* kernel-space copy of hdr bytes */
563 /* The maximum number of bytes we will ever move to or from user space
580 unsigned char rbuf[WF_MAX_READ]; /* bytes rea
[all...]
/include/uapi/linux/
H A Dpkt_sched.h33 __u64 bytes; /* Number of enqueued bytes */ member in struct:tc_stats
118 __u32 limit; /* Queue length: bytes for bfifo, packets for pfifo */
212 __u32 limit; /* HARD maximal flow queue length (bytes) */
213 __u32 qth_min; /* Min average length threshold (bytes) */
214 __u32 qth_max; /* Max average length threshold (bytes) */
242 __u32 limit; /* HARD maximal queue length (bytes) */
243 __u32 qth_min; /* Min average length threshold (bytes) */
244 __u32 qth_max; /* Max average length threshold (bytes) */
277 __u32 limit; /* HARD maximal queue length (bytes) */
[all...]
H A Dsoundcard.h106 * we restrict parameters to at most 8191 bytes.
109 #define SIOCPARM_MASK 0x1fff /* parameters must be < 8192 bytes */
246 int len; /* Size of the wave data in bytes */
307 int len; /* Size of the sysex data in bytes */
315 * are records of 4 or 8 bytes. The first byte defines the size.
321 * (All input events are currently 4 bytes long. Be prepared to support
327 * Normal events (4 bytes)
355 * are for the LSB. Note that just 7 bits are used in MIDI bytes.
382 /* least significant bytes of the controllers 0x00 to 0x1f. */
462 #define SEQ_PRIVATE 0xfe /* Low level HW dependent events (8 bytes) */
577 int bytes; /* Available space in bytes (includes partially used fragments) */ member in struct:audio_buf_info
607 int bytes; /* Total # of bytes processed */ member in struct:count_info
[all...]
/include/uapi/sound/
H A Dasound.h127 size_t length; /* W: size of image in bytes */
184 #define SNDRV_PCM_FORMAT_S24_LE ((__force snd_pcm_format_t) 6) /* low three bytes */
185 #define SNDRV_PCM_FORMAT_S24_BE ((__force snd_pcm_format_t) 7) /* low three bytes */
186 #define SNDRV_PCM_FORMAT_U24_LE ((__force snd_pcm_format_t) 8) /* low three bytes */
187 #define SNDRV_PCM_FORMAT_U24_BE ((__force snd_pcm_format_t) 9) /* low three bytes */
204 #define SNDRV_PCM_FORMAT_S24_3LE ((__force snd_pcm_format_t) 32) /* in three bytes */
205 #define SNDRV_PCM_FORMAT_S24_3BE ((__force snd_pcm_format_t) 33) /* in three bytes */
206 #define SNDRV_PCM_FORMAT_U24_3LE ((__force snd_pcm_format_t) 34) /* in three bytes */
207 #define SNDRV_PCM_FORMAT_U24_3BE ((__force snd_pcm_format_t) 35) /* in three bytes */
208 #define SNDRV_PCM_FORMAT_S20_3LE ((__force snd_pcm_format_t) 36) /* in three bytes */
901 } bytes; member in union:snd_ctl_elem_value::__anon2364
[all...]
/include/linux/
H A Dnetdevice.h2521 unsigned int bytes)
2524 dql_queued(&dev_queue->dql, bytes);
2545 * netdev_sent_queue - report the number of bytes queued to hardware
2547 * @bytes: number of bytes queued to the hardware device queue
2549 * Report the number of bytes queued for sending/completion to the network
2550 * device hardware queue. @bytes should be a good approximation and should
2551 * exactly match netdev_completed_queue() @bytes
2553 static inline void netdev_sent_queue(struct net_device *dev, unsigned int bytes) argument
2555 netdev_tx_sent_queue(netdev_get_tx_queue(dev, 0), bytes); local
2520 netdev_tx_sent_queue(struct netdev_queue *dev_queue, unsigned int bytes) argument
2558 netdev_tx_completed_queue(struct netdev_queue *dev_queue, unsigned int pkts, unsigned int bytes) argument
2592 netdev_completed_queue(struct net_device *dev, unsigned int pkts, unsigned int bytes) argument
2595 netdev_tx_completed_queue(netdev_get_tx_queue(dev, 0), pkts, bytes); local
[all...]

Completed in 171 milliseconds

12