Home
last modified time | relevance | path

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

12345678910>>...69

/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/icu4c/stubdata/
Dicu-data-default.txt1 brkitr/res_index.res
2 brkitr/root.res
5 brkitr/el.res
6 brkitr/en.res
7 brkitr/en_US.res
8 brkitr/en_US_POSIX.res
9 brkitr/fi.res
10 brkitr/ja.res
21 coll/res_index.res
24 coll/root.res
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
Dregress-96526-003.js53 var res = "";
61 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
66 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
71 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
76 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
81 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
86res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
91res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
96res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
101res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
[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 …]
Dbt_everything.c9 unsigned char res; in btsl_mem() local
13 : "=m" (*base), "=q" (res) in btsl_mem()
18 return res; in btsl_mem()
23 unsigned char res; in btrl_mem() local
27 : "=m" (*base), "=q" (res) in btrl_mem()
29 return res; in btrl_mem()
34 unsigned char res; in btcl_mem() local
38 : "=m" (*base), "=q" (res) in btcl_mem()
40 return res; in btcl_mem()
45 unsigned char res; in btl_mem() 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/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/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/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()
86 SyncVar *res = 0; in GetAndLock() local
87 for (res = b->ListHead(); res; res = res->next) { in GetAndLock()
88 if (res->addr == addr) in GetAndLock()
91 if (res == 0) { in GetAndLock()
[all …]
/external/compiler-rt/lib/msan/
Dmsan_interceptors.cc64 SIZE_T res = REAL(fread)(ptr, size, nmemb, file); in INTERCEPTOR() local
65 if (res > 0) in INTERCEPTOR()
66 __msan_unpoison(ptr, res *size); in INTERCEPTOR()
67 return res; in INTERCEPTOR()
73 SIZE_T res = REAL(fread_unlocked)(ptr, size, nmemb, file); in INTERCEPTOR() local
74 if (res > 0) in INTERCEPTOR()
75 __msan_unpoison(ptr, res *size); in INTERCEPTOR()
76 return res; in INTERCEPTOR()
81 SSIZE_T res = REAL(readlink)(path, buf, bufsiz); in INTERCEPTOR() local
82 if (res > 0) in INTERCEPTOR()
[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/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/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/libvpx/libvpx/vpx/src/
Dvpx_decoder.c27 vpx_codec_err_t res; in vpx_codec_dec_init_ver() local
30 res = VPX_CODEC_ABI_MISMATCH; in vpx_codec_dec_init_ver()
32 res = VPX_CODEC_INVALID_PARAM; in vpx_codec_dec_init_ver()
34 res = VPX_CODEC_ABI_MISMATCH; in vpx_codec_dec_init_ver()
36 res = VPX_CODEC_INCAPABLE; in vpx_codec_dec_init_ver()
38 res = VPX_CODEC_INCAPABLE; in vpx_codec_dec_init_ver()
41 res = VPX_CODEC_INCAPABLE; in vpx_codec_dec_init_ver()
44 res = VPX_CODEC_INCAPABLE; in vpx_codec_dec_init_ver()
46 res = VPX_CODEC_INCAPABLE; in vpx_codec_dec_init_ver()
55 res = VPX_CODEC_OK; in vpx_codec_dec_init_ver()
[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/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/tools/genrb/
Dreslist.c112 res_write16(struct SRBRoot *bundle, struct SResource *res,
131 struct SRBRoot *bundle, struct SResource *res,
141 struct SRBRoot *bundle, struct SResource *res,
220 string_write16(struct SRBRoot *bundle, struct SResource *res, UErrorCode *status) { in string_write16() argument
222 if ((same = res->u.fString.fSame) != NULL) { in string_write16()
228 res->fRes = same->fRes; in string_write16()
229 res->fWritten = same->fWritten; in string_write16()
234 array_write16(struct SRBRoot *bundle, struct SResource *res, in array_write16() argument
242 if (res->u.fArray.fCount == 0 && gFormatVersion > 1) { in array_write16()
243 res->fRes = URES_MAKE_EMPTY_RESOURCE(URES_ARRAY); in array_write16()
[all …]
/external/clang/test/Analysis/
Ddynamic-cast.cpp25 const int* res = 0; in testDynCastFromRadar() local
29 res = &i; in testDynCastFromRadar()
31 res = 0; in testDynCastFromRadar()
33 return *res; // no warning in testDynCastFromRadar()
40 const int* res = 0; in testBaseToBase1() local
43 res = &i; in testBaseToBase1()
45 res = 0; in testBaseToBase1()
47 return *res; // no warning in testBaseToBase1()
55 const int* res = 0; in testMultipleLevelsOfSubclassing1() local
58 res = &i; in testMultipleLevelsOfSubclassing1()
[all …]
/external/valgrind/main/memcheck/tests/
Dmemalign2.c30 int res; in main()
84 res = PM(&p, -1,100); assert(EINVAL == res); in main()
85 res = PM(&p, 0, 100); assert(0 == res && 0 == (long)p % 8); in main()
86 res = PM(&p, 1, 100); assert(EINVAL == res); in main()
87 res = PM(&p, 2, 100); assert(EINVAL == res); in main()
88 res = PM(&p, 3, 100); assert(EINVAL == res); in main()
89 res = PM(&p, sizeof(void*), 100); in main()
90 assert(0 == res && 0 == (long)p % sizeof(void*)); in main()
92 res = PM(&p, 31, 100); assert(EINVAL == res); in main()
93 res = PM(&p, 32, 100); assert(0 == res && 0 == (long)p % 32); in main()
[all …]
/external/dropbear/libtommath/pre_gen/
Dmpi.c79 int res, neg; in fast_mp_invmod() local
87 if ((res = mp_init_multi(&x, &y, &u, &v, &B, &D, NULL)) != MP_OKAY) { in fast_mp_invmod()
88 return res; in fast_mp_invmod()
92 if ((res = mp_copy (b, &x)) != MP_OKAY) { in fast_mp_invmod()
97 if ((res = mp_mod (a, b, &y)) != MP_OKAY) { in fast_mp_invmod()
102 if ((res = mp_copy (&x, &u)) != MP_OKAY) { in fast_mp_invmod()
105 if ((res = mp_copy (&y, &v)) != MP_OKAY) { in fast_mp_invmod()
114 if ((res = mp_div_2 (&u, &u)) != MP_OKAY) { in fast_mp_invmod()
119 if ((res = mp_sub (&B, &x, &B)) != MP_OKAY) { in fast_mp_invmod()
124 if ((res = mp_div_2 (&B, &B)) != MP_OKAY) { in fast_mp_invmod()
[all …]
/external/icu4c/stubdata/reduced_coll/
Dadd.txt1 coll/en.res
2 coll/en_AU.res
3 coll/en_BE.res
4 coll/en_BW.res
5 coll/en_CA.res
6 coll/en_GB.res
7 coll/en_HK.res
8 coll/en_IE.res
9 coll/en_IN.res
10 coll/en_MT.res
[all …]
/external/dropbear/libtommath/mtest/
Dmpi.c248 mp_err res; in mp_init_array() local
254 if((res = mp_init(&mp[pos])) != MP_OKAY) in mp_init_array()
264 return res; in mp_init_array()
496 mp_err res; in mp_set_int() local
506 if((res = s_mp_mul_2d(mp, CHAR_BIT)) != MP_OKAY) in mp_set_int()
507 return res; in mp_set_int()
509 res = s_mp_add_d(mp, in mp_set_int()
511 if(res != MP_OKAY) in mp_set_int()
512 return res; in mp_set_int()
539 mp_err res = MP_OKAY; in mp_add_d() local
[all …]

12345678910>>...69