OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BLAKE2_LOCAL_INLINE
(Results
1 - 8
of
8
) sorted by null
/external/python/cpython3/Modules/_blake2/impl/
blake2-impl.h
22
BLAKE2_LOCAL_INLINE
(uint32_t) load32( const void *src )
38
BLAKE2_LOCAL_INLINE
(uint64_t) load64( const void *src )
58
BLAKE2_LOCAL_INLINE
(void) store32( void *dst, uint32_t w )
71
BLAKE2_LOCAL_INLINE
(void) store64( void *dst, uint64_t w )
88
BLAKE2_LOCAL_INLINE
(uint64_t) load48( const void *src )
100
BLAKE2_LOCAL_INLINE
(void) store48( void *dst, uint64_t w )
111
BLAKE2_LOCAL_INLINE
(uint32_t) rotl32( const uint32_t w, const unsigned c )
116
BLAKE2_LOCAL_INLINE
(uint64_t) rotl64( const uint64_t w, const unsigned c )
121
BLAKE2_LOCAL_INLINE
(uint32_t) rotr32( const uint32_t w, const unsigned c )
126
BLAKE2_LOCAL_INLINE
(uint64_t) rotr64( const uint64_t w, const unsigned c
[
all
...]
blake2b.c
70
BLAKE2_LOCAL_INLINE
(int) blake2b_set_lastnode( blake2b_state *S )
76
BLAKE2_LOCAL_INLINE
(int) blake2b_clear_lastnode( blake2b_state *S )
82
BLAKE2_LOCAL_INLINE
(int) blake2b_is_lastblock( const blake2b_state *S )
87
BLAKE2_LOCAL_INLINE
(int) blake2b_set_lastblock( blake2b_state *S )
95
BLAKE2_LOCAL_INLINE
(int) blake2b_clear_lastblock( blake2b_state *S )
104
BLAKE2_LOCAL_INLINE
(int) blake2b_increment_counter( blake2b_state *S, const uint64_t inc )
121
BLAKE2_LOCAL_INLINE
(int) blake2b_param_set_digest_length( blake2b_param *P, const uint8_t digest_length )
127
BLAKE2_LOCAL_INLINE
(int) blake2b_param_set_fanout( blake2b_param *P, const uint8_t fanout )
133
BLAKE2_LOCAL_INLINE
(int) blake2b_param_set_max_depth( blake2b_param *P, const uint8_t depth )
139
BLAKE2_LOCAL_INLINE
(int) blake2b_param_set_leaf_length( blake2b_param *P, const uint32_t leaf_length
[
all
...]
blake2s.c
64
BLAKE2_LOCAL_INLINE
(int) blake2s_set_lastnode( blake2s_state *S )
70
BLAKE2_LOCAL_INLINE
(int) blake2s_clear_lastnode( blake2s_state *S )
76
BLAKE2_LOCAL_INLINE
(int) blake2s_is_lastblock( const blake2s_state *S )
81
BLAKE2_LOCAL_INLINE
(int) blake2s_set_lastblock( blake2s_state *S )
89
BLAKE2_LOCAL_INLINE
(int) blake2s_clear_lastblock( blake2s_state *S )
97
BLAKE2_LOCAL_INLINE
(int) blake2s_increment_counter( blake2s_state *S, const uint32_t inc )
108
BLAKE2_LOCAL_INLINE
(int) blake2s_param_set_digest_length( blake2s_param *P, const uint8_t digest_length )
114
BLAKE2_LOCAL_INLINE
(int) blake2s_param_set_fanout( blake2s_param *P, const uint8_t fanout )
120
BLAKE2_LOCAL_INLINE
(int) blake2s_param_set_max_depth( blake2s_param *P, const uint8_t depth )
126
BLAKE2_LOCAL_INLINE
(int) blake2s_param_set_leaf_length( blake2s_param *P, const uint32_t leaf_length
[
all
...]
blake2b-ref.c
48
BLAKE2_LOCAL_INLINE
(int) blake2b_set_lastnode( blake2b_state *S )
54
BLAKE2_LOCAL_INLINE
(int) blake2b_clear_lastnode( blake2b_state *S )
61
BLAKE2_LOCAL_INLINE
(int) blake2b_is_lastblock( const blake2b_state *S )
66
BLAKE2_LOCAL_INLINE
(int) blake2b_set_lastblock( blake2b_state *S )
74
BLAKE2_LOCAL_INLINE
(int) blake2b_clear_lastblock( blake2b_state *S )
82
BLAKE2_LOCAL_INLINE
(int) blake2b_increment_counter( blake2b_state *S, const uint64_t inc )
92
BLAKE2_LOCAL_INLINE
(int) blake2b_param_set_digest_length( blake2b_param *P, const uint8_t digest_length )
98
BLAKE2_LOCAL_INLINE
(int) blake2b_param_set_fanout( blake2b_param *P, const uint8_t fanout )
104
BLAKE2_LOCAL_INLINE
(int) blake2b_param_set_max_depth( blake2b_param *P, const uint8_t depth )
110
BLAKE2_LOCAL_INLINE
(int) blake2b_param_set_leaf_length( blake2b_param *P, const uint32_t leaf_length
[
all
...]
blake2s-ref.c
43
BLAKE2_LOCAL_INLINE
(int) blake2s_set_lastnode( blake2s_state *S )
49
BLAKE2_LOCAL_INLINE
(int) blake2s_clear_lastnode( blake2s_state *S )
56
BLAKE2_LOCAL_INLINE
(int) blake2s_is_lastblock( const blake2s_state *S )
61
BLAKE2_LOCAL_INLINE
(int) blake2s_set_lastblock( blake2s_state *S )
69
BLAKE2_LOCAL_INLINE
(int) blake2s_clear_lastblock( blake2s_state *S )
77
BLAKE2_LOCAL_INLINE
(int) blake2s_increment_counter( blake2s_state *S, const uint32_t inc )
85
BLAKE2_LOCAL_INLINE
(int) blake2s_param_set_digest_length( blake2s_param *P, const uint8_t digest_length )
91
BLAKE2_LOCAL_INLINE
(int) blake2s_param_set_fanout( blake2s_param *P, const uint8_t fanout )
97
BLAKE2_LOCAL_INLINE
(int) blake2s_param_set_max_depth( blake2s_param *P, const uint8_t depth )
103
BLAKE2_LOCAL_INLINE
(int) blake2s_param_set_leaf_length( blake2s_param *P, const uint32_t leaf_length
[
all
...]
blake2.h
23
#define
BLAKE2_LOCAL_INLINE
(type) static type
26
#ifndef
BLAKE2_LOCAL_INLINE
27
#define
BLAKE2_LOCAL_INLINE
(type) static inline type
/external/python/cpython3/Modules/_blake2/
blake2b_impl.c
26
#define
BLAKE2_LOCAL_INLINE
(type) Py_LOCAL_INLINE(type)
blake2s_impl.c
26
#define
BLAKE2_LOCAL_INLINE
(type) Py_LOCAL_INLINE(type)
Completed in 55 milliseconds