OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:crypto_int32_s
(Results
1 - 1
of
1
) sorted by relevancy
/src/crypto/external/bsd/openssh/dist/
sntrup761.c
568
crypto_int32 crypto_int32_load(const unsigned char *
crypto_int32_s
) {
570
crypto_int32_z |= ((crypto_int32) (*
crypto_int32_s
++)) << 0;
571
crypto_int32_z |= ((crypto_int32) (*
crypto_int32_s
++)) << 8;
572
crypto_int32_z |= ((crypto_int32) (*
crypto_int32_s
++)) << 16;
573
crypto_int32_z |= ((crypto_int32) (*
crypto_int32_s
++)) << 24;
579
void crypto_int32_store(unsigned char *
crypto_int32_s
,crypto_int32 crypto_int32_x) {
580
*
crypto_int32_s
++ = crypto_int32_x >> 0;
581
*
crypto_int32_s
++ = crypto_int32_x >> 8;
582
*
crypto_int32_s
++ = crypto_int32_x >> 16;
583
*
crypto_int32_s
++ = crypto_int32_x >> 24
957
crypto_int32 crypto_int32_r,
crypto_int32_s
;
local
[
all
...]
Completed in 24 milliseconds
Indexes created Sat Feb 28 05:31:39 UTC 2026