Home
last modified time | relevance | path

Searched refs:res (Results 1 – 25 of 2394) sorted by relevance

12345678910>>...96

/external/chromium_org/v8/test/mjsunit/third_party/
Dregexp-pcre.js78 var res = new Array(); variable
79 res[0] = /(a)b|/i;
80 res[1] = /abc/i;
81 res[2] = /^abc/i;
82 res[3] = /a+bc/i;
83 res[4] = /a*bc/i;
84 res[5] = /a{3}bc/i;
85 res[6] = /(abc|a+z)/i;
86 res[7] = /^abc$/i;
87 res[8] = /ab\idef/;
[all …]
/external/v8/test/mjsunit/third_party/
Dregexp-pcre.js78 var res = new Array(); variable
79 res[0] = /(a)b|/i;
80 res[1] = /abc/i;
81 res[2] = /^abc/i;
82 res[3] = /a+bc/i;
83 res[4] = /a*bc/i;
84 res[5] = /a{3}bc/i;
85 res[6] = /(abc|a+z)/i;
86 res[7] = /^abc$/i;
87 res[8] = /ab\idef/;
[all …]
/external/compiler-rt/include/sanitizer/
Dlinux_syscall_hooks.h38 void __sanitizer_syscall_post_rt_sigpending(long res, void *p, size_t s);
39 void __sanitizer_syscall_post_getdents(long res, int fd, void *dirp, int count);
40 void __sanitizer_syscall_post_getdents64(long res, int fd, void *dirp,
42 void __sanitizer_syscall_post_recvmsg(long res, int sockfd, void *msg,
44 void __sanitizer_syscall_post_wait4(long res, int pid, int *status, int options,
46 void __sanitizer_syscall_post_waitpid(long res, int pid, int *status,
48 void __sanitizer_syscall_post_clock_gettime(long res, int clk_id, void *tp);
49 void __sanitizer_syscall_post_clock_getres(long res, int clk_id, void *tp);
50 void __sanitizer_syscall_post_read(long res, unsigned int fd, void *buf,
427 #define __sanitizer_syscall_post_accept4(res, ...) argument
[all …]
/external/speex/libspeex/
Dfixed_debug.h52 int res; in NEG16() local
57 res = -x; in NEG16()
58 if (!VERIFY_SHORT(res)) in NEG16()
59 fprintf (stderr, "NEG16: output is not short: %d\n", (int)res); in NEG16()
61 return res; in NEG16()
65 long long res; in NEG32() local
70 res = -x; in NEG32()
71 if (!VERIFY_INT(res)) in NEG32()
72 fprintf (stderr, "NEG16: output is not int: %d\n", (int)res); in NEG32()
74 return res; in NEG32()
[all …]
/external/valgrind/main/none/tests/x86/
Dmovx.c6 int res; in movzbw_1() local
12 : "=r"(res) : : "eax" in movzbw_1()
14 return res; in movzbw_1()
19 int res; in movzbw_2() local
25 : "=r"(res) : : "eax" in movzbw_2()
27 return res; in movzbw_2()
32 int res; in movzbl_1() local
38 : "=r"(res) : : "eax" in movzbl_1()
40 return res; in movzbl_1()
45 int res; in movzbl_2() local
[all …]
/external/valgrind/main/VEX/priv/
Dhost_generic_simd128.c133 h_generic_calc_Mul32x4 ( /*OUT*/V128* res, in h_generic_calc_Mul32x4() argument
136 res->w32[0] = mul32(argL->w32[0], argR->w32[0]); in h_generic_calc_Mul32x4()
137 res->w32[1] = mul32(argL->w32[1], argR->w32[1]); in h_generic_calc_Mul32x4()
138 res->w32[2] = mul32(argL->w32[2], argR->w32[2]); in h_generic_calc_Mul32x4()
139 res->w32[3] = mul32(argL->w32[3], argR->w32[3]); in h_generic_calc_Mul32x4()
143 h_generic_calc_Max32Sx4 ( /*OUT*/V128* res, in h_generic_calc_Max32Sx4() argument
146 res->w32[0] = max32S(argL->w32[0], argR->w32[0]); in h_generic_calc_Max32Sx4()
147 res->w32[1] = max32S(argL->w32[1], argR->w32[1]); in h_generic_calc_Max32Sx4()
148 res->w32[2] = max32S(argL->w32[2], argR->w32[2]); in h_generic_calc_Max32Sx4()
149 res->w32[3] = max32S(argL->w32[3], argR->w32[3]); in h_generic_calc_Max32Sx4()
[all …]
/external/linux-tools-perf/util/
Dhweight.c18 unsigned int res = w - ((w >> 1) & 0x55555555); in hweight32() local
19 res = (res & 0x33333333) + ((res >> 2) & 0x33333333); in hweight32()
20 res = (res + (res >> 4)) & 0x0F0F0F0F; in hweight32()
21 res = res + (res >> 8); in hweight32()
22 return (res + (res >> 16)) & 0x000000FF; in hweight32()
30 __u64 res = w - ((w >> 1) & 0x5555555555555555ul); in hweight64()
31 res = (res & 0x3333333333333333ul) + ((res >> 2) & 0x3333333333333333ul); in hweight64()
32 res = (res + (res >> 4)) & 0x0F0F0F0F0F0F0F0Ful; in hweight64()
33 res = res + (res >> 8); in hweight64()
34 res = res + (res >> 16); in hweight64()
[all …]
/external/chromium_org/third_party/opus/src/celt/
Dfixed_debug.h64 int res; in NEG16() local
72 res = -x; in NEG16()
73 if (!VERIFY_SHORT(res)) in NEG16()
75 fprintf (stderr, "NEG16: output is not short: %d\n", (int)res); in NEG16()
81 return res; in NEG16()
85 opus_int64 res; in NEG32() local
93 res = -x; in NEG32()
94 if (!VERIFY_INT(res)) in NEG32()
96 fprintf (stderr, "NEG16: output is not int: %d\n", (int)res); in NEG32()
102 return res; in NEG32()
[all …]
/external/v8/test/mjsunit/
Dswitch.js186 var res = 0;
189 case 0: res += 0; break;
190 case 1: res += 1; break;
191 case 2: res += 2; break;
192 case 3: res += 3; break;
193 case 4: res += 4; break;
194 case 5: res += 5; break;
195 case 6: res += 6; break;
196 case 7: res += 7; break;
197 case 8: res += 8; break;
[all …]
/external/chromium_org/v8/test/mjsunit/
Dswitch.js186 var res = 0;
189 case 0: res += 0; break;
190 case 1: res += 1; break;
191 case 2: res += 2; break;
192 case 3: res += 3; break;
193 case 4: res += 4; break;
194 case 5: res += 5; break;
195 case 6: res += 6; break;
196 case 7: res += 7; break;
197 case 8: res += 8; break;
[all …]
/external/libvpx/libvpx/test/
Dsvc_test.cc50 const vpx_codec_err_t res = in SetUp() local
52 EXPECT_EQ(VPX_CODEC_OK, res); in SetUp()
83 vpx_codec_err_t res = vpx_svc_init(NULL, &codec_, codec_iface_, &codec_enc_); in TEST_F() local
84 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, res); in TEST_F()
85 res = vpx_svc_init(&svc_, NULL, codec_iface_, &codec_enc_); in TEST_F()
86 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, res); in TEST_F()
87 res = vpx_svc_init(&svc_, &codec_, NULL, &codec_enc_); in TEST_F()
88 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, res); in TEST_F()
90 res = vpx_svc_init(&svc_, &codec_, codec_iface_, NULL); in TEST_F()
91 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, res); in TEST_F()
[all …]
/external/compiler-rt/lib/tsan/rtl/
Dtsan_sync.cc64 SyncVar *res = new(mem) SyncVar(addr, uid); in Create() local
66 res->creation_stack_id = CurrentStackId(thr, pc); in Create()
68 return res; in Create()
75 SyncVar *res = GetJavaSync(thr, pc, addr, write_lock, create); in GetAndLock() local
76 if (res) in GetAndLock()
77 return res; in GetAndLock()
87 SyncVar *res = 0; in GetAndLock() local
88 for (res = b->ListHead(); res; res = res->next) { in GetAndLock()
89 if (res->addr == addr) in GetAndLock()
92 if (res == 0) { in GetAndLock()
[all …]
/external/valgrind/main/memcheck/tests/amd64/
Dbt_everything.c20 UChar res; in btsq_mem() local
24 : "=m" (*base), "=q" (res) in btsq_mem()
29 return res; in btsq_mem()
34 UChar res; in btrq_mem() local
38 : "=m" (*base), "=q" (res) in btrq_mem()
40 return res; in btrq_mem()
45 UChar res; in btcq_mem() local
49 : "=m" (*base), "=q" (res) in btcq_mem()
51 return res; in btcq_mem()
56 UChar res; in btq_mem() local
[all …]
/external/compiler-rt/lib/msan/
Dmsan_interceptors.cc83 SIZE_T res = REAL(fread)(ptr, size, nmemb, file); in INTERCEPTOR() local
84 if (res > 0) in INTERCEPTOR()
85 __msan_unpoison(ptr, res *size); in INTERCEPTOR()
86 return res; in INTERCEPTOR()
92 SIZE_T res = REAL(fread_unlocked)(ptr, size, nmemb, file); in INTERCEPTOR() local
93 if (res > 0) in INTERCEPTOR()
94 __msan_unpoison(ptr, res *size); in INTERCEPTOR()
95 return res; in INTERCEPTOR()
100 SSIZE_T res = REAL(readlink)(path, buf, bufsiz); in INTERCEPTOR() local
101 if (res > 0) in INTERCEPTOR()
[all …]
/external/dropbear/libtommath/
Dbn_mp_toom_mul.c28 int res, B; in mp_toom_mul() local
31 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, in mp_toom_mul()
34 return res; in mp_toom_mul()
41 if ((res = mp_mod_2d(a, DIGIT_BIT * B, &a0)) != MP_OKAY) { in mp_toom_mul()
45 if ((res = mp_copy(a, &a1)) != MP_OKAY) { in mp_toom_mul()
51 if ((res = mp_copy(a, &a2)) != MP_OKAY) { in mp_toom_mul()
57 if ((res = mp_mod_2d(b, DIGIT_BIT * B, &b0)) != MP_OKAY) { in mp_toom_mul()
61 if ((res = mp_copy(b, &b1)) != MP_OKAY) { in mp_toom_mul()
67 if ((res = mp_copy(b, &b2)) != MP_OKAY) { in mp_toom_mul()
73 if ((res = mp_mul(&a0, &b0, &w0)) != MP_OKAY) { in mp_toom_mul()
[all …]
Dbn_mp_toom_sqr.c23 int res, B; in mp_toom_sqr() local
26 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) { in mp_toom_sqr()
27 return res; in mp_toom_sqr()
34 if ((res = mp_mod_2d(a, DIGIT_BIT * B, &a0)) != MP_OKAY) { in mp_toom_sqr()
38 if ((res = mp_copy(a, &a1)) != MP_OKAY) { in mp_toom_sqr()
44 if ((res = mp_copy(a, &a2)) != MP_OKAY) { in mp_toom_sqr()
50 if ((res = mp_sqr(&a0, &w0)) != MP_OKAY) { in mp_toom_sqr()
55 if ((res = mp_sqr(&a2, &w4)) != MP_OKAY) { in mp_toom_sqr()
60 if ((res = mp_mul_2(&a0, &tmp1)) != MP_OKAY) { in mp_toom_sqr()
63 if ((res = mp_add(&tmp1, &a1, &tmp1)) != MP_OKAY) { in mp_toom_sqr()
[all …]
/external/bison/src/
Dsymlist.c35 symbol_list *res = xmalloc (sizeof *res); in symbol_list_sym_new() local
37 res->content_type = SYMLIST_SYMBOL; in symbol_list_sym_new()
38 res->content.sym = sym; in symbol_list_sym_new()
39 res->location = res->sym_loc = loc; in symbol_list_sym_new()
41 res->midrule = NULL; in symbol_list_sym_new()
42 res->midrule_parent_rule = NULL; in symbol_list_sym_new()
43 res->midrule_parent_rhs_index = 0; in symbol_list_sym_new()
45 code_props_none_init (&res->action_props); in symbol_list_sym_new()
47 res->ruleprec = NULL; in symbol_list_sym_new()
48 res->dprec = 0; in symbol_list_sym_new()
[all …]
/external/libvpx/libvpx/vpx/src/
Dvpx_decoder.c26 vpx_codec_err_t res; in vpx_codec_dec_init_ver() local
29 res = VPX_CODEC_ABI_MISMATCH; in vpx_codec_dec_init_ver()
31 res = VPX_CODEC_INVALID_PARAM; in vpx_codec_dec_init_ver()
33 res = VPX_CODEC_ABI_MISMATCH; in vpx_codec_dec_init_ver()
35 res = VPX_CODEC_INCAPABLE; in vpx_codec_dec_init_ver()
37 res = VPX_CODEC_INCAPABLE; in vpx_codec_dec_init_ver()
40 res = VPX_CODEC_INCAPABLE; in vpx_codec_dec_init_ver()
43 res = VPX_CODEC_INCAPABLE; in vpx_codec_dec_init_ver()
45 res = VPX_CODEC_INCAPABLE; in vpx_codec_dec_init_ver()
53 res = VPX_CODEC_OK; in vpx_codec_dec_init_ver()
[all …]
/external/valgrind/main/coregrind/
Dm_libcfile.c110 SysRes res = VG_(do_syscall3)(__NR_mknod, in VG_() local
115 return res; in VG_()
121 SysRes res = VG_(do_syscall3)(__NR_open, in VG_() local
124 SysRes res = VG_(do_syscall3)(__NR_open_nocancel, in VG_()
129 return res; in VG_()
158 SysRes res = VG_(do_syscall3)(__NR_read, fd, (UWord)buf, count); in VG_() local
160 SysRes res = VG_(do_syscall3)(__NR_read_nocancel, fd, (UWord)buf, count); in VG_() local
164 if (sr_isError(res)) { in VG_()
165 ret = - (Int)(Word)sr_Err(res); in VG_()
168 ret = (Int)(Word)sr_Res(res); in VG_()
[all …]
/external/chromium_org/third_party/opus/src/silk/arm/
Dmacros_armv5e.h36 int res; in silk_SMULWB_armv5e() local
40 : "=r"(res) in silk_SMULWB_armv5e()
43 return res; in silk_SMULWB_armv5e()
52 int res; in silk_SMLAWB_armv5e() local
56 : "=r"(res) in silk_SMLAWB_armv5e()
59 return res; in silk_SMLAWB_armv5e()
67 int res; in silk_SMULWT_armv5e() local
71 : "=r"(res) in silk_SMULWT_armv5e()
74 return res; in silk_SMULWT_armv5e()
83 int res; in silk_SMLAWT_armv5e() local
[all …]
/external/eigen/test/
Dsparse_permutations.cpp27 OtherSparseMatrixType res; in sparse_permutations() local
47 res = mat*p; in sparse_permutations()
49 VERIFY(res.isApprox(res_d) && "mat*p"); in sparse_permutations()
51 res = p*mat; in sparse_permutations()
53 VERIFY(res.isApprox(res_d) && "p*mat"); in sparse_permutations()
55 res = mat*p.inverse(); in sparse_permutations()
57 VERIFY(res.isApprox(res_d) && "mat*inv(p)"); in sparse_permutations()
59 res = p.inverse()*mat; in sparse_permutations()
61 VERIFY(res.isApprox(res_d) && "inv(p)*mat"); in sparse_permutations()
63 res = mat.twistedBy(p); in sparse_permutations()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
Devergreen_compute_internal.c58 struct evergreen_compute_resource* res, in evergreen_emit_raw_value() argument
61 res->cs[res->cs_end++] = value; in evergreen_emit_raw_value()
70 struct evergreen_compute_resource* res, in evergreen_mult_reg_set_() argument
77 evergreen_emit_raw_reg_set(res, index, size / 4); in evergreen_mult_reg_set_()
80 res->cs[res->cs_end++] = array[i / 4]; in evergreen_mult_reg_set_()
85 struct evergreen_compute_resource* res, in evergreen_reg_set() argument
89 evergreen_emit_raw_reg_set(res, index, 1); in evergreen_reg_set()
90 res->cs[res->cs_end++] = value; in evergreen_reg_set()
113 struct evergreen_compute_resource* res = &pipe->resources[index]; in get_empty_res() local
115 res->enabled = true; in get_empty_res()
[all …]
/external/mesa3d/src/gallium/drivers/r600/
Devergreen_compute_internal.c58 struct evergreen_compute_resource* res, in evergreen_emit_raw_value() argument
61 res->cs[res->cs_end++] = value; in evergreen_emit_raw_value()
70 struct evergreen_compute_resource* res, in evergreen_mult_reg_set_() argument
77 evergreen_emit_raw_reg_set(res, index, size / 4); in evergreen_mult_reg_set_()
80 res->cs[res->cs_end++] = array[i / 4]; in evergreen_mult_reg_set_()
85 struct evergreen_compute_resource* res, in evergreen_reg_set() argument
89 evergreen_emit_raw_reg_set(res, index, 1); in evergreen_reg_set()
90 res->cs[res->cs_end++] = value; in evergreen_reg_set()
113 struct evergreen_compute_resource* res = &pipe->resources[index]; in get_empty_res() local
115 res->enabled = true; in get_empty_res()
[all …]
/external/stlport/test/unit/
Dctype_facets_test.cpp46 ctype_base::mask res[sizeof(values)]; in _ctype_facet() local
47 ct.is(values, values + sizeof(values), res); in _ctype_facet()
49 CPPUNIT_ASSERT( (res[0] & ctype_base::print) != 0 ); in _ctype_facet()
50 CPPUNIT_ASSERT( (res[0] & ctype_base::digit) != 0 ); in _ctype_facet()
51 CPPUNIT_ASSERT( (res[0] & ctype_base::xdigit) != 0 ); in _ctype_facet()
53 CPPUNIT_ASSERT( (res[1] & ctype_base::print) != 0 ); in _ctype_facet()
54 CPPUNIT_ASSERT( (res[1] & ctype_base::alpha) != 0 ); in _ctype_facet()
55 CPPUNIT_ASSERT( (res[1] & ctype_base::xdigit) != 0 ); in _ctype_facet()
56 CPPUNIT_ASSERT( (res[1] & ctype_base::upper) != 0 ); in _ctype_facet()
58 CPPUNIT_ASSERT( (res[2] & ctype_base::print) != 0 ); in _ctype_facet()
[all …]
/external/icu4c/stubdata/
Dicu-data-default.txt7 brkitr/res_index.res
8 brkitr/root.res
17 coll/res_index.res
18 coll/root.res
20 # coll/ps.res is needed for fa_AF.
21 coll/ps.res
23 curr/pool.res
24 curr/res_index.res
25 curr/root.res
26 curr/supplementalData.res
[all …]

12345678910>>...96