Home
last modified time | relevance | path

Searched full:consumed (Results 1 – 25 of 1259) sorted by relevance

12345678910>>...51

/kernel/linux/linux-5.10/drivers/firmware/google/
Dvpd_decode.c40 u32 consumed = *_consumed; in vpd_decode_entry() local
42 if (vpd_decode_len(max_len - consumed, &input_buf[consumed], in vpd_decode_entry()
45 if (max_len - consumed < decoded_len) in vpd_decode_entry()
48 consumed += decoded_len; in vpd_decode_entry()
49 *entry = input_buf + consumed; in vpd_decode_entry()
52 if (max_len - consumed < *entry_len) in vpd_decode_entry()
55 consumed += *entry_len; in vpd_decode_entry()
56 *_consumed = consumed; in vpd_decode_entry()
60 int vpd_decode_string(const u32 max_len, const u8 *input_buf, u32 *consumed, in vpd_decode_string() argument
70 if (*consumed >= max_len) in vpd_decode_string()
[all …]
Dvpd_decode.h36 * (key, value). The *consumed will be plused the number of bytes consumed in
41 * The *consumed starts from 0, which is actually the next byte to be decoded.
47 int vpd_decode_string(const u32 max_len, const u8 *input_buf, u32 *consumed,
/kernel/linux/linux-6.6/drivers/firmware/google/
Dvpd_decode.c40 u32 consumed = *_consumed; in vpd_decode_entry() local
42 if (vpd_decode_len(max_len - consumed, &input_buf[consumed], in vpd_decode_entry()
45 if (max_len - consumed < decoded_len) in vpd_decode_entry()
48 consumed += decoded_len; in vpd_decode_entry()
49 *entry = input_buf + consumed; in vpd_decode_entry()
52 if (max_len - consumed < *entry_len) in vpd_decode_entry()
55 consumed += *entry_len; in vpd_decode_entry()
56 *_consumed = consumed; in vpd_decode_entry()
60 int vpd_decode_string(const u32 max_len, const u8 *input_buf, u32 *consumed, in vpd_decode_string() argument
70 if (*consumed >= max_len) in vpd_decode_string()
[all …]
Dvpd_decode.h36 * (key, value). The *consumed will be plused the number of bytes consumed in
41 * The *consumed starts from 0, which is actually the next byte to be decoded.
47 int vpd_decode_string(const u32 max_len, const u8 *input_buf, u32 *consumed,
/kernel/linux/linux-6.6/net/netfilter/
Dnft_quota.c18 atomic64_t *consumed; member
25 u64 consumed = atomic64_add_return(skb->len, priv->consumed); in nft_overquota() local
29 *report = consumed >= quota; in nft_overquota()
31 return consumed > quota; in nft_overquota()
76 u64 quota, consumed = 0; in nft_quota_do_init() local
86 consumed = be64_to_cpu(nla_get_be64(tb[NFTA_QUOTA_CONSUMED])); in nft_quota_do_init()
87 if (consumed > quota) in nft_quota_do_init()
99 priv->consumed = kmalloc(sizeof(*priv->consumed), GFP_KERNEL_ACCOUNT); in nft_quota_do_init()
100 if (!priv->consumed) in nft_quota_do_init()
105 atomic64_set(priv->consumed, consumed); in nft_quota_do_init()
[all …]
/kernel/linux/linux-5.10/net/netfilter/
Dnft_quota.c18 atomic64_t consumed; member
24 return atomic64_add_return(skb->len, &priv->consumed) >= in nft_overquota()
70 u64 quota, consumed = 0; in nft_quota_do_init() local
80 consumed = be64_to_cpu(nla_get_be64(tb[NFTA_QUOTA_CONSUMED])); in nft_quota_do_init()
81 if (consumed > quota) in nft_quota_do_init()
95 atomic64_set(&priv->consumed, consumed); in nft_quota_do_init()
124 u64 consumed, consumed_cap, quota; in nft_quota_do_dump() local
127 /* Since we inconditionally increment consumed quota for each packet in nft_quota_do_dump()
131 consumed = atomic64_read(&priv->consumed); in nft_quota_do_dump()
133 if (consumed >= quota) { in nft_quota_do_dump()
[all …]
/kernel/linux/linux-6.6/drivers/misc/cb710/
Dsgbuf2.c14 miter->consumed = 0; in sg_dwiter_next()
22 return miter->length == miter->consumed && !sg_dwiter_next(miter); in sg_dwiter_is_at_end()
32 len = min(miter->length - miter->consumed, left); in sg_dwiter_read_buffer()
33 memcpy(addr, miter->addr + miter->consumed, len); in sg_dwiter_read_buffer()
34 miter->consumed += len; in sg_dwiter_read_buffer()
61 len = miter->length - miter->consumed; in sg_dwiter_get_next_block()
64 miter->addr + miter->consumed))) { in sg_dwiter_get_next_block()
65 *ptr = miter->addr + miter->consumed; in sg_dwiter_get_next_block()
66 miter->consumed += 4; in sg_dwiter_get_next_block()
107 len = min(miter->length - miter->consumed, left); in sg_dwiter_write_slow()
[all …]
/kernel/linux/linux-5.10/drivers/misc/cb710/
Dsgbuf2.c14 miter->consumed = 0; in sg_dwiter_next()
22 return miter->length == miter->consumed && !sg_dwiter_next(miter); in sg_dwiter_is_at_end()
32 len = min(miter->length - miter->consumed, left); in sg_dwiter_read_buffer()
33 memcpy(addr, miter->addr + miter->consumed, len); in sg_dwiter_read_buffer()
34 miter->consumed += len; in sg_dwiter_read_buffer()
61 len = miter->length - miter->consumed; in sg_dwiter_get_next_block()
64 miter->addr + miter->consumed))) { in sg_dwiter_get_next_block()
65 *ptr = miter->addr + miter->consumed; in sg_dwiter_get_next_block()
66 miter->consumed += 4; in sg_dwiter_get_next_block()
107 len = min(miter->length - miter->consumed, left); in sg_dwiter_write_slow()
[all …]
/kernel/linux/linux-6.6/include/linux/
Dvringh.h89 * @consumed: number of bytes consumed within iov[i]
100 size_t consumed; /* Within iov[i] */ member
107 * @consumed: number of bytes consumed within iov[i]
118 size_t consumed; /* Within iov[i] */ member
136 iov->consumed = 0; in vringh_iov_init()
143 iov->iov[iov->i].iov_len += iov->consumed; in vringh_iov_reset()
144 iov->iov[iov->i].iov_base -= iov->consumed; in vringh_iov_reset()
145 iov->consumed = 0; in vringh_iov_reset()
153 iov->max_num = iov->used = iov->i = iov->consumed = 0; in vringh_iov_cleanup()
198 kiov->consumed = 0; in vringh_kiov_init()
[all …]
/kernel/linux/linux-5.10/include/linux/
Dvringh.h86 size_t consumed; /* Within iov[i] */ member
98 size_t consumed; /* Within iov[i] */ member
116 iov->consumed = 0; in vringh_iov_init()
123 iov->iov[iov->i].iov_len += iov->consumed; in vringh_iov_reset()
124 iov->iov[iov->i].iov_base -= iov->consumed; in vringh_iov_reset()
125 iov->consumed = 0; in vringh_iov_reset()
133 iov->max_num = iov->used = iov->i = iov->consumed = 0; in vringh_iov_cleanup()
178 kiov->consumed = 0; in vringh_kiov_init()
185 kiov->iov[kiov->i].iov_len += kiov->consumed; in vringh_kiov_reset()
186 kiov->iov[kiov->i].iov_base -= kiov->consumed; in vringh_kiov_reset()
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/alderlaken/
Dadln-metrics.json88 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due t…
96 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend…
103 …"PublicDescription": "Counts the total number of issue slots that were not consumed by the backen…
107 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend…
114 …"PublicDescription": "Counts the total number of issue slots that were not consumed by the backen…
118 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend …
125consumed by the backend because allocation is stalled due to a mispredicted jump or a machine clea…
147 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due t…
206 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due t…
248 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due t…
[all …]
Dpipeline.json332 …"BriefDescription": "Counts the number of issue slots not consumed by the backend due to a micro-s…
335 …"PublicDescription": "Counts the number of issue slots not consumed by the backend due to a micro-…
340 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend …
343consumed by the backend because allocation is stalled due to a mispredicted jump or a machine clea…
347 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
354 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend …
361 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
368 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
375 …ion": "Counts the total number of issue slots every cycle that were not consumed by the backend du…
381 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/grandridge/
Dpipeline.json71 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend becaus…
74consumed by the backend because allocation is stalled due to a mispredicted jump or a machine clea…
78 … "BriefDescription": "Counts the number of retirement slots not consumed due to backend stalls",
84 … "BriefDescription": "Counts the number of retirement slots not consumed due to front end stalls",
90 …"BriefDescription": "Counts the number of consumed retirement slots. Similar to UOPS_RETIRED.ALL",
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/sierraforest/
Dpipeline.json71 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend becaus…
74consumed by the backend because allocation is stalled due to a mispredicted jump or a machine clea…
78 … "BriefDescription": "Counts the number of retirement slots not consumed due to backend stalls",
84 … "BriefDescription": "Counts the number of retirement slots not consumed due to front end stalls",
90 …"BriefDescription": "Counts the number of consumed retirement slots. Similar to UOPS_RETIRED.ALL",
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/snowridgex/
Dpipeline.json257 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend …
260consumed by the backend because allocation is stalled due to a mispredicted jump or a machine clea…
265 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
272 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend …
279 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
294 …ion": "Counts the total number of issue slots every cycle that were not consumed by the backend du…
300 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
307 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
314 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
321 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/elkhartlake/
Dpipeline.json257 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend …
260consumed by the backend because allocation is stalled due to a mispredicted jump or a machine clea…
265 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
272 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend …
279 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
294 …ion": "Counts the total number of issue slots every cycle that were not consumed by the backend du…
300 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
307 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
314 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
321 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba…
[all …]
/kernel/linux/linux-6.6/sound/firewire/motu/
Dmotu-hwdep.c66 size_t consumed = 0; in hwdep_read() local
73 consumed += sizeof(event.motu_register_dsp_change); in hwdep_read()
75 while (consumed < count && in hwdep_read()
77 ptr = (u32 __user *)(buf + consumed); in hwdep_read()
80 consumed += sizeof(ev); in hwdep_read()
85 (consumed - sizeof(event.motu_register_dsp_change)) / 4; in hwdep_read()
89 count = consumed; in hwdep_read()
/kernel/linux/linux-6.6/Documentation/hwmon/
Dfam15h_power.rst29 is the power consumed when running a specific application. Thermal
41 consumed by the processor for NB and logic external to the core.
48 consumed by the processor.
62 calculate the average power consumed by a processor during a
/kernel/linux/linux-5.10/Documentation/hwmon/
Dfam15h_power.rst29 is the power consumed when running a specific application. Thermal
41 consumed by the processor for NB and logic external to the core.
48 consumed by the processor.
62 calculate the average power consumed by a processor during a
/kernel/linux/linux-5.10/sound/firewire/fireface/
Dff-protocol-latter.c494 int consumed; in latter_fill_midi_msg() local
497 consumed = snd_rawmidi_transmit_peek(substream, buf + 1, 3); in latter_fill_midi_msg()
498 if (consumed <= 0) in latter_fill_midi_msg()
499 return consumed; in latter_fill_midi_msg()
503 if (consumed < calculate_message_bytes(buf[1])) in latter_fill_midi_msg()
510 buf[0] |= consumed; in latter_fill_midi_msg()
515 consumed -= 1; in latter_fill_midi_msg()
518 buf[0] |= consumed; in latter_fill_midi_msg()
522 consumed = 1; in latter_fill_midi_msg()
528 ff->rx_bytes[port] = consumed; in latter_fill_midi_msg()
/kernel/linux/linux-6.6/sound/firewire/fireface/
Dff-protocol-latter.c492 int consumed; in latter_fill_midi_msg() local
495 consumed = snd_rawmidi_transmit_peek(substream, buf + 1, 3); in latter_fill_midi_msg()
496 if (consumed <= 0) in latter_fill_midi_msg()
497 return consumed; in latter_fill_midi_msg()
501 if (consumed < calculate_message_bytes(buf[1])) in latter_fill_midi_msg()
508 buf[0] |= consumed; in latter_fill_midi_msg()
513 consumed -= 1; in latter_fill_midi_msg()
516 buf[0] |= consumed; in latter_fill_midi_msg()
520 consumed = 1; in latter_fill_midi_msg()
526 ff->rx_bytes[port] = consumed; in latter_fill_midi_msg()
/kernel/linux/linux-6.6/kernel/
Drelay.c714 * relay_subbufs_consumed - update the buffer's sub-buffers-consumed count
719 * Adds to the channel buffer's consumed sub-buffer count.
720 * subbufs_consumed should be the number of sub-buffers newly consumed,
721 * not the total consumed.
876 * relay_file_read_consume - update the consumed count for the buffer
917 size_t consumed; in relay_file_read_avail() local
921 consumed = buf->subbufs_consumed; in relay_file_read_avail()
924 if (produced == consumed) in relay_file_read_avail()
929 if (unlikely(produced - consumed >= n_subbufs)) { in relay_file_read_avail()
930 consumed = produced - n_subbufs + 1; in relay_file_read_avail()
[all …]
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/usb/
Dusb251xb.txt49 - sp-max-total-current-microamp: Specifies max current consumed by the hub
53 - bp-max-total-current-microamp: Specifies max current consumed by the hub
57 - sp-max-removable-current-microamp: Specifies max current consumed by the hub
61 - bp-max-removable-current-microamp: Specifies max current consumed by the hub
/kernel/linux/linux-5.10/kernel/
Drelay.c802 * relay_subbufs_consumed - update the buffer's sub-buffers-consumed count
807 * Adds to the channel buffer's consumed sub-buffer count.
808 * subbufs_consumed should be the number of sub-buffers newly consumed,
809 * not the total consumed.
964 * relay_file_read_consume - update the consumed count for the buffer
1005 size_t consumed; in relay_file_read_avail() local
1009 consumed = buf->subbufs_consumed; in relay_file_read_avail()
1012 if (produced == consumed) in relay_file_read_avail()
1017 if (unlikely(produced - consumed >= n_subbufs)) { in relay_file_read_avail()
1018 consumed = produced - n_subbufs + 1; in relay_file_read_avail()
[all …]
/kernel/linux/linux-5.10/lib/
Dts_kmp.c45 unsigned int i, q = 0, text_len, consumed = state->offset; in kmp_find() local
50 text_len = conf->get_next_block(consumed, &text, conf, state); in kmp_find()
63 state->offset = consumed + i + 1; in kmp_find()
68 consumed += text_len; in kmp_find()

12345678910>>...51