HomeSort by relevance Sort by last modified time
    Searched refs:res (Results 26 - 50 of 4209) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/dropbear/libtomcrypt/testprof/
test_driver.c 3 void run_cmd(int res, int line, char *file, char *cmd)
5 if (res != CRYPT_OK) {
6 fprintf(stderr, "%s (%d)\n%s:%d:%s\n", error_to_string(res), res, file, line, cmd);
7 if (res != CRYPT_NOP) {
  /external/dropbear/libtommath/
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_init_copy.c 21 int res; local
23 if ((res = mp_init (a)) != MP_OKAY) {
24 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_reduce_2k_setup_l.c 21 int res; local
24 if ((res = mp_init(&tmp)) != MP_OKAY) {
25 return res;
28 if ((res = mp_2expt(&tmp, mp_count_bits(a))) != MP_OKAY) {
32 if ((res = s_mp_sub(&tmp, a, d)) != MP_OKAY) {
38 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_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;
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
StemFunction.h 32 Scalar res; local
35 res = std::cos(x);
38 res = -std::sin(x);
41 res = -std::cos(x);
44 res = std::sin(x);
47 return res;
53 Scalar res; local
56 res = std::sin(x);
59 res = std::cos(x);
62 res = -std::sin(x)
74 Scalar res; local
89 Scalar res; local
    [all...]