Home
last modified time | relevance | path

Searched refs:lenlo (Results 1 – 25 of 119) sorted by relevance

12345

/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/iksemel/src/
H A Dsha.c17 unsigned int lenhi, lenlo; member
55 pad[4] = (unsigned char)((sha->lenlo >> 24) & 0xff); in iks_sha_hash()
56 pad[5] = (unsigned char)((sha->lenlo >> 16) & 0xff); in iks_sha_hash()
57 pad[6] = (unsigned char)((sha->lenlo >> 8) & 0xff); in iks_sha_hash()
58 pad[7] = (unsigned char)(sha->lenlo & 255); in iks_sha_hash()
111 sha->lenlo += 8; in sha_buffer()
112 sha->lenhi += (sha->lenlo < 8); in sha_buffer()
/dports/net-im/climm/climm-0.7.1/iksemel-1.4/src/
H A Dsha.c17 unsigned int lenhi, lenlo; member
55 pad[4] = (unsigned char)((sha->lenlo >> 24) & 0xff); in iks_sha_hash()
56 pad[5] = (unsigned char)((sha->lenlo >> 16) & 0xff); in iks_sha_hash()
57 pad[6] = (unsigned char)((sha->lenlo >> 8) & 0xff); in iks_sha_hash()
58 pad[7] = (unsigned char)(sha->lenlo & 255); in iks_sha_hash()
111 sha->lenlo += 8; in sha_buffer()
112 sha->lenhi += (sha->lenlo < 8); in sha_buffer()
/dports/textproc/iksemel/iksemel-978b733/src/
H A Dsha.c17 unsigned int lenhi, lenlo; member
55 pad[4] = (unsigned char)((sha->lenlo >> 24) & 0xff); in iks_sha_hash()
56 pad[5] = (unsigned char)((sha->lenlo >> 16) & 0xff); in iks_sha_hash()
57 pad[6] = (unsigned char)((sha->lenlo >> 8) & 0xff); in iks_sha_hash()
58 pad[7] = (unsigned char)(sha->lenlo & 255); in iks_sha_hash()
111 sha->lenlo += 8; in sha_buffer()
112 sha->lenhi += (sha->lenlo < 8); in sha_buffer()
/dports/polish/tleenx2/TleenX2-20040214/iksemel/
H A Dsha.c45 sha->lenlo = 0; in iks_sha_reset()
66 pad[4] = (unsigned char)((sha->lenlo >> 24) & 0xff); in iks_sha_hash()
67 pad[5] = (unsigned char)((sha->lenlo >> 16) & 0xff); in iks_sha_hash()
68 pad[6] = (unsigned char)((sha->lenlo >> 8) & 0xff); in iks_sha_hash()
69 pad[7] = (unsigned char)(sha->lenlo & 255); in iks_sha_hash()
126 sha->lenlo += 8; in sha_buffer()
127 sha->lenhi += (sha->lenlo < 8); in sha_buffer()
/dports/games/sgt-puzzles/puzzles-20220128.c43a34f/
H A Drandom.c107 s->lenhi = s->lenlo = 0; in SHA_Init()
120 s->lenlo += lenw; in SHA_Bytes()
121 s->lenhi += (s->lenlo < lenw); in SHA_Bytes()
158 uint32 lenhi, lenlo; in SHA_Final() local
165 lenhi = (s->lenhi << 3) | (s->lenlo >> (32 - 3)); in SHA_Final()
166 lenlo = (s->lenlo << 3); in SHA_Final()
176 c[4] = (unsigned char)((lenlo >> 24) & 0xFF); in SHA_Final()
177 c[5] = (unsigned char)((lenlo >> 16) & 0xFF); in SHA_Final()
178 c[6] = (unsigned char)((lenlo >> 8) & 0xFF); in SHA_Final()
179 c[7] = (unsigned char)((lenlo >> 0) & 0xFF); in SHA_Final()
/dports/math/e-antic/flint2-ae7ec89/fmpz_poly/profile/
H A Dp-pow.c23 #define lenlo 1 macro
32 #define cols ((lenhi + 1 - lenlo + (lenh - 1)) / lenh)
52 flint_printf("Length: [%d..%d] with step size %d\n", lenlo, lenhi, lenh); in main()
63 for (len = lenlo, j = 0; len <= lenhi; len += lenh, j++) in main()
/dports/math/flint2/flint-2.8.4/fmpz_poly/profile/
H A Dp-pow.c23 #define lenlo 1 macro
32 #define cols ((lenhi + 1 - lenlo + (lenh - 1)) / lenh)
52 flint_printf("Length: [%d..%d] with step size %d\n", lenlo, lenhi, lenh); in main()
63 for (len = lenlo, j = 0; len <= lenhi; len += lenh, j++) in main()
/dports/math/e-antic/e-antic-1.0.0-rc.13/libeantic/upstream/antic/fmpz_poly/profile/
H A Dp-pow.c23 #define lenlo 1 macro
32 #define cols ((lenhi + 1 - lenlo + (lenh - 1)) / lenh)
52 flint_printf("Length: [%d..%d] with step size %d\n", lenlo, lenhi, lenh); in main()
63 for (len = lenlo, j = 0; len <= lenhi; len += lenh, j++) in main()
/dports/security/putty/putty-0.76/
H A Dsshblake2.c110 uint64_t lenhi, lenlo; member
154 s->lenhi = s->lenlo = 0; in blake2b_reset()
182 f_outer(s->h, s->block, s->lenhi, s->lenlo, 0); in blake2b_write()
195 s->lenlo += chunk; in blake2b_write()
196 s->lenhi += (s->lenlo < chunk); in blake2b_write()
205 f_outer(s->h, s->block, s->lenhi, s->lenlo, 1); in blake2b_digest()
/dports/security/putty-nogtk/putty-0.76/
H A Dsshblake2.c110 uint64_t lenhi, lenlo; member
154 s->lenhi = s->lenlo = 0; in blake2b_reset()
182 f_outer(s->h, s->block, s->lenhi, s->lenlo, 0); in blake2b_write()
195 s->lenlo += chunk; in blake2b_write()
196 s->lenhi += (s->lenlo < chunk); in blake2b_write()
205 f_outer(s->h, s->block, s->lenhi, s->lenlo, 1); in blake2b_digest()
/dports/ftp/filezilla/filezilla-3.55.1/src/putty/
H A Dsshblake2.c110 uint64_t lenhi, lenlo; member
154 s->lenhi = s->lenlo = 0; in blake2b_reset()
182 f_outer(s->h, s->block, s->lenhi, s->lenlo, 0); in blake2b_write()
195 s->lenlo += chunk; in blake2b_write()
196 s->lenhi += (s->lenlo < chunk); in blake2b_write()
205 f_outer(s->h, s->block, s->lenhi, s->lenlo, 1); in blake2b_digest()
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/util/perl/TLSProxy/
H A DMessage.pm236 my $lenlo;
237 ($mt, $lenhi, $lenlo) = unpack('CnC',
240 $messlen = ($lenhi << 8) | $lenlo;
462 my $lenlo;
464 $lenlo = length($self->data) & 0xff;
466 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/openssl-src-111.16.0+1.1.1l/openssl/util/perl/TLSProxy/
H A DMessage.pm236 my $lenlo;
237 ($mt, $lenhi, $lenlo) = unpack('CnC',
240 $messlen = ($lenhi << 8) | $lenlo;
462 my $lenlo;
464 $lenlo = length($self->data) & 0xff;
466 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/util/perl/TLSProxy/
H A DMessage.pm236 my $lenlo;
237 ($mt, $lenhi, $lenlo) = unpack('CnC',
240 $messlen = ($lenhi << 8) | $lenlo;
462 my $lenlo;
464 $lenlo = length($self->data) & 0xff;
466 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/util/perl/TLSProxy/
H A DMessage.pm231 my $lenlo;
232 ($mt, $lenhi, $lenlo) = unpack('CnC',
235 $messlen = ($lenhi << 8) | $lenlo;
448 my $lenlo;
450 $lenlo = length($self->data) & 0xff;
452 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/util/perl/TLSProxy/
H A DMessage.pm236 my $lenlo;
237 ($mt, $lenhi, $lenlo) = unpack('CnC',
240 $messlen = ($lenhi << 8) | $lenlo;
462 my $lenlo;
464 $lenlo = length($self->data) & 0xff;
466 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/util/perl/TLSProxy/
H A DMessage.pm236 my $lenlo;
237 ($mt, $lenhi, $lenlo) = unpack('CnC',
240 $messlen = ($lenhi << 8) | $lenlo;
462 my $lenlo;
464 $lenlo = length($self->data) & 0xff;
466 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
/dports/sysutils/vector/vector-0.10.0/cargo-crates/openssl-src-111.9.0+1.1.1g/openssl/util/perl/TLSProxy/
H A DMessage.pm236 my $lenlo;
237 ($mt, $lenhi, $lenlo) = unpack('CnC',
240 $messlen = ($lenhi << 8) | $lenlo;
462 my $lenlo;
464 $lenlo = length($self->data) & 0xff;
466 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/util/perl/TLSProxy/
H A DMessage.pm236 my $lenlo;
237 ($mt, $lenhi, $lenlo) = unpack('CnC',
240 $messlen = ($lenhi << 8) | $lenlo;
462 my $lenlo;
464 $lenlo = length($self->data) & 0xff;
466 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
/dports/emulators/qemu-utils/qemu-4.2.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/util/perl/TLSProxy/
H A DMessage.pm231 my $lenlo;
232 ($mt, $lenhi, $lenlo) = unpack('CnC',
235 $messlen = ($lenhi << 8) | $lenlo;
448 my $lenlo;
450 $lenlo = length($self->data) & 0xff;
452 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
/dports/sysutils/uefi-edk2-qemu/edk2-edk2-stable201911/CryptoPkg/Library/OpensslLib/openssl/util/perl/TLSProxy/
H A DMessage.pm236 my $lenlo;
237 ($mt, $lenhi, $lenlo) = unpack('CnC',
240 $messlen = ($lenhi << 8) | $lenlo;
462 my $lenlo;
464 $lenlo = length($self->data) & 0xff;
466 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/CryptoPkg/Library/OpensslLib/openssl/util/perl/TLSProxy/
H A DMessage.pm236 my $lenlo;
237 ($mt, $lenhi, $lenlo) = unpack('CnC',
240 $messlen = ($lenhi << 8) | $lenlo;
462 my $lenlo;
464 $lenlo = length($self->data) & 0xff;
466 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-src-111.14.0+1.1.1j/openssl/util/perl/TLSProxy/
H A DMessage.pm236 my $lenlo;
237 ($mt, $lenhi, $lenlo) = unpack('CnC',
240 $messlen = ($lenhi << 8) | $lenlo;
462 my $lenlo;
464 $lenlo = length($self->data) & 0xff;
466 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-src-111.16.0+1.1.1l/openssl/util/perl/TLSProxy/
H A DMessage.pm236 my $lenlo;
237 ($mt, $lenhi, $lenlo) = unpack('CnC',
240 $messlen = ($lenhi << 8) | $lenlo;
462 my $lenlo;
464 $lenlo = length($self->data) & 0xff;
466 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-src-111.15.0+1.1.1k/openssl/util/perl/TLSProxy/
H A DMessage.pm236 my $lenlo;
237 ($mt, $lenhi, $lenlo) = unpack('CnC',
240 $messlen = ($lenhi << 8) | $lenlo;
462 my $lenlo;
464 $lenlo = length($self->data) & 0xff;
466 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;

12345