Searched refs:bytes (Results 401 - 425 of 1671) sorted by relevance

<<11121314151617181920>>

/linux-master/net/netfilter/
H A Dnfnetlink_acct.c31 atomic64_t bytes; member in struct:nf_acct
90 atomic64_set(&matching->bytes, 0);
129 atomic64_set(&nfacct->bytes,
147 u64 pkts, bytes; local
162 bytes = atomic64_xchg(&acct->bytes, 0);
168 bytes = atomic64_read(&acct->bytes);
172 nla_put_be64(skb, NFACCT_BYTES, cpu_to_be64(bytes),
456 atomic64_add(skb->len, &nfacct->bytes);
[all...]
/linux-master/include/linux/
H A Dskmsg.h125 void sk_msg_free_partial(struct sock *sk, struct sk_msg *msg, u32 bytes);
127 u32 bytes);
129 void sk_msg_return(struct sock *sk, struct sk_msg *msg, int bytes);
130 void sk_msg_return_zero(struct sock *sk, struct sk_msg *msg, int bytes);
133 struct sk_msg *msg, u32 bytes);
135 struct sk_msg *msg, u32 bytes);
140 static inline void sk_msg_check_to_free(struct sk_msg *msg, u32 i, u32 bytes) argument
142 WARN_ON(i == msg->sg.end && bytes);
145 static inline void sk_msg_apply_bytes(struct sk_psock *psock, u32 bytes) argument
148 if (psock->apply_bytes < bytes)
[all...]
H A Dleds-lp3952.h110 } bytes; member in union:ptrn_gen_cmd::__anon743
/linux-master/sound/core/
H A Dmemalloc.c70 dmab->bytes = 0;
76 dmab->bytes = size;
327 do_free_pages(dmab->area, dmab->bytes, false);
444 gen_pool_free(pool, (unsigned long)dmab->area, dmab->bytes);
474 dma_free_coherent(dmab->dev.dev, dmab->bytes, dmab->area, dmab->addr);
481 dmab->area, dmab->addr, dmab->bytes);
502 do_free_pages(dmab->area, dmab->bytes, true);
519 dma_free_wc(dmab->dev.dev, dmab->bytes, dmab->area, dmab->addr);
526 dmab->area, dmab->addr, dmab->bytes);
573 dma_free_noncontiguous(dmab->dev.dev, dmab->bytes, dma
[all...]
/linux-master/net/rds/
H A Drdma.c51 * Returns 0 if the vec is invalid. It is invalid if the number of bytes
57 if ((vec->addr + vec->bytes <= vec->addr) ||
58 (vec->bytes > (u64)UINT_MAX))
61 return ((vec->addr + vec->bytes + PAGE_SIZE - 1) >> PAGE_SHIFT) -
201 if (((args->vec.addr + args->vec.bytes) < args->vec.addr) ||
202 PAGE_ALIGN(args->vec.addr + args->vec.bytes) <
203 (args->vec.addr + args->vec.bytes)) {
228 args->vec.addr, args->vec.bytes, nr_pages);
292 args->vec.addr, args->vec.bytes,
716 rs->rs_user_bytes = iov->bytes;
[all...]
/linux-master/arch/m68k/fpsp040/
H A Dfpsp.h79 .set LOCAL_SIZE,192 | bytes needed for local variables
130 .set WBTEMP,LV-76 | write back temp (12 bytes)
131 .set WBTEMP_EX,WBTEMP | wbtemp sign and exponent (2 bytes)
132 .set WBTEMP_HI,WBTEMP+4 | wbtemp mantissa [63:32] (4 bytes)
133 .set WBTEMP_LO,WBTEMP+8 | wbtemp mantissa [31:00] (4 bytes)
139 .set FPIARCU,LV-60 | Instr. addr. reg. for CU (4 bytes)
142 .set CMDREG3B,LV-48 | cmd reg for E3 exceptions (2 bytes)
172 .set CMDREG1B,LV-36 | cmd reg for E1 exceptions (2 bytes)
199 .set FPTEMP,LV-24 | fptemp (12 bytes)
200 .set FPTEMP_EX,FPTEMP | fptemp sign and exponent (2 bytes)
[all...]
/linux-master/drivers/media/pci/mantis/
H A Dmantis_vp3030.c86 .bytes = 0,
H A Dhopper_vp3028.c71 .bytes = 0,
/linux-master/drivers/net/ethernet/altera/
H A Daltera_sgdmahw.h17 u16 bytes; member in struct:sgdma_descrip
20 u16 bytes_xferred; /* 16 bits, bytes xferred */
/linux-master/arch/hexagon/mm/
H A Dcopy_from_user.S31 #define bytes r2 define
/linux-master/sound/usb/line6/
H A Dpcm.h100 /* Count processed bytes;
103 unsigned bytes; member in struct:line6_pcm_stream
108 /* period size in bytes */
/linux-master/arch/arm/mach-rpc/
H A Decard-loader.S16 @ Purpose: call an expansion card loader to read bytes.
/linux-master/include/uapi/drm/
H A Domap_drm.h57 __u32 bytes; /* (for non-tiled formats) */ member in union:omap_gem_size
/linux-master/drivers/mtd/nand/raw/ingenic/
H A Djz4725b_bch.c101 if (params->size + params->bytes > max_value)
106 reg |= (params->size + params->bytes) << BCH_BHCNT_DEC_COUNT_SHIFT;
205 jz4725b_bch_read_parity(bch, ecc_code, params->bytes);
231 jz4725b_bch_write_data(bch, ecc_code, params->bytes);
/linux-master/tools/iio/
H A Diio_utils.h30 * @bytes: number of bytes occupied in buffer output
36 * @location: data offset for this channel inside the buffer (in bytes)
44 unsigned bytes; member in struct:iio_channel_info
/linux-master/arch/x86/tools/
H A Dinsn_sanity.c56 fprintf(fp, "%s\t.value = %d, bytes[] = {%x, %x, %x, %x},\n",
57 indent, field->value, field->bytes[0], field->bytes[1],
58 field->bytes[2], field->bytes[3]);
229 /* Prepare stop bytes with NOPs */
/linux-master/arch/powerpc/platforms/powernv/
H A Dmemtrace.c283 u64 bytes; local
289 bytes = memory_block_size_bytes();
290 if (val & (bytes - 1)) {
291 pr_err("Value must be aligned with 0x%llx\n", bytes);
/linux-master/drivers/dma/dw/
H A Didma32.c182 size_t bytes, unsigned int width, size_t *len)
186 if (bytes > dwc->block_size) {
190 block = bytes;
191 *len = bytes;
225 * By default full FIFO (512 bytes) is assigned to channel 0. Here we
240 /* Program FIFO Partition registers - 64 bytes per channel */
181 idma32_bytes2block(struct dw_dma_chan *dwc, size_t bytes, unsigned int width, size_t *len) argument
/linux-master/drivers/s390/block/
H A Dscm_blk.h45 struct aidaw *scm_aidaw_fetch(struct scm_request *scmrq, unsigned int bytes);
/linux-master/tools/testing/selftests/drivers/sdsi/
H A Dsdsi_test.py119 rand_file = bytes(os.urandom(8))
145 assert id != bytes(0)
153 # The buffer for writes is 1k, of with 8 bytes must be
154 # reserved for the command, leaving 1016 bytes max.
155 # Check that we get an overflow error for 1017 bytes.
157 rand_file = bytes(os.urandom(1017))
171 rand_file = bytes(os.urandom(8))
/linux-master/drivers/nvmem/
H A Dlan9662-otpc.c123 void *_val, size_t bytes)
131 for (i = 0; i < bytes; i++) {
143 void *_val, size_t bytes)
151 for (i = 0; i < bytes; i++) {
152 /* Skip zero bytes */
122 lan9662_otp_read(void *context, unsigned int offset, void *_val, size_t bytes) argument
142 lan9662_otp_write(void *context, unsigned int offset, void *_val, size_t bytes) argument
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/en/tc/
H A Dmeter.h73 u64 *bytes, u64 *packets, u64 *drops, u64 *lastuse);
/linux-master/drivers/gpu/drm/amd/display/dc/inc/hw/
H A Ddmcu.h64 unsigned int bytes);
/linux-master/arch/x86/include/asm/
H A Dinsn-eval.h45 enum insn_mmio_type insn_decode_mmio(struct insn *insn, int *bytes);
/linux-master/block/
H A Dblk-crypto.c144 void __bio_crypt_advance(struct bio *bio, unsigned int bytes) argument
149 bytes >> bc->bc_key->data_unit_size_bits);
153 * Returns true if @bc->bc_dun plus @bytes converted to data units is equal to
157 unsigned int bytes,
161 unsigned int carry = bytes >> bc->bc_key->data_unit_size_bits;
321 * @dun_bytes: number of bytes that will be used to specify the DUN when this
156 bio_crypt_dun_is_contiguous(const struct bio_crypt_ctx *bc, unsigned int bytes, const u64 next_dun[BLK_CRYPTO_DUN_ARRAY_SIZE]) argument

Completed in 215 milliseconds

<<11121314151617181920>>