OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:carry_mask
(Results
1 - 3
of
3
) sorted by null
/external/libconstrainedcrypto/
p256_ec.c
197
const u32
carry_mask
= NON_ZERO_TO_ALL_ONES(carry);
local
200
inout[3] += 0x10000000 &
carry_mask
;
204
inout[4] += (0x20000000 - 1) &
carry_mask
;
205
inout[5] += (0x10000000 - 1) &
carry_mask
;
206
inout[6] += (0x20000000 - 1) &
carry_mask
;
210
inout[7] -= 1 &
carry_mask
;
[
all
...]
/prebuilts/go/darwin-x86/src/crypto/elliptic/
p256.go
225
carry_mask
:= nonZeroToAllOnes(carry)
228
inout[3] += 0x10000000 &
carry_mask
232
inout[4] += (0x20000000 - 1) &
carry_mask
233
inout[5] += (0x10000000 - 1) &
carry_mask
234
inout[6] += (0x20000000 - 1) &
carry_mask
238
inout[7] -= 1 &
carry_mask
[
all
...]
/prebuilts/go/linux-x86/src/crypto/elliptic/
p256.go
225
carry_mask
:= nonZeroToAllOnes(carry)
228
inout[3] += 0x10000000 &
carry_mask
232
inout[4] += (0x20000000 - 1) &
carry_mask
233
inout[5] += (0x10000000 - 1) &
carry_mask
234
inout[6] += (0x20000000 - 1) &
carry_mask
238
inout[7] -= 1 &
carry_mask
[
all
...]
Completed in 771 milliseconds