OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kBottom28Bits
(Results
1 - 2
of
2
) sorted by null
/external/libchrome/crypto/
p224.cc
118
static const uint32_t
kBottom28Bits
= 0xfffffff;
149
(*out)[i] = static_cast<uint32_t>(in[i] &
kBottom28Bits
);
161
(*out)[0] = static_cast<uint32_t>(in[0] &
kBottom28Bits
);
162
(*out)[1] += static_cast<uint32_t>((in[0] >> 28) &
kBottom28Bits
);
217
a[i] &=
kBottom28Bits
;
220
a[7] &=
kBottom28Bits
;
303
out[i] &=
kBottom28Bits
;
306
out[7] &=
kBottom28Bits
;
325
out[i] &=
kBottom28Bits
;
328
out[7] &=
kBottom28Bits
;
[
all
...]
/external/libconstrainedcrypto/
p256_ec.c
68
static const limb
kBottom28Bits
= 0xfffffff;
235
out[i] &=
kBottom28Bits
;
275
out[i] &=
kBottom28Bits
;
312
tmp2[1] |= (((limb)(tmp[0] >> 32)) << 3) &
kBottom28Bits
;
313
tmp2[1] += ((limb) tmp[1]) &
kBottom28Bits
;
315
tmp2[1] &=
kBottom28Bits
;
331
tmp2[i] += (((limb)(tmp[i - 1] >> 32)) << 3) &
kBottom28Bits
;
332
tmp2[i] += ((limb) tmp[i]) &
kBottom28Bits
;
335
tmp2[i] &=
kBottom28Bits
;
402
tmp2[i + 3] += (x << 10) &
kBottom28Bits
;
[
all
...]
Completed in 66 milliseconds