Home
last modified time | relevance | path

Searched refs:output (Results 1 – 25 of 26) sorted by relevance

12

/lib/crypto/
A Dcurve25519-hacl64.c133 output[ctr] = z; in fmul_shift_reduce()
138 output[ctr] = z; in fmul_shift_reduce()
143 output[ctr] = z; in fmul_shift_reduce()
148 output[ctr] = z; in fmul_shift_reduce()
150 output[0] = tmp; in fmul_shift_reduce()
151 b0 = output[0]; in fmul_shift_reduce()
207 i0 = output[0]; in fmul_fmul()
208 i1 = output[1]; in fmul_fmul()
264 i0 = output[0]; in fsquare_fsquare_()
265 i1 = output[1]; in fsquare_fsquare_()
[all …]
A Dchacha20poly1305-selftest.c18 const u8 *input, *output, *assoc, *nonce, *key; member
8912 chacha20poly1305_enc_vectors[i].output, in chacha20poly1305_selftest()
8935 chacha20poly1305_enc_vectors[i].output, in chacha20poly1305_selftest()
8956 chacha20poly1305_dec_vectors[i].output, in chacha20poly1305_selftest()
8978 memcmp(computed_output, chacha20poly1305_dec_vectors[i].output, in chacha20poly1305_selftest()
8997 xchacha20poly1305_enc_vectors[i].output, in chacha20poly1305_selftest()
9018 xchacha20poly1305_dec_vectors[i].output, in chacha20poly1305_selftest()
/lib/
A Ddecompress_unlz4.c34 u8 *output, long *posp, in unlz4() argument
50 if (output) { in unlz4()
51 outp = output; in unlz4()
176 if (output) in unlz4()
200 if (!output) in unlz4()
210 unsigned char *output, long out_len, in __decompress() argument
215 return unlz4(buf, in_len - 4, fill, flush, output, posp, error); in __decompress()
A Ddecompress_unlzo.c100 u8 *output, long *posp, in unlzo() argument
110 if (output) { in unlzo()
111 out_buf = output; in unlzo()
245 if (output) in unlzo()
270 if (!output) in unlzo()
A Ddecompress_unlzma.c542 unsigned char *output, in unlzma() argument
614 if (output) in unlzma()
615 wr.buffer = output; in unlzma()
662 if (!output) in unlzma()
675 unsigned char *output, long out_len, in __decompress() argument
679 return unlzma(buf, in_len - 4, fill, flush, output, posp, error); in __decompress()
A DKconfig.kmsan57 and checking that reports are correctly output to console.
A DKconfig.kfence93 output to console.
A Dvsprintf.c1806 char output[sizeof("0123 little-endian (0x01234567)")]; in fourcc_string() local
1807 char *p = output; in fourcc_string()
1855 p = special_hex_number(p, output + sizeof(output) - 2, orig, sizeof(u32)); in fourcc_string()
1859 return string(buf, end, output, spec); in fourcc_string()
A DKconfig.ubsan36 output less useful for bug reports.
A DKconfig.debug11 messages to be added to the output of the syslog() system
205 Say Y here to make BUG() panics output the file name and line number
461 that look like '.Lxxx') so they don't pollute the output of
797 task has ever had available in the sysrq-T and sysrq-P debug output.
2503 more verbose output on failures.
2525 KUnit tests run during boot and output the results to the debug log
2639 KUnit tests run during boot and output the results to the debug log
2656 KUnit tests run during boot and output the results to the debug log
2673 KUnit tests run during boot and output the results to the debug log
2691 KUnit tests run during boot and output the results to the debug log
[all …]
/lib/tests/
A Dstring_kunit.c544 strtomem(wrap.output, input); in string_test_strtomem()
546 KUNIT_EXPECT_EQ(test, wrap.output[0], input[0]); in string_test_strtomem()
547 KUNIT_EXPECT_EQ(test, wrap.output[1], input[1]); in string_test_strtomem()
548 for (size_t i = 2; i < sizeof(wrap.output); i++) in string_test_strtomem()
549 KUNIT_EXPECT_EQ(test, wrap.output[i], 0xFF); in string_test_strtomem()
554 strtomem(wrap.output, truncate); in string_test_strtomem()
556 for (size_t i = 0; i < sizeof(wrap.output); i++) in string_test_strtomem()
562 strtomem_pad(wrap.output, input, 0xAA); in string_test_strtomem()
564 KUNIT_EXPECT_EQ(test, wrap.output[0], input[0]); in string_test_strtomem()
567 KUNIT_EXPECT_EQ(test, wrap.output[i], 0xAA); in string_test_strtomem()
[all …]
/lib/zstd/
A Dzstd_compress_module.c246 size_t zstd_compress_stream(zstd_cstream *cstream, zstd_out_buffer *output, in zstd_compress_stream() argument
249 return ZSTD_compressStream(cstream, output, input); in zstd_compress_stream()
253 size_t zstd_flush_stream(zstd_cstream *cstream, zstd_out_buffer *output) in zstd_flush_stream() argument
255 return ZSTD_flushStream(cstream, output); in zstd_flush_stream()
259 size_t zstd_end_stream(zstd_cstream *cstream, zstd_out_buffer *output) in zstd_end_stream() argument
261 return ZSTD_endStream(cstream, output); in zstd_end_stream()
A Dzstd_decompress_module.c120 size_t zstd_decompress_stream(zstd_dstream *dstream, zstd_out_buffer *output, in zstd_decompress_stream() argument
123 return ZSTD_decompressStream(dstream, output, input); in zstd_decompress_stream()
/lib/zstd/decompress/
A Dzstd_decompress.c1970 if (expect.dst == output->dst && expect.pos == output->pos && expect.size == output->size) in ZSTD_checkOutBuffer()
2016 char* const ostart = output->pos != 0 ? dst + output->pos : dst; in ZSTD_decompressStream()
2017 char* const oend = output->size != 0 ? dst + output->size : dst; in ZSTD_decompressStream()
2029 output->pos > output->size, in ZSTD_decompressStream()
2032 (U32)output->pos, (U32)output->size); in ZSTD_decompressStream()
2244 output->pos = (size_t)(op - (char*)(output->dst)); in ZSTD_decompressStream()
2290 ZSTD_outBuffer output; in ZSTD_decompressStream_simpleArgs() local
2292 output.dst = dst; in ZSTD_decompressStream_simpleArgs()
2293 output.size = dstCapacity; in ZSTD_decompressStream_simpleArgs()
2294 output.pos = *dstPos; in ZSTD_decompressStream_simpleArgs()
[all …]
/lib/crypto/x86/
A Dchacha-avx512vl-x86_64.S29 # %rsi: up to 2 data blocks output, o
31 # %rcx: input/output length in bytes
172 # xor remaining bytes from partial register into output
194 # %rsi: up to 4 data blocks output, o
196 # %rcx: input/output length in bytes
438 # xor remaining bytes from partial register into output
460 # %rsi: up to 8 data blocks output, o
462 # %rcx: input/output length in bytes
764 # xor remaining blocks, write to output
818 # xor remaining bytes from partial register into output
A Dchacha-ssse3-x86_64.S116 # %rsi: up to 1 data block output, o
118 # %rcx: input/output length in bytes
172 # xor remaining bytes from partial register into output
204 # %rsi: output (8 32-bit words)
225 # %rsi: up to 4 data blocks output, o
227 # %rcx: input/output length in bytes
650 # xor with corresponding input, write to output
768 # xor remaining bytes from partial register into output
A Dchacha-avx2-x86_64.S39 # %rsi: up to 2 data blocks output, o
41 # %rcx: input/output length in bytes
199 # xor remaining bytes from partial register into output
231 # %rsi: up to 4 data blocks output, o
233 # %rcx: input/output length in bytes
504 # xor remaining bytes from partial register into output
536 # %rsi: up to 8 data blocks output, o
538 # %rcx: input/output length in bytes
943 # xor remaining blocks, write to output
998 # xor remaining bytes from partial register into output
/lib/crypto/arm64/
A Dsha2-armv8.pl63 $output=pop;
72 open OUT,"| \"$^X\" $xlate $flavour $output";
75 open STDOUT,">$output";
78 if ($output =~ /512/) {
A Dpoly1305-armv8.pl31 $output=shift;
39 open STDOUT,"| \"$^X\" $xlate $flavour $output";
41 open STDOUT,">$output";
/lib/crypto/arm/
A Dpoly1305-armv4.pl24 if ($flavour=~/\w[\w\-]*\.\w+$/) { $output=$flavour; undef $flavour; }
25 else { while (($output=shift) && ($output!~/\w[\w\-]*\.\w+$/)) {} }
33 open STDOUT,"| \"$^X\" $xlate $flavour $output";
35 open STDOUT,">$output";
A Dsha256-armv4.pl47 while (($output=shift) && ($output!~/^\w[\w\-]*\.\w+$/)) {}
48 open STDOUT,">$output";
A Dsha512-armv4.pl60 while (($output=shift) && ($output!~/^\w[\w\-]*\.\w+$/)) {}
61 open STDOUT,">$output";
/lib/zstd/compress/
A Dzstd_compress.c5997 char* const ostart = (assert(output != NULL), (char*)output->dst); in ZSTD_compressStream_generic()
6021 if (output->dst == NULL) assert(output->size == 0); in ZSTD_compressStream_generic()
6022 assert(output->pos <= output->size); in ZSTD_compressStream_generic()
6198 cctx->expectedOutBufferSize = output->size - output->pos; in ZSTD_setBufferExpectations()
6217 size_t const outBufferSize = output->size - output->pos; in ZSTD_checkBufferStability()
6298 RETURN_ERROR_IF(output->pos > output->size, dstSize_tooSmall, "invalid output buffer"); in ZSTD_compressStream2()
6343 ZSTD_outBuffer output; in ZSTD_compressStream2_simpleArgs() local
6345 output.dst = dst; in ZSTD_compressStream2_simpleArgs()
6346 output.size = dstCapacity; in ZSTD_compressStream2_simpleArgs()
6347 output.pos = *dstPos; in ZSTD_compressStream2_simpleArgs()
[all …]
/lib/kunit/
A DKconfig63 KUnit tests run during boot and output the results to the debug log
/lib/crypto/mips/
A Dpoly1305-mips.pl1271 $output=pop and open STDOUT,">$output";

Completed in 927 milliseconds

12