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

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libebl/
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;
  /frameworks/base/core/java/android/content/res/
Configuration.aidl 18 package android.content.res;
ObbInfo.aidl 17 package android.content.res;
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-96526-003.js 53 var res = "";
61 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
66 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
71 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
76 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
81 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
86 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
91 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
96 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
101 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm
    [all...]
  /external/speex/libspeex/
fixed_arm4.h 40 int res; local
46 : "=&r"(res), "=&r" (dummy)
48 return(res);
53 int res; local
59 : "=&r"(res), "=&r" (dummy)
61 return(res);
67 int res=0; local
139 : "=r" (dead1), "=r" (dead2), "=r" (res),
141 : "0" (a), "1" (b), "2" (res)
144 return res;
    [all...]
fixed_arm5e.h 40 int res; local
42 : "=&r"(res)
44 return(res);
49 int res; local
51 : "=&r"(res)
53 return(res);
58 int res; local
60 : "=&r"(res)
62 return(res);
67 int res; local
76 int res; local
85 int res; local
95 int res=0; local
    [all...]
fixed_bfin.h 42 spx_word32_t res, bb; local
58 : "=m" (res)
61 return res;
67 spx_word32_t res, bb; local
85 : "=m" (res)
88 return res;
94 spx_word32_t res; local
99 : "=d" (res)
102 return res;
108 spx_word32_t res; local
124 spx_word32_t res; local
141 spx_word32_t res; local
158 spx_word32_t res; local
    [all...]
  /external/dropbear/libtommath/
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_mulmod.c 21 int res; local
24 if ((res = mp_init (&t)) != MP_OKAY) {
25 return res;
28 if ((res = mp_mul (a, b, &t)) != MP_OKAY) {
30 return res;
32 res = mp_mod (&t, c, d);
34 return res;
bn_mp_sqrmod.c 22 int res; local
25 if ((res = mp_init (&t)) != MP_OKAY) {
26 return res;
29 if ((res = mp_sqr (a, &t)) != MP_OKAY) {
31 return res;
33 res = mp_mod (&t, b, c);
35 return res;
bn_mp_submod.c 22 int res; local
26 if ((res = mp_init (&t)) != MP_OKAY) {
27 return res;
30 if ((res = mp_sub (a, b, &t)) != MP_OKAY) {
32 return res;
34 res = mp_mod (&t, c, d);
36 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_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;
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;
bn_mp_rand.c 22 int res; local
35 if ((res = mp_add_d (a, d, a)) != MP_OKAY) {
36 return res;
40 if ((res = mp_lshd (a, 1)) != MP_OKAY) {
41 return res;
44 if ((res = mp_add_d (a, ((mp_digit) abs (rand ())), a)) != MP_OKAY) {
45 return res;
bn_mp_reduce_2k_setup.c 21 int res, p; local
24 if ((res = mp_init(&tmp)) != MP_OKAY) {
25 return res;
29 if ((res = mp_2expt(&tmp, p)) != MP_OKAY) {
31 return res;
34 if ((res = s_mp_sub(&tmp, a, &tmp)) != MP_OKAY) {
36 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;
  /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/srec/config/en.us/
adb_pull_system_usr_srec_liveaudio.sh 5 adb pull $TESTDIR/config/en.us/recog4_SHIP_liveaudio.res recog4_SHIP_liveaudio.res
run-liveaudio.sh 4 # mv -f recog4.res recog4_SHIP_liveaudio.res
7 cat recog4.res > recog4_SHIP_liveaudio.res

Completed in 1185 milliseconds

1 2 3 4 5 6 7 8 91011>>