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

1 2 34 5 6 7 8 91011>>

  /external/compiler-rt/lib/asan/lit_tests/
memcmp_strict_test.cc 11 int res = memcmp(kFoo, kFubar, strlen(kFubar)); local
12 printf("res: %d\n", res);
13 // CHECK-nonstrict: {{res: -1}}
memcmp_test.cc 14 int res = memcmp(a1, a2, 4 + argc); // BOOM local
18 return res;
stack-frame-demangle.cc 22 int res = XXX::YYY::ZZZ(argc + 10); local
23 return res;
global-overflow.cc 18 int res = YYY[argc * 10]; // BOOOM local
23 res += XXX[argc] + ZZZ[argc];
24 return 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);
  /frameworks/base/services/java/com/android/server/am/
AppErrorResult.java 21 public void set(int res) {
24 mResult = res;
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchBaseTest.java 19 import android.content.res.Resources;
22 boolean init(RenderScriptGL rs, Resources res);
  /external/dropbear/libtommath/
bn_mp_toom_sqr.c 23 int res, B; local
26 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) {
27 return res;
34 if ((res = mp_mod_2d(a, DIGIT_BIT * B, &a0)) != MP_OKAY) {
38 if ((res = mp_copy(a, &a1)) != MP_OKAY) {
44 if ((res = mp_copy(a, &a2)) != MP_OKAY) {
50 if ((res = mp_sqr(&a0, &w0)) != MP_OKAY) {
55 if ((res = mp_sqr(&a2, &w4)) != MP_OKAY) {
60 if ((res = mp_mul_2(&a0, &tmp1)) != MP_OKAY) {
63 if ((res = mp_add(&tmp1, &a1, &tmp1)) != MP_OKAY)
    [all...]
bn_mp_n_root.c 31 int res, neg; local
38 if ((res = mp_init (&t1)) != MP_OKAY) {
39 return res;
42 if ((res = mp_init (&t2)) != MP_OKAY) {
46 if ((res = mp_init (&t3)) != MP_OKAY) {
59 if ((res = mp_copy (&t2, &t1)) != MP_OKAY) {
66 if ((res = mp_expt_d (&t1, b - 1, &t3)) != MP_OKAY) {
72 if ((res = mp_mul (&t3, &t1, &t2)) != MP_OKAY) {
77 if ((res = mp_sub (&t2, a, &t2)) != MP_OKAY) {
83 if ((res = mp_mul_d (&t3, b, &t3)) != MP_OKAY) {
    [all...]
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_neg.c 21 int res; local
23 if ((res = mp_copy (a, b)) != MP_OKAY) {
24 return res;
bn_mp_prime_is_divisible.c 26 mp_digit res; local
33 if ((err = mp_mod_d (a, ltm_prime_tab[ix], &res)) != MP_OKAY) {
38 if (res == 0) {
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_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_set_int.c 21 int x, res; local
28 if ((res = mp_mul_2d (a, 4, a)) != MP_OKAY) {
29 return res;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
ResourceValueConverter.java 1 package com.xtremelabs.robolectric.res;
  /external/srec/config/en.us/
run-change-sample-rate2.sh 4 # mv -f recog4.res recog4_SHIP_change_sample_rate2.res
7 cat recog4.res > recog4_SHIP_change_sample_rate2.res
run-set-get-param.sh 4 # mv -f recog4.res recog4_SHIP_set_get_param.res
7 cat recog4.res > recog4_SHIP_set_get_param.res
  /bionic/libc/include/sys/
time.h 56 #define timeradd(a, b, res) \
58 (res)->tv_sec = (a)->tv_sec + (b)->tv_sec; \
59 (res)->tv_usec = (a)->tv_usec + (b)->tv_usec; \
60 if ((res)->tv_usec >= 1000000) { \
61 (res)->tv_usec -= 1000000; \
62 (res)->tv_sec += 1; \
66 #define timersub(a, b, res) \
68 (res)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
69 (res)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
70 if ((res)->tv_usec < 0) {
    [all...]
  /dalvik/vm/compiler/codegen/arm/Thumb/
Ralloc.cpp 34 int res = 0; local
37 res = (lowReg & 0xff) | ((highReg & 0xff) << 8);
38 return res;
  /development/ndk/platforms/android-3/include/sys/
time.h 56 #define timeradd(a, b, res) \
58 (res)->tv_sec = (a)->tv_sec + (b)->tv_sec; \
59 (res)->tv_usec = (a)->tv_usec + (b)->tv_usec; \
60 if ((res)->tv_usec >= 1000000) { \
61 (res)->tv_usec -= 1000000; \
62 (res)->tv_sec += 1; \
66 #define timersub(a, b, res) \
68 (res)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
69 (res)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
70 if ((res)->tv_usec < 0) {
    [all...]
  /external/elfutils/lib/
xstrndup.c 40 char *res; local
42 *((char *) mempcpy ((res = xmalloc (len + 1)), string, len)) = '\0';
43 return res;
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
CondVar.cpp 42 int const res = pthread_cond_init (&mCondition, NULL); local
43 if (res)
45 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res);
61 int const res = pthread_cond_destroy (&mCondition); local
62 if (res)
64 ALOGE ("CondVar::~CondVar: fail destroy; error=0x%X", res);
80 int const res = pthread_cond_wait (&mCondition, mutex.nativeHandle()); local
81 if (res)
83 ALOGE ("CondVar::wait: fail wait; error=0x%X", res);
143 int const res = pthread_cond_signal (&mCondition) local
    [all...]
  /external/libvpx/libvpx/vpx/src/
vpx_decoder.c 27 vpx_codec_err_t res; local
30 res = VPX_CODEC_ABI_MISMATCH;
32 res = VPX_CODEC_INVALID_PARAM;
34 res = VPX_CODEC_ABI_MISMATCH;
36 res = VPX_CODEC_INCAPABLE;
38 res = VPX_CODEC_INCAPABLE;
41 res = VPX_CODEC_INCAPABLE;
44 res = VPX_CODEC_INCAPABLE;
46 res = VPX_CODEC_INCAPABLE;
55 res = VPX_CODEC_OK
81 vpx_codec_err_t res; local
102 vpx_codec_err_t res; local
127 vpx_codec_err_t res; local
162 vpx_codec_err_t res; local
184 vpx_codec_err_t res; local
206 vpx_codec_err_t res = VPX_CODEC_OK; local
223 vpx_codec_err_t res = VPX_CODEC_MEM_ERROR; local
    [all...]

Completed in 453 milliseconds

1 2 34 5 6 7 8 91011>>