/openbmc/linux/fs/iomap/ |
H A D | iter.c | 14 * processed - it was aborted because the extent the iomap spanned may have been 17 * even when we've made no progress (i.e. iter->processed = 0). Hence the 19 * (processed = 0) meaning we are done and (processed = 0 && stale) meaning we 28 if (iter->processed < 0) in iomap_iter_advance() 29 return iter->processed; in iomap_iter_advance() 30 if (!iter->processed && !stale) in iomap_iter_advance() 32 if (WARN_ON_ONCE(iter->processed > iomap_length(iter))) in iomap_iter_advance() 34 iter->pos += iter->processed; in iomap_iter_advance() 35 iter->len -= iter->processed; in iomap_iter_advance() 41 iter->processed = 0; in iomap_iter_advance() [all …]
|
/openbmc/linux/drivers/auxdisplay/ |
H A D | charlcd.c | 201 int processed = 0; in handle_lcd_special_code() local 213 processed = 1; in handle_lcd_special_code() 220 processed = 1; in handle_lcd_special_code() 227 processed = 1; in handle_lcd_special_code() 234 processed = 1; in handle_lcd_special_code() 241 processed = 1; in handle_lcd_special_code() 248 processed = 1; in handle_lcd_special_code() 255 processed = 1; in handle_lcd_special_code() 262 processed = 1; in handle_lcd_special_code() 266 processed = 1; in handle_lcd_special_code() [all …]
|
/openbmc/linux/drivers/crypto/nx/ |
H A D | nx-aes-gcm.c | 109 unsigned int processed = 0, to_process; in nx_gca() local 132 to_process = min_t(u64, nbytes - processed, in nx_gca() 138 req->src, processed, &to_process); in nx_gca() 140 if ((to_process + processed) < nbytes) in nx_gca() 161 processed += to_process; in nx_gca() 162 } while (processed < nbytes); in nx_gca() 177 unsigned int processed = 0, to_process; in gmac() local 199 to_process = min_t(u64, nbytes - processed, in gmac() 205 req->src, processed, &to_process); in gmac() 207 if ((to_process + processed) < nbytes) in gmac() [all …]
|
H A D | nx-aes-ccm.c | 268 unsigned int processed = 0, to_process; in generate_pat() local 270 processed += iauth_len; in generate_pat() 279 to_process = min_t(u32, assoclen - processed, in generate_pat() 284 req->src, processed, in generate_pat() 287 if ((to_process + processed) < assoclen) { in generate_pat() 315 processed += to_process; in generate_pat() 316 } while (processed < assoclen); in generate_pat() 336 unsigned int processed = 0, to_process; in ccm_nx_decrypt() local 358 to_process = nbytes - processed; in ccm_nx_decrypt() 360 if ((to_process + processed) < nbytes) in ccm_nx_decrypt() [all …]
|
H A D | nx-aes-ecb.c | 60 unsigned int processed = 0, to_process; in ecb_aes_nx_crypt() local 71 to_process = req->cryptlen - processed; in ecb_aes_nx_crypt() 74 &to_process, processed, NULL); in ecb_aes_nx_crypt() 92 processed += to_process; in ecb_aes_nx_crypt() 93 } while (processed < req->cryptlen); in ecb_aes_nx_crypt()
|
H A D | nx-aes-cbc.c | 60 unsigned int processed = 0, to_process; in cbc_aes_nx_crypt() local 71 to_process = req->cryptlen - processed; in cbc_aes_nx_crypt() 74 &to_process, processed, in cbc_aes_nx_crypt() 94 processed += to_process; in cbc_aes_nx_crypt() 95 } while (processed < req->cryptlen); in cbc_aes_nx_crypt()
|
H A D | nx-aes-ctr.c | 78 unsigned int processed = 0, to_process; in ctr_aes_nx_crypt() local 84 to_process = req->cryptlen - processed; in ctr_aes_nx_crypt() 87 &to_process, processed, in ctr_aes_nx_crypt() 108 processed += to_process; in ctr_aes_nx_crypt() 109 } while (processed < req->cryptlen); in ctr_aes_nx_crypt()
|
/openbmc/linux/include/trace/events/ |
H A D | xdp.h | 192 TP_PROTO(int map_id, unsigned int processed, unsigned int drops, 195 TP_ARGS(map_id, processed, drops, sched, xdp_stats), 202 __field(unsigned int, processed) 214 __entry->processed = processed; 223 " processed=%u drops=%u" 228 __entry->processed, __entry->drops, 235 TP_PROTO(int map_id, unsigned int processed, unsigned int drops, 238 TP_ARGS(map_id, processed, drops, to_cpu), 245 __field(unsigned int, processed) 254 __entry->processed = processed; [all …]
|
/openbmc/linux/samples/bpf/ |
H A D | xdp_sample.bpf.c | 85 NO_TEAR_INC(rec->processed); in xdp_redirect_collect_stat() 128 int BPF_PROG(tp_xdp_cpumap_enqueue, int map_id, unsigned int processed, in BPF_PROG() argument 142 NO_TEAR_ADD(rec->processed, processed); in BPF_PROG() 145 if (processed > 0) in BPF_PROG() 156 int BPF_PROG(tp_xdp_cpumap_kthread, int map_id, unsigned int processed, in BPF_PROG() argument 169 NO_TEAR_ADD(rec->processed, processed); in BPF_PROG() 225 NO_TEAR_ADD(rec->processed, sent); in BPF_PROG() 260 NO_TEAR_ADD(rec->processed, sent); in BPF_PROG()
|
/openbmc/phosphor-mboxd/test/ |
H A D | copy_flash.c | 30 ssize_t processed; in main() local 57 processed = read(rand_fd, src, TEST_SIZE); in main() 58 if (processed != TEST_SIZE) { in main() 63 processed = write(tmp.fd, src, TEST_SIZE); in main() 64 if (processed != TEST_SIZE) { in main()
|
/openbmc/linux/drivers/dma/idxd/ |
H A D | debugfs.c | 16 u16 index, int *count, bool processed) in dump_event_entry() argument 30 seq_printf(s, "Event Log entry %d (real index %u) processed: %u\n", in dump_event_entry() 31 *count, index, processed); in dump_event_entry() 64 bool processed = true; in debugfs_evl_show() local 85 if (processed && i == h) in debugfs_evl_show() 86 processed = false; in debugfs_evl_show() 87 dump_event_entry(idxd, s, i, &count, processed); in debugfs_evl_show()
|
/openbmc/linux/include/uapi/linux/ |
H A D | dm-log-userspace.h | 67 * When the request has been processed, user-space must return the 87 * When the request has been processed, user-space must return the 106 * When the request has been processed, user-space must return the 125 * When the request has been processed, user-space must return the 144 * When the request has been processed, user-space must return the 163 * When the request has been processed, user-space must return the 180 * When the request has been processed, user-space must return the 219 * When the request has been processed, user-space must return the 238 * When the request has been processed, user-space must return the 257 * When the request has been processed, user-space must return the [all …]
|
/openbmc/hiomapd/test/ |
H A D | flash_copy.c | 31 ssize_t processed; in main() local 60 processed = read(rand_fd, src, TEST_SIZE); in main() 61 if (processed != TEST_SIZE) { in main() 66 processed = write(tmp.fd, src, TEST_SIZE); in main() 67 if (processed != TEST_SIZE) { in main()
|
/openbmc/linux/drivers/net/ethernet/synopsys/ |
H A D | dwc-xlgmac-net.c | 1044 int processed = 0; in xlgmac_tx_poll() local 1061 while ((processed < XLGMAC_TX_DESC_MAX_PROC) && in xlgmac_tx_poll() 1086 processed++; in xlgmac_tx_poll() 1090 if (!processed) in xlgmac_tx_poll() 1101 XLGMAC_PR("processed=%d\n", processed); in xlgmac_tx_poll() 1103 return processed; in xlgmac_tx_poll() 1284 int processed = 0; in xlgmac_one_poll() local 1292 processed = xlgmac_rx_poll(channel, budget); in xlgmac_one_poll() 1294 /* If we processed everything, we are done */ in xlgmac_one_poll() 1295 if (processed < budget) { in xlgmac_one_poll() [all …]
|
/openbmc/linux/crypto/ |
H A D | algif_aead.c | 18 * allocated and prepared. As part of the recvmsg operation, the processed 107 size_t processed = 0; /* [in] TX bufs to be consumed */ in _aead_recvmsg() local 117 * processed. in _aead_recvmsg() 148 * length as this data is processed separately later on. in _aead_recvmsg() 166 * allows AIO operation where the caller sent all data to be processed in _aead_recvmsg() 181 processed = used + ctx->aead_assoclen; in _aead_recvmsg() 194 if (processed && !tsgl_src) { in _aead_recvmsg() 228 processed); in _aead_recvmsg() 231 af_alg_pull_tsgl(sk, processed, NULL, 0); in _aead_recvmsg() 252 areq->tsgl_entries = af_alg_count_tsgl(sk, processed, in _aead_recvmsg() [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/arm64/arm/cortex-a55/ |
H A D | pipeline.json | 9 …ent counts every cycle the DPU IQ is empty and there is an instruction cache miss being processed", 12 …vent counts every cycle the DPU IQ is empty and there is an instruction cache miss being processed" 15 …nt counts every cycle the DPU IQ is empty and there is an instruction L1 TLB miss being processed", 18 …ent counts every cycle the DPU IQ is empty and there is an instruction L1 TLB miss being processed" 21 …This event counts every cycle the DPU IQ is empty and there is a pre-decode error being processed", 24 ….This event counts every cycle the DPU IQ is empty and there is a pre-decode error being processed"
|
/openbmc/linux/Documentation/devicetree/bindings/ |
H A D | Makefile | 29 -name 'processed-schema*' \) 67 $(obj)/processed-schema.json: $(DT_DOCS) $(src)/.yamllint check_dtschema_version FORCE 70 always-y += processed-schema.json 75 # build artifacts here before they are processed by scripts/Makefile.clean 79 dt_compatible_check: $(obj)/processed-schema.json
|
/openbmc/linux/include/net/ |
H A D | regulatory.h | 68 * @processed: indicates whether or not this requests has already been 69 * processed. When the last request is processed it means that the 72 * the last request is not yet processed we must yield until it 73 * is processed before processing any new requests. 74 * @country_ie_checksum: checksum of the last processed and accepted 88 bool processed; member 135 * all country IE information processed by the regulatory core. This will
|
/openbmc/linux/arch/s390/include/asm/trace/ |
H A D | zcrypt.h | 14 * request has been processed by the kernel and the result is about to be 22 * and queue the request has been processed. It is not an ffdc interface as 82 * @dev: The adapter nr where this request was actually processed. 83 * @dom: Domain id of the device where this request was processed. 87 * carries some info about on which adapter the request was processed
|
/openbmc/linux/include/linux/iio/ |
H A D | consumer.h | 226 * iio_read_channel_processed() - read processed value from a given channel 232 * This function will read a processed value from a channel. A processed value 234 * representation. If the device does not support reporting a processed value 241 * iio_read_channel_processed_scale() - read and scale a processed value 248 * This function will read a processed value from a channel. This will work 385 * iio_convert_raw_to_processed() - Converts a raw value to a processed value 388 * @processed: The result of the conversion 393 * This function converts a raw value to processed value for a specific channel. 396 * depended. A processed value on the other hand is value has a normed unit 405 int *processed, unsigned int scale);
|
/openbmc/linux/fs/erofs/ |
H A D | xattr.c | 183 unsigned int slice, processed; in erofs_xattr_copy_to_buffer() local 187 for (processed = 0; processed < len; processed += slice) { in erofs_xattr_copy_to_buffer() 195 erofs_blkoff(sb, it->pos), len - processed); in erofs_xattr_copy_to_buffer() 259 unsigned int slice, processed, value_sz; in erofs_getxattr_foreach() local 293 for (processed = 0; processed < entry.e_name_len; processed += slice) { in erofs_getxattr_foreach() 301 entry.e_name_len - processed); in erofs_getxattr_foreach() 302 if (memcmp(it->name.name + it->infix_len + processed, in erofs_getxattr_foreach()
|
/openbmc/linux/tools/perf/pmu-events/arch/arm64/arm/cortex-a53/ |
H A D | pipeline.json | 15 …efDescription": "Cycles the DPU IQ is empty and there is an instruction cache miss being processed" 20 …scription": "Cycles the DPU IQ is empty and there is an instruction micro-TLB miss being processed" 25 "BriefDescription": "Cycles the DPU IQ is empty and there is a pre-decode error being processed"
|
/openbmc/qemu/target/s390x/tcg/ |
H A D | crypto_helper.c | 171 uint64_t len = *len_reg, a[8], processed = 0; in cpacf_sha512() local 189 for (; len >= 128; len -= 128, processed += 128) { in cpacf_sha512() 192 if (processed >= MAX_BLOCKS_PER_RUN * 128) { in cpacf_sha512() 196 sha512_read_block(env, *message_reg + processed, w, ra); in cpacf_sha512() 206 uint64_t addr = wrap_address(env, *message_reg + processed + i); in cpacf_sha512() 229 processed += len; in cpacf_sha512() 242 *message_reg + processed); in cpacf_sha512() 243 *len_reg -= processed; in cpacf_sha512()
|
/openbmc/linux/sound/sh/ |
H A D | sh_dac_audio.c | 47 int processed; /* bytes proccesed, to compare with period_size */ member 68 chip->processed = 0; in dac_audio_reset() 107 chip->processed = 0; in snd_sh_dac_pcm_open() 148 chip->processed = 0; in snd_sh_dac_pcm_trigger() 273 chip->processed++; in sh_dac_audio_timer() 274 if (chip->processed >= b_ps) { in sh_dac_audio_timer() 275 chip->processed -= b_ps; in sh_dac_audio_timer()
|
/openbmc/linux/sound/soc/qcom/qdsp6/ |
H A D | q6dsp-errno.h | 25 /* Operation is already processed. */ 27 /* Operation is not ready to be processed. */ 31 /* Operation could not be accepted or processed. */
|