/freebsd/sys/crypto/ |
H A D | chacha20_poly1305.c | 45 uint64_t lengths[2]; in chacha20_poly1305_encrypt() local 75 lengths[0] = htole64(aad_len); in chacha20_poly1305_encrypt() 76 lengths[1] = htole64(src_len); in chacha20_poly1305_encrypt() 77 exf->update(ctx, lengths, sizeof(lengths)); in chacha20_poly1305_encrypt() 81 explicit_bzero(lengths, sizeof(lengths)); in chacha20_poly1305_encrypt() 93 uint64_t lengths[2]; in chacha20_poly1305_decrypt() member 116 u.lengths[0] = htole64(aad_len); in chacha20_poly1305_decrypt() 117 u.lengths[1] = htole64(resid); in chacha20_poly1305_decrypt() 118 exf->update(ctx, u.lengths, sizeof(u.lengths)); in chacha20_poly1305_decrypt() 148 uint64_t lengths[2]; in xchacha20_poly1305_encrypt() local [all …]
|
/freebsd/bin/sh/tests/parameters/ |
H A D | positional9.0 | 6 lengths=${#*}${#@}"${#*}${#@}"$(echo ${#*}${#@}"${#*}${#@}") 8 lengths=$lengths${#*}${#@}"${#*}${#@}"$(echo ${#*}${#@}"${#*}${#@}") 9 case $lengths in 11 printf 'bad: %s\n' "$lengths" 15 printf 'too short: %s\n' "$lengths"
|
/freebsd/sys/cam/ |
H A D | cam_periph.c | 810 uint32_t lengths[CAM_PERIPH_MAXMAPS]; in cam_periph_mapmem() local 827 lengths[0] = ccb->cdm.pattern_buf_len; in cam_periph_mapmem() 830 lengths[1] = ccb->cdm.match_buf_len; in cam_periph_mapmem() 835 lengths[0] = ccb->cdm.match_buf_len; in cam_periph_mapmem() 852 lengths[0] = ccb->csio.dxfer_len; in cam_periph_mapmem() 862 lengths[0] = ccb->ataio.dxfer_len; in cam_periph_mapmem() 871 lengths[0] = sizeof(struct mmc_data *); in cam_periph_mapmem() 874 lengths[1] = ccb->mmcio.cmd.data->len; in cam_periph_mapmem() 880 lengths[0] = ccb->smpio.smp_request_len; in cam_periph_mapmem() 883 lengths[1] = ccb->smpio.smp_response_len; in cam_periph_mapmem() [all …]
|
/freebsd/tests/sys/file/ |
H A D | ftruncate_test.c | 52 static off_t lengths[] = {0, 1, 2, 3, 4, 127, 128, 129, 511, 512, 513, 1023, variable 55 static int lengths_count = sizeof(lengths) / sizeof(off_t); 94 len = lengths[i]; in main() 117 len = lengths[i]; in main()
|
/freebsd/sys/cam/scsi/ |
H A D | scsi_pass.c | 118 uint32_t lengths[CAM_PERIPH_MAXMAPS]; member 1284 uint32_t lengths[CAM_PERIPH_MAXMAPS]; in passmemsetup() local 1309 lengths[0] = ccb->cdm.pattern_buf_len; in passmemsetup() 1312 lengths[1] = ccb->cdm.match_buf_len; in passmemsetup() 1317 lengths[0] = ccb->cdm.match_buf_len; in passmemsetup() 1337 lengths[0] = ccb->csio.dxfer_len; in passmemsetup() 1357 lengths[0] = ccb->ataio.dxfer_len; in passmemsetup() 1366 lengths[0] = ccb->smpio.smp_request_len; in passmemsetup() 1369 lengths[1] = ccb->smpio.smp_response_len; in passmemsetup() 1381 lengths[0] = ccb->cdai.bufsiz; in passmemsetup() [all …]
|
/freebsd/crypto/openssl/apps/ |
H A D | speed.c | 118 static const int *lengths = lengths_list; variable 561 if (!EVP_Digest(buf, (size_t)lengths[testnum], digest, NULL, md, in EVP_Digest_loop() 608 || !EVP_MAC_update(mctx, buf, lengths[testnum]) in EVP_MAC_loop() 661 if (EVP_Cipher(tempargs->ctx, buf, buf, (size_t)lengths[testnum]) <= 0) in EVP_Cipher_loop() 675 if (!EVP_MAC_update(mctx, buf, lengths[testnum])) in GHASH_loop() 728 RAND_bytes(buf, lengths[testnum]); in RAND_bytes_loop() 742 rc = EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop() 750 rc = EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop() 808 NULL, lengths[testnum])) { in EVP_Update_loop_aead_enc() 821 if (!EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum])) { in EVP_Update_loop_aead_enc() [all …]
|
/freebsd/sys/contrib/zlib/doc/ |
H A D | rfc1951.txt | 207 "deflate" format limits distances to 32K bytes and lengths to 258 211 Each type of value (literals, distances, and lengths) in the 213 tree for literals and lengths and a separate code tree for distances. 289 lengths, not a sequence of bytes. We must therefore specify 318 sequences of different lengths, but a parser can always parse 367 various alphabets must not exceed certain maximum code lengths. 369 lengths from symbol frequencies. Again, see Chapter 5, 413 just by giving the bit lengths of the codes for each symbol of 416 by the sequence of bit lengths (2, 1, 3, 3). The following 418 from most- to least-significant bit. The code lengths are [all …]
|
/freebsd/contrib/diff/src/ |
H A D | diff3.c | 74 size_t *lengths[2]; /* Line lengths (including newlines, if any) */ member 84 size_t *lengths[3]; /* Line lengths (including newlines, if any) */ member 102 ((diff)->lengths[filenum][linenum]) 108 ((diff)->lengths[filenum]) 931 sizeof *bptr->lengths[1])); in process_diff() 942 bptr->lengths[0] = bptr->lengths[1] = 0; in process_diff() 981 bptr->lengths[0] = xmalloc (numlines * sizeof *bptr->lengths[0]); in process_diff() 985 &(bptr->lengths[0][i]), in process_diff() 1006 bptr->lengths[1] = xmalloc (numlines * sizeof *bptr->lengths[1]); in process_diff() 1010 &(bptr->lengths[1][i]), in process_diff()
|
/freebsd/sys/contrib/device-tree/Bindings/spi/ |
H A D | nvidia,tegra114-spi.txt | 30 Tap values vary based on the platform design trace lengths from Tegra SPI 35 Tap values vary based on the platform design trace lengths from Tegra SPI
|
H A D | atmel-quadspi.txt | 7 - reg: Should contain the locations and lengths of the base registers
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | DSA_generate_parameters.pod | 38 For lengths under 2048 bits, the length of q is 160 bits; for lengths 113 Seed lengths greater than 20 are not supported.
|
/freebsd/sys/contrib/device-tree/Bindings/display/ti/ |
H A D | ti,omap5-dss.txt | 64 - reg: addresses and lengths of the register spaces for 'proto', 'phy' and 'pll' 86 - reg: addresses and lengths of the register spaces for 'wp', 'pll', 'phy',
|
H A D | ti,omap4-dss.txt | 83 - reg: addresses and lengths of the register spaces for 'proto', 'phy' and 'pll' 105 - reg: addresses and lengths of the register spaces for 'wp', 'pll', 'phy',
|
/freebsd/usr.sbin/bhyve/ |
H A D | basl.c | 55 STAILQ_HEAD(basl_table_length_list, basl_table_length) lengths; 333 STAILQ_FOREACH(length, &table->lengths, chain) { in basl_finish_set_length() 464 STAILQ_INSERT_TAIL(&table->lengths, length, chain); in basl_table_add_length() 677 STAILQ_INIT(&new_table->lengths); in basl_table_create()
|
/freebsd/sys/contrib/device-tree/Bindings/net/can/ |
H A D | ti_hecc.txt | 9 - reg: addresses and lengths of the register spaces for 'hecc', 'hecc-ram'
|
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/ |
H A D | evpciph_aes_cts.txt | 15 # AES_CBC results for aligned block lengths. (Result should be the same as 32 byte CTS1 & CTS2) 42 # where aligned blocks are the same as CBC mode, and partial lengths 157 # where aligned blocks are the same as CBC mode, and partial lengths
|
/freebsd/sys/contrib/device-tree/Bindings/gpu/ |
H A D | brcm,bcm-v3d.txt | 8 - reg: Physical base addresses and lengths of the register areas
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_snapshot/ |
H A D | zfs_snapshot.cfg | 40 # Name lengths for snappool1 and snappool2 must the same
|
/freebsd/crypto/openssh/ |
H A D | PROTOCOL.chacha20poly1305 | 20 lengths. 47 lengths confidential but not create an oracle for the packet payload
|
/freebsd/sys/contrib/device-tree/Bindings/leds/ |
H A D | leds-trigger-pattern.txt | 32 use zero-time lengths (the brightness must be same as the previous tuple's). So
|
/freebsd/sys/contrib/device-tree/Bindings/pci/ |
H A D | samsung,exynos5440-pcie.txt | 8 - reg: base addresses and lengths of the PCIe controller,
|
H A D | axis,artpec6-pcie.txt | 11 - reg: base addresses and lengths of the PCIe controller (DBI),
|
/freebsd/sys/contrib/zstd/doc/ |
H A D | zstd_compression_format.md | 424 for each symbol type (literals lengths, match lengths, offsets) 606 There are 3 symbol types : literals lengths, offsets and match lengths. 650 literals lengths, offsets, and match lengths symbols respectively. 678 #### The codes for literals lengths, match lengths, and offsets. 688 They define lengths from 0 to 131071 bytes. 717 They define lengths from 3 to 131074 bytes. 788 literal lengths, offsets, and match lengths symbols. 817 [description of the codes]: #the-codes-for-literals-lengths-match-lengths-and-offsets 1207 by bit sequences of different lengths, 1441 FSE table for match lengths, and FSE table for literals lengths.
|
/freebsd/sys/contrib/device-tree/Bindings/crypto/ |
H A D | hisilicon,hip07-sec.txt | 7 - reg: Memory addresses and lengths of the memory regions through which
|
/freebsd/sys/contrib/device-tree/Bindings/gpio/ |
H A D | nxp,lpc1850-gpio.txt | 6 - reg : List of addresses and lengths of the GPIO controller
|