Searched refs:res (Results 251 - 275 of 3022) sorted by relevance

<<11121314151617181920>>

/external/qemu/target-arm/
H A Dop_addsub.h21 res |= ((uint32_t)(glue(glue(uint,width),_t))(val)) << (n * width)
25 uint32_t res = 0; local
31 return res;
36 uint32_t res = 0; local
44 return res;
49 uint32_t res = 0; local
55 return res;
60 uint32_t res = 0; local
68 return res;
73 uint32_t res local
84 uint32_t res = 0; local
[all...]
/external/valgrind/main/VEX/test/
H A Dtest-amd64.h8 #define EXECOP2(size, res, s1, flags) \
14 : "=q" (res), "=g" (flags)\
15 : "q" (s1), "0" (res), "1" (flags));
17 #define EXECOP1(size, res, flags) \
23 : "=q" (res), "=g" (flags)\
24 : "0" (res), "1" (flags));
29 int64 res, flags; local
30 res = s0;
32 EXECOP1("", res, flags);
34 stringify(OP) "q", s0, res, iflag
38 int64 res, flags; local
47 int64 res, flags; local
56 int64 res, flags; local
66 int64 res, flags; local
76 int64 res, flags; local
86 int64 res, flags; local
96 int64 res, flags; local
[all...]
/external/valgrind/main/coregrind/m_ume/
H A Dmain.c71 SysRes res; local
77 res = VG_(open)(exe_name, VKI_O_RDONLY, 0);
78 if (sr_isError(res)) {
79 return res;
81 fd = sr_Res(res);
103 res = VG_(pread)(fd, buf, bufsz, 0);
104 if (sr_isError(res) || sr_Res(res) != bufsz) {
108 bufsz = sr_Res(res);
113 res
139 SysRes res; local
160 SysRes res = VG_(open)(f, VKI_O_RDONLY, 0); local
176 SysRes res = VG_(open)(f, VKI_O_RDONLY, 0); local
209 SysRes res; local
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-liveedit-patch-positions.js41 "/*$*/ var res/*$*/ =/*$*/ (function() { return 'Cat'; } )();\n" +
45 "/*$*/ return/*$*/ res/*$*/ + z;/*$*/ }\n" +
63 var res = new Array();
74 res.push(pc);
77 return res;
81 var res = ChooseAnimal();
82 assertEquals(orig_animal + "15", res);
103 var res = ChooseAnimal();
104 assertEquals(new_animal + "15", res);
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dptrace.cc25 int res; local
30 res = ptrace(PTRACE_GETREGS, pid, NULL, pregs);
33 assert(!res);
41 res = ptrace(PTRACE_GETFPREGS, pid, NULL, &fpregs);
42 assert(!res);
47 res = ptrace(PTRACE_GETFPXREGS, pid, NULL, &fpxregs);
48 assert(!res);
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dptrace.cc22 int res; local
23 res = ptrace(PTRACE_GETREGS, pid, NULL, &regs);
24 assert(!res);
29 res = ptrace(PTRACE_GETFPREGS, pid, NULL, &fpregs);
30 assert(!res);
35 res = ptrace(PTRACE_GETSIGINFO, pid, NULL, &siginfo);
36 assert(!res);
/external/chromium_org/third_party/libwebp/enc/
H A Dcost.c492 static int GetResidualCost(int ctx0, const VP8Residual* const res) { argument
493 int n = res->first;
495 const int p0 = res->prob[n][ctx0][0];
496 const uint16_t* t = res->cost[n][ctx0];
502 if (res->last < 0) {
505 for (; n < res->last; ++n) {
506 const int v = abs(res->coeffs[n]);
510 t = res->cost[b][ctx];
514 const int v = abs(res->coeffs[n]);
520 const int last_p0 = res
552 VP8InitResidual(int first, int coeff_type, VP8Encoder* const enc, VP8Residual* const res) argument
561 SetResidualCoeffs(const int16_t* const coeffs, VP8Residual* const res) argument
601 VP8Residual res; local
614 VP8Residual res; local
640 VP8Residual res; local
682 VP8RecordCoeffs(int ctx, const VP8Residual* const res) argument
[all...]
/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/nouveau/
H A Dnouveau_heap.c55 struct nouveau_heap **res)
59 if (!heap || !size || !res || *res)
81 *res = r;
92 nouveau_heap_free(struct nouveau_heap **res) argument
96 if (!res || !*res)
98 r = *res;
99 *res = NULL;
54 nouveau_heap_alloc(struct nouveau_heap *heap, unsigned size, void *priv, struct nouveau_heap **res) argument
/external/iproute2/lib/
H A Drt_names.c159 static unsigned long res; local
164 *id = res;
175 res = i;
176 *id = res;
181 res = strtoul(arg, &end, 0);
182 if (!end || end == arg || *end || res > 255)
184 *id = res;
226 static unsigned long res; local
231 *id = res;
242 res
290 static unsigned long res; local
361 static unsigned long res; local
427 static unsigned long res; local
475 static unsigned long res; local
[all...]
/external/mesa3d/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/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_heap.c55 struct nouveau_heap **res)
59 if (!heap || !size || !res || *res)
81 *res = r;
92 nouveau_heap_free(struct nouveau_heap **res) argument
96 if (!res || !*res)
98 r = *res;
99 *res = NULL;
54 nouveau_heap_alloc(struct nouveau_heap *heap, unsigned size, void *priv, struct nouveau_heap **res) argument
/external/webp/src/enc/
H A Dcost.c492 static int GetResidualCost(int ctx0, const VP8Residual* const res) { argument
493 int n = res->first;
495 const int p0 = res->prob[n][ctx0][0];
496 const uint16_t* t = res->cost[n][ctx0];
502 if (res->last < 0) {
505 for (; n < res->last; ++n) {
506 const int v = abs(res->coeffs[n]);
510 t = res->cost[b][ctx];
514 const int v = abs(res->coeffs[n]);
520 const int last_p0 = res
552 VP8InitResidual(int first, int coeff_type, VP8Encoder* const enc, VP8Residual* const res) argument
561 SetResidualCoeffs(const int16_t* const coeffs, VP8Residual* const res) argument
601 VP8Residual res; local
614 VP8Residual res; local
640 VP8Residual res; local
682 VP8RecordCoeffs(int ctx, const VP8Residual* const res) argument
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DReplyPacket.java87 byte res[] = super.toBytesArray();
88 super.writeAtByteArray(error_code, res, ERROR_CODE_INDEX,
90 return res;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
H A DDigestOutputStream.java36 byte[] res = new byte[digest.getDigestSize()];
38 digest.doFinal(res, 0);
40 return res;
H A DMacOutputStream.java36 byte[] res = new byte[mac.getMacSize()];
38 mac.doFinal(res, 0);
40 return res;
/external/chromium_org/base/strings/
H A Dsys_string_conversions_posix.cc55 size_t res = src ? wcrtomb(buf, src, &ps) : 0; local
56 switch (res) {
66 num_out_chars += res;
83 size_t res = src ? wcrtomb(&out[j], src, &ps) : 0; local
84 switch (res) {
94 j += res;
111 size_t res = mbrtowc(NULL, src, native_mb.size() - i, &ps); local
112 switch (res) {
122 i += res;
140 size_t res local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_gather.c86 LLVMValueRef res; local
92 res = LLVMBuildLoad(gallivm->builder, ptr, "");
96 res = LLVMBuildTrunc(gallivm->builder, res, dst_elem_type, "");
98 res = LLVMBuildZExt(gallivm->builder, res, dst_elem_type, "");
100 return res;
123 LLVMValueRef res; local
137 res = LLVMGetUndef(dst_vec_type);
144 res
[all...]
/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/third_party/webrtc/modules/video_coding/utility/
H A Dquality_scaler.cc59 Resolution res; local
60 res.width = frame.width();
61 res.height = frame.height();
65 shift > 0 && res.width > 1 && res.height > 1;
67 res.width >>= 1;
68 res.height >>= 1;
71 return res;
76 Resolution res = GetScaledResolution(frame); local
77 if (res
[all...]
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dsystem_info_backend.py24 res = websocket.SyncRequest(req, timeout)
27 if 'error' in res:
30 camel_case.ToUnderscore(res['result']))
/external/chromium_org/v8/src/mips/
H A Dcpu-mips.cc40 int res; local
42 res = syscall(__NR_cacheflush, start, size, ICACHE);
43 if (res) {
/external/chromium_org/v8/src/mips64/
H A Dcpu-mips64.cc40 int res; local
42 res = syscall(__NR_cacheflush, start, size, ICACHE);
43 if (res) {
/external/compiler-rt/test/lsan/TestCases/
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/tsan/
H A Dstatic_init5.cc21 void *res; local
22 pthread_join(t, &res);
23 return (Cache*)res;

Completed in 814 milliseconds

<<11121314151617181920>>