Searched defs:res (Results 126 - 150 of 2103) sorted by relevance

1234567891011>>

/external/valgrind/main/memcheck/tests/linux/
H A Dbrk.c15 void* res __attribute__((unused)); local
30 res = (void*)syscall(__NR_brk, vals[i]);
36 res = (void*)(long)brk(vals[i]);
/external/valgrind/main/memcheck/tests/
H A Dmetadata.c13 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);
/external/valgrind/main/none/tests/amd64/
H A Dclc.c8 ULong res; local
15 : "=r"(res)
19 return res;
24 ULong res; local
31 : "=r"(res)
35 return res;
40 ULong res; local
48 : "=r"(res)
52 return res;
/external/valgrind/main/none/tests/ppc32/
H A Dmftocrf.c9 int res; local
24 : /*w*/"=b"(res) : /*r*/ );
26 res = 42;
28 return res;
34 int res; local
45 : /*w*/"=b"(res) : /*r*/ );
47 res = 42;
49 return res;
/external/apache-xml/src/main/java/org/apache/xalan/res/
H A DXSLMessages.java21 package org.apache.xalan.res;
25 import org.apache.xpath.res.XPATHMessages;
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DXResourceBundleBase.java21 package org.apache.xml.utils.res;
/external/bison/examples/calc++/
H A Dcalc++-driver.cc23 int res = parser.parse (); local
25 return res;
/external/chromium_org/sandbox/linux/bpf_dsl/
H A Dcons_unittest.cc15 std::string res; local
17 res.push_back(it->head());
19 return res;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_debug_describe.c70 char res[128]; local
71 debug_describe_resource(res, ptr->texture);
72 util_sprintf(buf, "pipe_surface<%s,%u,%u,%u>", res, ptr->u.tex.level, ptr->u.tex.first_layer, ptr->u.tex.last_layer);
78 char res[128]; local
79 debug_describe_resource(res, ptr->texture);
80 util_sprintf(buf, "pipe_sampler_view<%s,%s>", res, util_format_short_name(ptr->format));
87 char res[128]; local
88 debug_describe_resource(res, ptr->buffer);
89 util_sprintf(buf, "pipe_stream_output_target<%s,%u,%u>", res,
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_resource.c52 void r600_resource_destroy(struct pipe_screen *screen, struct pipe_resource *res) argument
54 if (res->target == PIPE_BUFFER && (res->bind & PIPE_BIND_GLOBAL)) {
55 r600_compute_global_buffer_destroy(screen, res);
57 u_resource_destroy_vtbl(screen, res);
/external/chromium_org/third_party/opus/src/silk/arm/
H A DSigProc_FIX_armv5e.h35 opus_int32 res; local
39 : "=r"(res)
42 return res;
50 opus_int32 res; local
54 : "=r"(res)
57 return res;
/external/chromium_org/third_party/skia/src/effects/
H A DSkPixelXorXfermode.cpp19 SkPMColor res = src ^ dst ^ fOpColor; local
20 res |= (SK_A32_MASK << SK_A32_SHIFT); // force it to be opaque
21 return res;
/external/chromium_org/tools/cygprofile/
H A Drun_tests21 res = unittest.TextTestRunner(verbosity=2).run(suite) variable
22 if res.wasSuccessful():
/external/chromium_org/tools/memory_inspector/
H A Drun_tests22 res = unittest.TextTestRunner(verbosity=2).run(suite) variable
23 if res.wasSuccessful():
/external/clang/test/CodeGenCXX/
H A Dvirtual-base-destructor-call.cpp14 basic_iostream<char> res; variable
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dwait.cc28 int res; local
30 res = wait(status);
32 res = waitpid(pid, status, WNOHANG);
34 res = wait3(status, WNOHANG, NULL);
36 res = wait4(pid, status, WNOHANG, NULL);
41 res = wait3(&good_status, WNOHANG, ru);
43 res = wait4(pid, &good_status, WNOHANG, ru);
52 return res == -1 ? 1 : 0;
H A Dwaitid.cc13 int res; local
16 res = waitid(P_ALL, 0, si, WEXITED | WNOHANG);
23 return res != -1;
/external/compiler-rt/test/asan/TestCases/
H A Dinit-order-pthread-create.cc17 void *res; local
18 pthread_join(t, &res);
19 return res;
H A Dstack-buffer-overflow-with-position.cc27 int res = 0; local
H A Dstack-frame-demangle.cc20 int res = XXX::YYY::ZZZ(argc + 10); local
21 return res;
/external/compiler-rt/test/lsan/TestCases/
H A Dcleanup_in_tsd_destructor.cc29 int res = pthread_setspecific(key, (void*)1); local
30 assert(res == 0);
35 int res = pthread_key_create(&key, &key_destructor); local
36 assert(res == 0);
38 res = pthread_create(&thread_id, 0, thread_func, 0);
39 assert(res == 0);
40 res = pthread_join(thread_id, 0);
41 assert(res == 0);
H A Ddisabler_in_tsd_destructor.cc24 int res = pthread_setspecific(key, (void*)1); local
25 assert(res == 0);
30 int res = pthread_key_create(&key, &key_destructor); local
31 assert(res == 0);
33 res = pthread_create(&thread_id, 0, thread_func, 0);
34 assert(res == 0);
35 res = pthread_join(thread_id, 0);
36 assert(res == 0);
H A Dfork_threaded.cc21 int res; local
22 res = pthread_create(&tid, 0, exit_thread_func, 0);
23 assert(res == 0);
/external/compiler-rt/test/msan/Linux/
H A Dsunrpc.cc27 bool_t res = FN(&xdrs, &x); local
30 assert(res == TRUE);
35 res = FN(&xdrs, &y);
36 assert(res == TRUE);
H A Dsunrpc_string.cc21 bool_t res = xdr_string(&xdrs, &sp, sizeof(s)); local
24 assert(res == TRUE);
30 res = xdr_string(&xdrs, &sp2, sizeof(s2));
31 assert(res == TRUE);

Completed in 457 milliseconds

1234567891011>>