Searched refs:block (Results 1 – 4 of 4) sorted by relevance
/scripts/mod/ |
D | sumversion.c | 42 uint32_t block[MD4_BLOCK_WORDS]; member 156 le32_to_cpu_array(ctx->block, sizeof(ctx->block) / sizeof(uint32_t)); in md4_transform_helper() 157 md4_transform(ctx->hash, ctx->block); in md4_transform_helper() 172 const uint32_t avail = sizeof(mctx->block) - (mctx->byte_count & 0x3f); in md4_update() 177 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail), in md4_update() 182 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail), in md4_update() 189 while (len >= sizeof(mctx->block)) { in md4_update() 190 memcpy(mctx->block, data, sizeof(mctx->block)); in md4_update() 192 data += sizeof(mctx->block); in md4_update() 193 len -= sizeof(mctx->block); in md4_update() [all …]
|
/scripts/ |
D | kernel-doc | 867 my $block = ""; 897 $block .= $line . "\n"; 901 $output .= highlight_block($block); 902 $block = "" 907 if ($block) { 908 $output .= highlight_block($block);
|
D | checkpatch.pl | 6126 my ($cond, $block) = @{$chunk}; 6139 $ln += statement_rawlines($block) - 1; 6141 substr($block, 0, length($cond), ''); 6143 $seen++ if ($block =~ /^\s*{/); 6150 if ($block =~/\b(?:if|for|while)\b/) { 6154 if (statement_block_size($block) > 1) { 6190 my ($cond, $block) = @{$chunks[0]}; 6193 substr($block, 0, length($cond), ''); 6199 if ($block =~/\b(?:if|for|while)\b/) { 6203 if (statement_block_size($block) > 1) { [all …]
|
/scripts/coccinelle/api/ |
D | stream_open.cocci | 46 // stream_reader that can block inside.
|