HomeSort by relevance Sort by last modified time
    Searched defs:res (Results 1 - 25 of 1191) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dropbear/libtommath/
bn_mp_2expt.c 26 int res; local
32 if ((res = mp_grow (a, b / DIGIT_BIT + 1)) != MP_OKAY) {
33 return res;
bn_mp_abs.c 25 int res; local
29 if ((res = mp_copy (a, b)) != MP_OKAY) {
30 return res;
bn_mp_init_copy.c 21 int res; local
23 if ((res = mp_init (a)) != MP_OKAY) {
24 return res;
bn_mp_neg.c 21 int res; local
23 if ((res = mp_copy (a, b)) != MP_OKAY) {
24 return res;
bn_mp_read_signed_bin.c 21 int res; local
24 if ((res = mp_read_unsigned_bin (a, b + 1, c - 1)) != MP_OKAY) {
25 return res;
bn_mp_read_unsigned_bin.c 21 int res; local
25 if ((res = mp_grow(a, 2)) != MP_OKAY) {
26 return res;
35 if ((res = mp_mul_2d (a, 8, a)) != MP_OKAY) {
36 return res;
bn_mp_reduce_setup.c 23 int res; local
25 if ((res = mp_2expt (a, b->used * 2 * DIGIT_BIT)) != MP_OKAY) {
26 return res;
bn_mp_sqr.c 22 int res; local
27 res = mp_toom_sqr(a, b);
33 res = mp_karatsuba_sqr (a, b);
42 res = fast_s_mp_sqr (a, b);
46 res = s_mp_sqr (a, b);
48 res = MP_VAL;
52 return res;
bn_mp_to_signed_bin.c 21 int res; local
23 if ((res = mp_to_unsigned_bin (a, b + 1)) != MP_OKAY) {
24 return res;
bn_mp_add.c 21 int sa, sb, res; local
32 res = s_mp_add (a, b, c);
40 res = s_mp_sub (b, a, c);
43 res = s_mp_sub (a, b, c);
46 return res;
bn_mp_addmod.c 22 int res; local
25 if ((res = mp_init (&t)) != MP_OKAY) {
26 return res;
29 if ((res = mp_add (a, b, &t)) != MP_OKAY) {
31 return res;
33 res = mp_mod (&t, c, d);
35 return res;
bn_mp_expt_d.c 21 int res, x; local
24 if ((res = mp_init_copy (&g, a)) != MP_OKAY) {
25 return res;
33 if ((res = mp_sqr (c, c)) != MP_OKAY) {
35 return res;
40 if ((res = mp_mul (c, &g, c)) != MP_OKAY) {
42 return res;
bn_mp_get_int.c 22 unsigned long res; local
32 res = DIGIT(a,i);
35 res = (res << DIGIT_BIT) | DIGIT(a,i);
39 return res & 0xFFFFFFFFUL;
bn_mp_lcm.c 21 int res; local
25 if ((res = mp_init_multi (&t1, &t2, NULL)) != MP_OKAY) {
26 return res;
30 if ((res = mp_gcd (a, b, &t1)) != MP_OKAY) {
37 if ((res = mp_div(a, &t1, &t2, NULL)) != MP_OKAY) {
40 res = mp_mul(b, &t2, c);
43 if ((res = mp_div(b, &t1, &t2, NULL)) != MP_OKAY) {
46 res = mp_mul(a, &t2, c);
54 return res;
bn_mp_mod.c 23 int res; local
25 if ((res = mp_init (&t)) != MP_OKAY) {
26 return res;
29 if ((res = mp_div (a, b, NULL, &t)) != MP_OKAY) {
31 return res;
35 res = mp_add (b, &t, c);
37 res = MP_OKAY;
42 return res;
bn_mp_mod_2d.c 22 int x, res; local
32 res = mp_copy (a, c);
33 return res;
37 if ((res = mp_copy (a, c)) != MP_OKAY) {
38 return res;
bn_mp_montgomery_calc_normalization.c 26 int x, bits, res; local
32 if ((res = mp_2expt (a, (b->used - 1) * DIGIT_BIT + bits - 1)) != MP_OKAY) {
33 return res;
43 if ((res = mp_mul_2 (a, a)) != MP_OKAY) {
44 return res;
47 if ((res = s_mp_sub (a, b, a)) != MP_OKAY) {
48 return res;
  /external/elfutils/libebl/
ebldynamictagcheck.c 28 bool res = ebl != NULL ? ebl->dynamic_tag_check (tag) : false; local
30 if (!res
38 res = true;
40 return res;
eblobjecttypename.c 30 const char *res; local
32 res = ebl != NULL ? ebl->object_type_name (object, buf, len) : NULL;
33 if (res == NULL)
44 res = buf;
47 return res;
eblosabiname.c 30 const char *res = ebl != NULL ? ebl->osabi_name (osabi, buf, len) : NULL; local
32 if (res == NULL)
35 res = "UNIX - System V";
37 res = "HP/UX";
39 res = "NetBSD";
41 res = "Linux";
43 res = "Solaris";
45 res = "AIX";
47 res = "Irix";
49 res = "FreeBSD"
    [all...]
eblreloctypename.c 30 const char *res; local
32 res = ebl != NULL ? ebl->reloc_type_name (reloc, buf, len) : NULL;
33 if (res == NULL)
35 res = "???";
37 return res;
  /external/v8/test/mjsunit/regress/
regress-227.js 29 var res = re.exec("!"); variable
30 assertEquals(null, res, "Throwing away high bits on ASCII string");
32 res = re.exec("!x");
33 assertEquals(["x"], res, "Throwing away high bits on ASCII string");
  /external/chromium/third_party/icu/source/i18n/
tzrule.cpp 24 int32_t res = l < r ? -1 : (l == r ? 0 : 1); local
25 return res;
461 UBool res = TRUE;
464 res = FALSE;
468 return res;
510 UBool res = TRUE;
513 res = FALSE;
517 return res;
  /external/dropbear/
atomicio.c 43 ssize_t res; local
47 res = (f) (fd, s + pos, n - pos);
48 switch (res) {
57 return (res);
59 pos += res;
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_shared_secret.c 34 void *res; local
43 if ((err = mp_init(&res)) != CRYPT_OK) {
47 if ((err = mp_exptmod(base, private_key, public_key->p, res)) != CRYPT_OK) {
48 mp_clear(res);
52 x = (unsigned long)mp_unsigned_bin_size(res);
59 if ((err = mp_to_unsigned_bin(res, out + (x - mp_unsigned_bin_size(res)))) != CRYPT_OK) { goto done; }
64 mp_clear(res);

Completed in 5326 milliseconds

1 2 3 4 5 6 7 8 91011>>