/linux/drivers/firmware/google/ ! |
H A D | vpd_decode.c | 40 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 …]
|
H A D | vpd_decode.h | 36 * (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,
|
/linux/net/netfilter/ ! |
H A D | nft_quota.c | 18 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 …]
|
/linux/include/linux/ ! |
H A D | iov_iter.h | 48 size_t remain, consumed; in iterate_iovec() local 53 consumed = part - remain; in iterate_iovec() 54 progress += consumed; in iterate_iovec() 55 skip += consumed; in iterate_iovec() 56 len -= consumed; in iterate_iovec() 82 size_t remain, consumed; in iterate_kvec() local 87 consumed = part - remain; in iterate_kvec() 88 progress += consumed; in iterate_kvec() 89 skip += consumed; in iterate_kvec() 90 len -= consumed; in iterate_kvec() [all …]
|
H A D | vringh.h | 89 * @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() 195 kiov->consumed = 0; in vringh_kiov_init() [all …]
|
H A D | textsearch.h | 66 * @consumed: number of bytes consumed by the caller 73 * of the block or 0 if at the end. consumed == 0 indicates 76 unsigned int (*get_next_block)(unsigned int consumed,
|
/linux/drivers/misc/cb710/ ! |
H A D | sgbuf2.c | 14 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 …]
|
/linux/tools/testing/selftests/powerpc/papr_vpd/ ! |
H A D | papr_vpd.c | 54 ssize_t consumed = pread(fd, buf, size, 0); in dev_papr_vpd_get_handle_all() local 55 FAIL_IF(consumed != size); in dev_papr_vpd_get_handle_all() 86 size_t consumed = 0; in dev_papr_vpd_get_handle_byte_at_a_time() local 96 consumed += res; in dev_papr_vpd_get_handle_byte_at_a_time() 101 FAIL_IF(consumed != lseek(fd, 0, SEEK_END)); in dev_papr_vpd_get_handle_byte_at_a_time() 203 ssize_t consumed = pread(fd, bufs[i], size, 0); in papr_vpd_reread() local 204 FAIL_IF(consumed != size); in papr_vpd_reread() 286 ssize_t consumed = pread(fd, buf, size, 0); in papr_vpd_system_loc_code() local 287 FAIL_IF(consumed != size); in papr_vpd_system_loc_code()
|
/linux/kernel/bpf/ ! |
H A D | stream.c | 22 * given all the individual records in it have been consumed. 25 * programs, which may be consumed at different times individually, hence 34 u32 consumed; member 39 #define BPF_STREAM_PAGE_SZ (PAGE_SIZE - offsetofend(struct bpf_stream_page, consumed)) 78 stream_page->consumed = 0; in bpf_stream_page_init() 102 int consumed = stream_page->consumed; in bpf_stream_page_check_room() local 104 int rem = max(0, total - consumed - min); in bpf_stream_page_check_room() 128 u32 consumed = stream_page->consumed; in bpf_stream_page_push_elem() local 130 stream_page->consumed += round_up(offsetof(struct bpf_stream_elem, str[len]), 8); in bpf_stream_page_push_elem() 131 return (struct bpf_stream_elem *)&stream_page->buf[consumed]; in bpf_stream_page_push_elem()
|
/linux/tools/perf/pmu-events/arch/x86/elkhartlake/ ! |
H A D | pipeline.json | 307 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend … 311 …consumed by the backend because allocation is stalled due to a mispredicted jump or a machine clea… 316 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba… 324 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend … 332 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba… 349 …ion": "Counts the total number of issue slots every cycle that were not consumed by the backend du… 356 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba… 364 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba… 372 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba… 380 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba… [all …]
|
/linux/tools/perf/pmu-events/arch/x86/alderlaken/ ! |
H A D | adln-metrics.json | 74 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… 82 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend … 89 …"PublicDescription": "Counts the total number of issue slots that were not consumed by the backend… 93 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend … 100 …consumed by the backend because allocation is stalled due to a mispredicted jump or a machine clea… 113 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… 155 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… 163 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… 513 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend … 522 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… [all …]
|
/linux/tools/perf/pmu-events/arch/x86/snowridgex/ ! |
H A D | pipeline.json | 307 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend … 311 …consumed by the backend because allocation is stalled due to a mispredicted jump or a machine clea… 316 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba… 324 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend … 332 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba… 349 …ion": "Counts the total number of issue slots every cycle that were not consumed by the backend du… 356 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba… 364 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba… 372 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba… 380 …"BriefDescription": "Counts the number of issue slots every cycle that were not consumed by the ba… [all …]
|
/linux/tools/perf/pmu-events/arch/x86/pantherlake/ ! |
H A D | pipeline.json | 217 …": "This event counts a subset of the Topdown Slots event that were not consumed by the back-end p… 221 …": "This event counts a subset of the Topdown Slots event that were not consumed by the back-end p… 246 …"BriefDescription": "Fixed Counter: Counts the number of issue slots that were not consumed by the… 254 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend becaus… 258 …consumed by the backend because allocation is stalled due to a mispredicted jump or a machine clea… 263 …"BriefDescription": "Counts the number of retirement slots not consumed due to backend stalls. [Th… 272 …"BriefDescription": "Counts the number of retirement slots not consumed due to backend stalls. [Th… 281 …"BriefDescription": "Fixed Counter: Counts the number of retirement slots not consumed due to fron… 289 … "BriefDescription": "Counts the number of retirement slots not consumed due to front end stalls.", 298 "BriefDescription": "Fixed Counter: Counts the number of consumed retirement slots.", [all …]
|
/linux/sound/firewire/motu/ ! |
H A D | motu-hwdep.c | 66 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()
|
/linux/tools/perf/pmu-events/arch/x86/clearwaterforest/ ! |
H A D | pipeline.json | 79 …"BriefDescription": "Fixed Counter: Counts the number of issue slots that were not consumed by the… 86 …"BriefDescription": "Counts the number of retirement slots not consumed due to backend stalls. [Th… 94 …"BriefDescription": "Counts the number of retirement slots not consumed due to backend stalls. [Th… 102 …"BriefDescription": "Fixed Counter: Counts the number of retirement slots not consumed due to fron… 109 "BriefDescription": "Fixed Counter: Counts the number of consumed retirement slots.",
|
/linux/kernel/ ! |
H A D | relay.c | 612 * relay_subbufs_consumed - update the buffer's sub-buffers-consumed count 617 * Adds to the channel buffer's consumed sub-buffer count. 618 * subbufs_consumed should be the number of sub-buffers newly consumed, 619 * not the total consumed. 805 * relay_file_read_consume - update the consumed count for the buffer 846 size_t consumed; in relay_file_read_avail() local 850 consumed = buf->subbufs_consumed; in relay_file_read_avail() 853 if (produced == consumed) in relay_file_read_avail() 858 if (unlikely(produced - consumed >= n_subbufs)) { in relay_file_read_avail() 859 consumed = produced - n_subbufs + 1; in relay_file_read_avail() [all …]
|
/linux/Documentation/hwmon/ ! |
H A D | fam15h_power.rst | 29 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
|
/linux/sound/firewire/fireface/ ! |
H A D | ff-protocol-latter.c | 492 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()
|
/linux/tools/perf/pmu-events/arch/x86/grandridge/ ! |
H A D | grr-metrics.json | 235 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… 243 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend … 249 …"PublicDescription": "Counts the total number of issue slots that were not consumed by the backend… 253 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend … 259 …consumed by the backend because allocation is stalled due to a mispredicted jump or a machine clea… 272 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… 314 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… 322 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… 693 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend … 702 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… [all …]
|
/linux/drivers/platform/x86/intel/pmt/ ! |
H A D | crashlog.c | 88 u32 consumed; member 207 return pmt_crashlog_rc(crashlog, crashlog->info->status.consumed); in pmt_crashlog_consumed() 272 bool consumed = pmt_crashlog_consumed(crashlog); in consumed_show() local 274 return sysfs_emit(buf, "%d\n", consumed); in consumed_show() 282 bool consumed; in consumed_store() local 287 result = kstrtobool(buf, &consumed); in consumed_store() 292 if (!consumed) in consumed_store() 307 static DEVICE_ATTR_RW(consumed); 475 .status.consumed = TYPE1_VER2_CONSUMED,
|
/linux/tools/testing/selftests/kvm/lib/ ! |
H A D | lru_gen_util.c | 19 bool consumed; /* Whether or not this line was consumed */ member 61 ctx->consumed = true; in memcg_stats_handle_searching() 92 ctx->consumed = true; in memcg_stats_handle_in_memcg() 176 ctx->consumed = true; in memcg_stats_handle_in_node() 218 ctx.consumed = false; in lru_gen_read_memcg_stats() 224 } while (!ctx.consumed); in lru_gen_read_memcg_stats()
|
/linux/tools/perf/pmu-events/arch/x86/sierraforest/ ! |
H A D | srf-metrics.json | 337 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… 345 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend … 351 …"PublicDescription": "Counts the total number of issue slots that were not consumed by the backend… 355 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend … 361 …consumed by the backend because allocation is stalled due to a mispredicted jump or a machine clea… 374 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… 416 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… 424 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… 795 …"BriefDescription": "Counts the total number of issue slots that were not consumed by the backend … 804 …"BriefDescription": "Counts the number of issue slots that were not consumed by the backend due to… [all …]
|
/linux/kernel/kcsan/ ! |
H A D | kcsan.h | 120 * The calling thread hit and consumed a watchpoint: set the access information 121 * to be consumed by the reporting thread. No report is printed yet. 128 * consumed: print the full report based on information set by the racing
|
/linux/drivers/media/dvb-core/ ! |
H A D | dvb_ringbuffer.c | 326 int consumed; in dvb_ringbuffer_pkt_next() local 338 consumed = (idx - rbuf->pread); in dvb_ringbuffer_pkt_next() 339 if (consumed < 0) in dvb_ringbuffer_pkt_next() 340 consumed += rbuf->size; in dvb_ringbuffer_pkt_next() 342 while((dvb_ringbuffer_avail(rbuf) - consumed) > DVB_RINGBUFFER_PKTHDRSIZE) { in dvb_ringbuffer_pkt_next() 353 consumed += curpktlen + DVB_RINGBUFFER_PKTHDRSIZE; in dvb_ringbuffer_pkt_next()
|
/linux/net/batman-adv/ ! |
H A D | routing.c | 213 * Return: NET_RX_SUCCESS if the packet has been consumed or NET_RX_DROP 253 /* skb was consumed */ in batadv_recv_my_icmp_packet() 262 /* skb was consumed */ in batadv_recv_my_icmp_packet() 319 /* skb was consumed */ in batadv_recv_icmp_ttl_exceeded() 418 /* skb was consumed */ in batadv_recv_icmp_packet() 711 /* skb was transmitted and consumed */ in batadv_route_unicast_packet() 717 /* skb was consumed */ in batadv_route_unicast_packet() 905 * Return: NET_RX_SUCCESS if the packet has been consumed or NET_RX_DROP 1030 /* skb was consumed */ in batadv_recv_unicast_packet() 1044 * Return: NET_RX_SUCCESS if the packet has been consumed or NET_RX_DROP [all …]
|