OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:iteration_state
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/openssl/openssl/patches/
fix_lhash_iteration.patch
32
+/* The field '
iteration_state
' is used to hold data to ensure that a hash
50
+ (lh)->
iteration_state
= 0; \
54
+#define LH_ITERATION_IS_ACTIVE(lh) ((lh)->
iteration_state
>= 2)
59
+ (lh)->
iteration_state
+= 2; \
65
+ (lh)->
iteration_state
-= 2; \
69
+#define LH_ITERATION_IS_MUTATED(lh) (((lh)->
iteration_state
& 1) != 0)
73
+ (lh)->
iteration_state
|= 1; \
219
+ int
iteration_state
;
266
+ int
iteration_state
;
/external/chromium_org/third_party/openssl/patches.chromium/
0006-lhashfix.patch
61
++/* The field '
iteration_state
' is used to hold data to ensure that a hash
79
++ (lh)->
iteration_state
= 0; \
83
++#define LH_ITERATION_IS_ACTIVE(lh) ((lh)->
iteration_state
>= 2)
88
++ (lh)->
iteration_state
+= 2; \
94
++ (lh)->
iteration_state
-= 2; \
98
++#define LH_ITERATION_IS_MUTATED(lh) (((lh)->
iteration_state
& 1) != 0)
102
++ (lh)->
iteration_state
|= 1; \
248
++ int
iteration_state
;
295
++ int
iteration_state
;
/external/chromium_org/third_party/openssl/openssl/crypto/lhash/
lhash.c
114
/* The field '
iteration_state
' is used to hold data to ensure that a hash
132
(lh)->
iteration_state
= 0; \
136
#define LH_ITERATION_IS_ACTIVE(lh) ((lh)->
iteration_state
>= 2)
141
(lh)->
iteration_state
+= 2; \
147
(lh)->
iteration_state
-= 2; \
151
#define LH_ITERATION_IS_MUTATED(lh) (((lh)->
iteration_state
& 1) != 0)
155
(lh)->
iteration_state
|= 1; \
lhash.h
166
int
iteration_state
;
member in struct:lhash_st
/external/chromium_org/third_party/openssl/openssl/include/openssl/
lhash.h
166
int
iteration_state
;
member in struct:lhash_st
Completed in 67 milliseconds