HomeSort by relevance Sort by last modified time
    Searched refs:res (Results 176 - 200 of 5516) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/dropbear/libtommath/
bn_fast_mp_invmod.c 27 int res, neg; local
35 if ((res = mp_init_multi(&x, &y, &u, &v, &B, &D, NULL)) != MP_OKAY) {
36 return res;
40 if ((res = mp_copy (b, &x)) != MP_OKAY) {
45 if ((res = mp_mod (a, b, &y)) != MP_OKAY) {
50 if ((res = mp_copy (&x, &u)) != MP_OKAY) {
53 if ((res = mp_copy (&y, &v)) != MP_OKAY) {
62 if ((res = mp_div_2 (&u, &u)) != MP_OKAY) {
67 if ((res = mp_sub (&B, &x, &B)) != MP_OKAY) {
72 if ((res = mp_div_2 (&B, &B)) != MP_OKAY)
    [all...]
bn_mp_invmod_slow.c 22 int res; local
30 if ((res = mp_init_multi(&x, &y, &u, &v,
32 return res;
36 if ((res = mp_mod(a, b, &x)) != MP_OKAY) {
39 if ((res = mp_copy (b, &y)) != MP_OKAY) {
45 res = MP_VAL;
50 if ((res = mp_copy (&x, &u)) != MP_OKAY) {
53 if ((res = mp_copy (&y, &v)) != MP_OKAY) {
63 if ((res = mp_div_2 (&u, &u)) != MP_OKAY) {
69 if ((res = mp_add (&A, &y, &A)) != MP_OKAY)
    [all...]
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_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_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_sub.c 22 int sa, sb, res; local
33 res = s_mp_add (a, b, c);
43 res = s_mp_sub (a, b, c);
49 res = s_mp_sub (b, a, c);
52 return res;
bn_mp_to_unsigned_bin.c 21 int x, res; local
24 if ((res = mp_init_copy (&t, a)) != MP_OKAY) {
25 return res;
35 if ((res = mp_div_2d (&t, 8, &t, NULL)) != MP_OKAY) {
37 return res;
  /frameworks/wilhelm/tests/mimeUri/
slesTestPlayUri.cpp 132 SLresult res; local
152 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
153 CheckErr(res);
167 res = (*EngineItf)->CreateOutputMix(EngineItf, &OutputMix, 0,
168 iidArray, required); CheckErr(res);
171 res = (*OutputMix)->Realize(OutputMix, SL_BOOLEAN_FALSE);
172 CheckErr(res);
191 res = (*EngineItf)->CreateAudioPlayer(EngineItf, &player, &audioSource, &audioSink,
192 MAX_NUMBER_INTERFACES, iidArray, required); CheckErr(res);
195 res = (*player)->Realize(player, SL_BOOLEAN_FALSE); CheckErr(res)
325 SLresult res; local
    [all...]
slesTestGetPositionUri.cpp 69 SLresult res = (*caller)->GetFillLevel(caller, &level); CheckErr(res); local
72 res = (*caller)->GetPrefetchStatus(caller, &status); CheckErr(res);
96 SLresult res; local
100 res = (*caller)->GetPosition(caller, &posMsec); CheckErr(res);
113 res = (*caller)->GetPosition(caller, &posMsec); CheckErr(res);
118 res = (*caller)->GetPosition(caller, &posMsec); CheckErr(res)
134 SLresult res; local
316 SLresult res; local
    [all...]
  /cts/tests/tests/nativemedia/xa/src/
XAObjectCreationTest.cpp 35 bool IsOk(XAresult res) {
36 if (XA_RESULT_SUCCESS != res) {
37 fprintf(stderr, "IsOk failure: 0x%x, exiting\n", res);
47 XAresult res; member in class:XAObjectCreationTest
73 res = XA_RESULT_UNKNOWN_ERROR;
79 res = xaCreateEngine(&engineObj, 0, NULL, 0, NULL, NULL);
80 ASSERT_TRUE(IsOk(res));
81 res = (*engineObj)->Realize(engineObj, XA_BOOLEAN_FALSE);
82 ASSERT_TRUE(IsOk(res));
83 res = (*engineObj)->GetInterface(engineObj, XA_IID_ENGINE, &engineItf)
    [all...]
  /dalvik/vm/compiler/codegen/arm/
ArmRallocUtil.cpp 78 RegLocation res = LOC_C_RETURN_WIDE; local
83 dvmCompilerMarkPair(cUnit, res.lowReg, res.highReg);
84 return res;
89 RegLocation res = LOC_C_RETURN_WIDE; local
90 res.lowReg = r2;
91 res.highReg = r3;
96 dvmCompilerMarkPair(cUnit, res.lowReg, res.highReg);
97 return res;
102 RegLocation res = LOC_C_RETURN; local
110 RegLocation res = LOC_C_RETURN; local
    [all...]
  /external/valgrind/main/none/tests/amd64/
lzcnt64.c 8 void do_lzcnt64 ( /*OUT*/UInt* flags, /*OUT*/ULong* res, ULong arg )
20 *res = block[1];
25 void do_lzcnt32 ( /*OUT*/UInt* flags, /*OUT*/ULong* res, ULong arg )
37 *res = block[1];
42 void do_lzcnt16 ( /*OUT*/UInt* flags, /*OUT*/ULong* res, ULong arg )
54 *res = block[1];
64 ULong res; local
66 do_lzcnt64(&flags, &res, w);
67 printf("lzcntq %016llx -> %016llx %04x\n", w, res, flags);
74 ULong res; local
84 ULong res; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalScaleOperationsTest.java 31 BigDecimal res = a.movePointRight(10); local
32 assertEquals("incorrect scale", 24, res.scale());
33 assertEquals("incorrect value", "123456789012345.678901234567890123456789", res.toString());
34 res = a.movePointRight(-50);
35 assertEquals("incorrect scale", 84, res.scale());
36 assertEquals("incorrect value", "1.23456789012345678901234567890123456789E-46", res.toString());
56 BigDecimal res = a.movePointRight(10); local
57 assertEquals("incorrect scale", 24, res.scale());
58 assertEquals("incorrect value", "123456789012345.678901234567890123456789", res.toString());
59 res = a.scaleByPowerOfTen(-50)
    [all...]
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 83 SIZE_T res = REAL(fread)(ptr, size, nmemb, file); local
84 if (res > 0)
85 __msan_unpoison(ptr, res *size);
86 return res;
92 SIZE_T res = REAL(fread_unlocked)(ptr, size, nmemb, file); local
93 if (res > 0)
94 __msan_unpoison(ptr, res *size);
95 return res;
100 SSIZE_T res = REAL(readlink)(path, buf, bufsiz); local
101 if (res > 0
144 SIZE_T res = REAL(strlen)(s); local
151 SIZE_T res = REAL(strnlen)(s, n); local
163 char *res = REAL(strcpy)(dest, src); \/\/ NOLINT local
173 char *res = REAL(strncpy)(dest, src, n); \/\/ NOLINT local
181 char *res = REAL(stpcpy)(dest, src); \/\/ NOLINT local
189 char *res = REAL(strdup)(src); local
197 char *res = REAL(__strdup)(src); local
205 char *res = REAL(strndup)(src, n); local
214 char *res = REAL(__strndup)(src, n); local
222 char *res = REAL(gcvt)(number, ndigit, buf); local
235 char *res = REAL(strcat)(dest, src); \/\/ NOLINT local
246 char *res = REAL(strncat)(dest, src, n); \/\/ NOLINT local
254 long res = REAL(strtol)(nptr, endptr, base); \/\/ NOLINT local
264 long res = REAL(strtoll)(nptr, endptr, base); \/\/NOLINT local
274 unsigned long res = REAL(strtoul)(nptr, endptr, base); \/\/ NOLINT local
284 unsigned long res = REAL(strtoull)(nptr, endptr, base); \/\/ NOLINT local
293 double res = REAL(strtod)(nptr, endptr); \/\/ NOLINT local
302 float res = REAL(strtof)(nptr, endptr); \/\/ NOLINT local
311 long double res = REAL(strtold)(nptr, endptr); \/\/ NOLINT local
320 int res = REAL(vasprintf)(strp, format, ap); local
332 int res = vasprintf(strp, format, ap); \/\/ NOLINT local
340 int res = REAL(vsnprintf)(str, size, format, ap); local
349 int res = REAL(vsprintf)(str, format, ap); local
358 int res = REAL(vswprintf)(str, size, format, ap); local
369 int res = vsprintf(str, format, ap); \/\/ NOLINT local
378 int res = vsnprintf(str, size, format, ap); local
387 int res = vswprintf(str, size, format, ap); local
396 SIZE_T res = REAL(strftime)(s, max, format, tm); local
403 int res = REAL(mbtowc)(dest, src, n); local
410 SIZE_T res = REAL(mbrtowc)(dest, src, n, ps); local
417 SIZE_T res = REAL(wcslen)(s); local
425 wchar_t *res = REAL(wcschr)(s, wc, ps); local
432 wchar_t *res = REAL(wcscpy)(dest, src); local
440 wchar_t *res = REAL(wmemcpy)(dest, src, n); local
447 wchar_t *res = REAL(wmempcpy)(dest, src, n); local
455 wchar_t *res = (wchar_t *)fast_memset(s, c, n * sizeof(wchar_t)); local
462 wchar_t *res = REAL(wmemmove)(dest, src, n); local
469 int res = REAL(wcscmp)(s1, s2); local
475 double res = REAL(wcstod)(nptr, endptr); local
504 int res = REAL(gettimeofday)(tv, tz); local
514 char *res = REAL(fcvt)(x, a, b, c); local
524 char *res = REAL(getenv)(name); local
546 int res = REAL(setenv)(name, value, overwrite); local
553 int res = REAL(putenv)(string); local
560 int res = REAL(__fxstat)(magic, fd, buf); local
568 int res = REAL(__fxstat64)(magic, fd, buf); local
576 int res = REAL(__xstat)(magic, path, buf); local
584 int res = REAL(__xstat64)(magic, path, buf); local
592 int res = REAL(__lxstat)(magic, path, buf); local
600 int res = REAL(__lxstat64)(magic, path, buf); local
610 int res = REAL(pipe)(pipefd); local
618 int res = REAL(pipe2)(pipefd, flags); local
626 int res = REAL(socketpair)(domain, type, protocol, sv); local
634 char *res = REAL(fgets)(s, size, stream); local
642 char *res = REAL(fgets_unlocked)(s, size, stream); local
652 int res = REAL(getrlimit)(resource, rlim); local
662 int res = REAL(getrlimit64)(resource, rlim); local
670 int res = REAL(statfs)(s, buf); local
678 int res = REAL(fstatfs)(fd, buf); local
686 int res = REAL(statfs64)(s, buf); local
694 int res = REAL(fstatfs64)(fd, buf); local
702 int res = REAL(uname)(utsname); local
711 int res = REAL(gethostname)(name, len); local
724 int res = REAL(epoll_wait)(epfd, events, maxevents, timeout); local
734 int res = REAL(epoll_pwait)(epfd, events, maxevents, timeout, sigmask); local
743 SSIZE_T res = REAL(recv)(fd, buf, len, flags); local
754 SSIZE_T res = REAL(recvfrom)(fd, buf, len, flags, srcaddr, addrlen); local
807 void *res = REAL(mmap)(addr, length, prot, flags, fd, offset); local
816 void *res = REAL(mmap64)(addr, length, prot, flags, fd, offset); local
831 int res = REAL(dladdr)(addr, info); local
886 int res = REAL(dl_iterate_phdr)(msan_dl_iterate_phdr_cb, (void *)&cbdata); local
893 int res = REAL(getrusage)(who, usage); local
925 int res; local
991 int res = REAL(pthread_create)(th, attr, callback, param); local
1003 int res = REAL(pthread_key_create)(key, dtor); local
1011 int res = REAL(pthread_join)(th, retval); local
1147 void *res = fast_memcpy(dest, src, n); local
1154 void *res = fast_memset(s, c, n); local
1161 void *res = REAL(memmove)(dest, src, n); local
    [all...]
  /external/valgrind/main/VEX/test/
test-i386-shift.h 10 #define EXECSHIFT(size, res, s1, s2, flags) \
16 : "=g" (res), "=g" (flags)\
17 : "r" (s1), "0" (res), "1" (flags));
19 #define EXECSHIFT(size, res, s1, s2, flags) \
25 : "=q" (res), "=g" (flags)\
26 : "c" (s1), "0" (res), "1" (flags));
31 int res, flags; local
32 res = s0;
34 EXECSHIFT("", res, s1, s2, flags);
39 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK)
44 int res, flags; local
67 int res, flags; local
80 int res, flags; local
96 int res, flags; local
    [all...]
  /external/valgrind/main/none/tests/x86/
bt_everything.c 9 unsigned char res; local
13 : "=m" (*base), "=q" (res)
18 return res;
23 unsigned char res; local
27 : "=m" (*base), "=q" (res)
29 return res;
34 unsigned char res; local
38 : "=m" (*base), "=q" (res)
40 return res;
45 unsigned char res; local
61 unsigned char res; local
79 unsigned char res; local
97 unsigned char res; local
115 unsigned char res; local
146 UInt carrydep, c, res; local
    [all...]
  /external/eigen/test/
sparse_permutations.cpp 27 OtherSparseMatrixType res; local
47 res = mat*p;
49 VERIFY(res.isApprox(res_d) && "mat*p");
51 res = p*mat;
53 VERIFY(res.isApprox(res_d) && "p*mat");
55 res = mat*p.inverse();
57 VERIFY(res.isApprox(res_d) && "mat*inv(p)");
59 res = p.inverse()*mat;
61 VERIFY(res.isApprox(res_d) && "inv(p)*mat");
63 res = mat.twistedBy(p)
    [all...]
  /dalvik/vm/compiler/codegen/mips/Mips32/
Ralloc.cpp 34 int res = 0; local
40 res = (lowReg & 0xff) | ((highReg & 0xff) << 8);
41 return res;
47 res = (lowReg & 0xff) | ((highReg & 0xff) << 8);
48 return res;
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
DirectoryEntry.java 19 import android.content.res.Resources;
37 public Drawable getDrawable(Resources res) {
38 return res.getDrawable(resID);
41 public Bitmap getBitmap(Resources res) {
42 return BitmapFactory.decodeResource(res, resID);
  /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/elfutils/libebl/
eblobjecttypename.c 66 const char *res; local
68 res = ebl != NULL ? ebl->object_type_name (object, buf, len) : NULL;
69 if (res == NULL)
80 res = buf;
83 return res;
  /external/llvm/bindings/ocaml/bitwriter/
bitwriter_ocaml.c 28 int res = LLVMWriteBitcodeToFile((LLVMModuleRef) M, String_val(Path)); local
29 return Val_bool(res == 0);
35 int res; local
43 res = LLVMWriteBitcodeToFD((LLVMModuleRef) M, Int_val(FD), 0, Unbuffered);
44 return Val_bool(res == 0);
  /external/smack/src/org/xbill/DNS/
ResolveThread.java 17 private Resolver res; field in class:ResolveThread
21 ResolveThread(Resolver res, Message query, Object id,
24 this.res = res;
37 Message response = res.send(query);
  /external/valgrind/main/memcheck/tests/
badjump2.c 22 int res; local
30 res = sigemptyset( &sigsegv_new.sa_mask );
31 assert(res == 0);
33 res = sigaction( SIGSEGV, &sigsegv_new, &sigsegv_saved );
34 assert(res == 0);
metadata.c 13 int i, sum, res; local
27 res = VALGRIND_GET_VBITS(a, v, 10*sizeof(int) );
28 printf("result of GET is %d (1 for success)\n", res);
34 res = VALGRIND_SET_VBITS(b, v, 10*sizeof(int) );
35 printf("result of SET is %d (1 for success)\n", res);

Completed in 518 milliseconds

1 2 3 4 5 6 78 91011>>