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/chromium_org/crypto/
p224.cc
116
static const uint32
kBottom28Bits
= 0xfffffff;
147
(*out)[i] = static_cast<uint32>(in[i] &
kBottom28Bits
);
159
(*out)[0] = static_cast<uint32>(in[0] &
kBottom28Bits
);
160
(*out)[1] += static_cast<uint32>((in[0] >> 28) &
kBottom28Bits
);
215
a[i] &=
kBottom28Bits
;
218
a[7] &=
kBottom28Bits
;
301
out[i] &=
kBottom28Bits
;
304
out[7] &=
kBottom28Bits
;
323
out[i] &=
kBottom28Bits
;
326
out[7] &=
kBottom28Bits
;
[
all
...]
/system/core/libmincrypt/
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 68 milliseconds