Home
last modified time | relevance | path

Searched refs:full_blocks (Results 1 – 2 of 2) sorted by relevance

/linux/lib/crypto/riscv/
H A Dchacha-riscv64-glue.c32 unsigned int full_blocks = bytes / CHACHA_BLOCK_SIZE; in chacha_crypt_arch() local
39 if (full_blocks) { in chacha_crypt_arch()
40 chacha_zvkb(state, src, dst, full_blocks, nrounds); in chacha_crypt_arch()
41 src += full_blocks * CHACHA_BLOCK_SIZE; in chacha_crypt_arch()
42 dst += full_blocks * CHACHA_BLOCK_SIZE; in chacha_crypt_arch()
/linux/tools/perf/util/
H A Dannotate-data.c959 * Prepend this_blocks (from the outer scope) to full_blocks, removing in delete_basic_blocks()
963 struct list_head *full_blocks) in delete_basic_blocks()
968 first_bb = list_first_entry(full_blocks, typeof(*first_bb), list); in fixup_var_address()
970 if (list_empty(full_blocks)) in fixup_var_address()
973 /* Last insn in this_blocks should be same as first insn in full_blocks */ in fixup_var_address()
987 /* Point to the insn before the last when adding this block to full_blocks */ in delete_var_types()
991 list_splice(this_blocks, full_blocks);
924 prepend_basic_blocks(struct list_head * this_blocks,struct list_head * full_blocks) prepend_basic_blocks() argument