OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:snum
(Results
1 - 4
of
4
) sorted by null
/external/openssl/crypto/bn/
bn_div.c
185
BIGNUM *tmp,wnum,*
snum
,*sdiv,*res;
local
227
snum
=BN_CTX_get(ctx);
232
if (sdiv == NULL || res == NULL || tmp == NULL ||
snum
== NULL)
240
if (!(BN_lshift(
snum
,num,norm_shift))) goto err;
241
snum
->neg=0;
243
num_n=
snum
->top;
245
/* Lets setup a 'window' into
snum
249
wnum.d = &(
snum
->d[loop]);
252
wnum.dmax =
snum
->dmax - loop; /* so we don't step out of bounds */
259
/* pointer to the 'top' of
snum
*/
430
BIGNUM *tmp,wnum,*
snum
,*sdiv,*res;
local
[
all
...]
/libcore/luni/src/main/java/org/apache/harmony/security/utils/
JarUtils.java
98
BigInteger
snum
= sigInfo.getSerialNumber();
local
104
snum
.equals(certs[i].getSerialNumber())) {
/external/chromium/third_party/libjingle/source/talk/base/
stringutils.h
121
inline unsigned long strtoul(const wchar_t*
snum
, wchar_t** end, int base) {
122
return wcstoul(
snum
, end, base);
/external/openssl/crypto/
cryptlib.c
458
unsigned char
snum
= sizeof(id->ptr);
local
459
while (
snum
--)
460
accum += *(src++) * hash_coeffs[(
snum
+ dnum) & 7];
Completed in 45 milliseconds