Home
last modified time | relevance | path

Searched refs:lengths (Results 1 – 25 of 107) sorted by relevance

12345

/freebsd/sys/crypto/
H A Dchacha20_poly1305.c45 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 Dpositional9.06 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 Dcam_periph.c810 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 Dftruncate_test.c52 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 Dscsi_pass.c118 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 Dspeed.c118 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 Drfc1951.txt207 "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 Ddiff3.c74 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 Dnvidia,tegra114-spi.txt30 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 Datmel-quadspi.txt7 - reg: Should contain the locations and lengths of the base registers
/freebsd/crypto/openssl/doc/man3/
H A DDSA_generate_parameters.pod38 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 Dti,omap5-dss.txt64 - 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 Dti,omap4-dss.txt83 - 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 Dbasl.c55 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 Dti_hecc.txt9 - reg: addresses and lengths of the register spaces for 'hecc', 'hecc-ram'
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/
H A Devpciph_aes_cts.txt15 # 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 Dbrcm,bcm-v3d.txt8 - 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 Dzfs_snapshot.cfg40 # Name lengths for snappool1 and snappool2 must the same
/freebsd/crypto/openssh/
H A DPROTOCOL.chacha20poly130520 lengths.
47 lengths confidential but not create an oracle for the packet payload
/freebsd/sys/contrib/device-tree/Bindings/leds/
H A Dleds-trigger-pattern.txt32 use zero-time lengths (the brightness must be same as the previous tuple's). So
/freebsd/sys/contrib/device-tree/Bindings/pci/
H A Dsamsung,exynos5440-pcie.txt8 - reg: base addresses and lengths of the PCIe controller,
H A Daxis,artpec6-pcie.txt11 - reg: base addresses and lengths of the PCIe controller (DBI),
/freebsd/sys/contrib/zstd/doc/
H A Dzstd_compression_format.md424 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 Dhisilicon,hip07-sec.txt7 - reg: Memory addresses and lengths of the memory regions through which
/freebsd/sys/contrib/device-tree/Bindings/gpio/
H A Dnxp,lpc1850-gpio.txt6 - reg : List of addresses and lengths of the GPIO controller

12345