/external/v8/test/mjsunit/third_party/regexp-pcre/ |
D | regexp-pcre.js | 78 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/deqp/external/vulkancts/framework/vulkan/ |
D | vkTypeUtil.inl | 7 VkAllocationCallbacks res; local 8 res.pUserData = pUserData; 9 res.pfnAllocation = pfnAllocation; 10 res.pfnReallocation = pfnReallocation; 11 res.pfnFree = pfnFree; 12 res.pfnInternalAllocation = pfnInternalAllocation; 13 res.pfnInternalFree = pfnInternalFree; 14 return res; 19 VkExtent3D res; local 20 res.width = width; [all …]
|
/external/chromium-trace/catapult/third_party/Paste/tests/ |
D | test_urlparser.py | 23 res = app.get('/') 24 assert 'index1' in res 25 assert res.header('content-type') == 'text/plain' 26 res = app.get('/index') 27 assert 'index1' in res 28 assert res.header('content-type') == 'text/plain' 29 res = app.get('/index.txt') 30 assert 'index1' in res 31 assert res.header('content-type') == 'text/plain' 32 res = app.get('/test2.html') [all …]
|
D | test_fileapp.py | 26 res = harness.get("/") 27 assert 'application/octet-stream' == res.header('content-type') 28 assert '9' == res.header('content-length') 29 assert "<Response 200 OK 'mycontent'>" == repr(res) 38 res = build() 39 assert 'public' == res.header('cache-control') 40 assert not res.header('expires',None) 41 res = build(private=True) 42 assert 'private' == res.header('cache-control') 43 assert mktime_tz(parsedate_tz(res.header('expires'))) < time.time() [all …]
|
D | test_errordocument.py | 15 res = app.get('') 16 assert res.header('content-type') == 'text/plain' 17 assert res.full_status == '200 OK' 18 assert 'requested page returned' in res 32 res = app.get('') 33 assert res.header('content-type') == 'text/plain' 34 assert res.full_status == '200 OK' 35 assert 'requested page returned' in res 36 res = app.get('/error') 37 assert res.header('content-type') == 'text/plain' [all …]
|
D | test_urlmap.py | 23 res = app.get('/') 24 res.mustcontain('root') 25 res.mustcontain('script_name=""') 26 res.mustcontain('path_info="/"') 27 res = app.get('/blah') 28 res.mustcontain('root') 29 res.mustcontain('script_name=""') 30 res.mustcontain('path_info="/blah"') 31 res = app.get('/foo/and/more') 32 res.mustcontain('script_name="/foo"') [all …]
|
/external/opencv3/modules/cudev/include/opencv2/cudev/util/ |
D | saturate_cast.hpp | 67 uint res = 0; in saturate_cast() local 69 asm("cvt.sat.u8.s8 %0, %1;" : "=r"(res) : "r"(vi)); in saturate_cast() 70 return res; in saturate_cast() 74 uint res = 0; in saturate_cast() local 75 asm("cvt.sat.u8.s16 %0, %1;" : "=r"(res) : "h"(v)); in saturate_cast() 76 return res; in saturate_cast() 80 uint res = 0; in saturate_cast() local 81 asm("cvt.sat.u8.u16 %0, %1;" : "=r"(res) : "h"(v)); in saturate_cast() 82 return res; in saturate_cast() 86 uint res = 0; in saturate_cast() local [all …]
|
/external/compiler-rt/include/sanitizer/ |
D | linux_syscall_hooks.h | 26 #define __sanitizer_syscall_post_time(res, tloc) \ argument 27 __sanitizer_syscall_post_impl_time(res, (long)(tloc)) 30 #define __sanitizer_syscall_post_stime(res, tptr) \ argument 31 __sanitizer_syscall_post_impl_stime(res, (long)(tptr)) 34 #define __sanitizer_syscall_post_gettimeofday(res, tv, tz) \ argument 35 __sanitizer_syscall_post_impl_gettimeofday(res, (long)(tv), (long)(tz)) 38 #define __sanitizer_syscall_post_settimeofday(res, tv, tz) \ argument 39 __sanitizer_syscall_post_impl_settimeofday(res, (long)(tv), (long)(tz)) 42 #define __sanitizer_syscall_post_adjtimex(res, txc_p) \ argument 43 __sanitizer_syscall_post_impl_adjtimex(res, (long)(txc_p)) [all …]
|
/external/opencv3/modules/core/include/opencv2/core/cuda/ |
D | saturate_cast.hpp | 67 uint res = 0; in saturate_cast() local 69 asm("cvt.sat.u8.s8 %0, %1;" : "=r"(res) : "r"(vi)); in saturate_cast() 70 return res; in saturate_cast() 74 uint res = 0; in saturate_cast() local 75 asm("cvt.sat.u8.s16 %0, %1;" : "=r"(res) : "h"(v)); in saturate_cast() 76 return res; in saturate_cast() 80 uint res = 0; in saturate_cast() local 81 asm("cvt.sat.u8.u16 %0, %1;" : "=r"(res) : "h"(v)); in saturate_cast() 82 return res; in saturate_cast() 86 uint res = 0; in saturate_cast() local [all …]
|
/external/speex/libspeex/ |
D | fixed_debug.h | 52 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/VEX/priv/ |
D | host_generic_simd128.c | 133 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/fio/lib/ |
D | hweight.c | 5 unsigned int res = w - ((w >> 1) & 0x55); in hweight8() local 7 res = (res & 0x33) + ((res >> 2) & 0x33); in hweight8() 8 return (res + (res >> 4)) & 0x0F; in hweight8() 13 unsigned int res = w - ((w >> 1) & 0x55555555); in hweight32() local 15 res = (res & 0x33333333) + ((res >> 2) & 0x33333333); in hweight32() 16 res = (res + (res >> 4)) & 0x0F0F0F0F; in hweight32() 17 res = res + (res >> 8); in hweight32() 18 return (res + (res >> 16)) & 0x000000FF; in hweight32() 26 uint64_t res = w - ((w >> 1) & 0x5555555555555555ULL); in hweight64() 27 res = (res & 0x3333333333333333ULL) + ((res >> 2) & 0x3333333333333333ULL); in hweight64() [all …]
|
/external/libopus/celt/ |
D | fixed_debug.h | 64 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/valgrind/none/tests/x86/ |
D | movx.c | 6 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/v8/test/mjsunit/ |
D | switch.js | 186 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/valgrind/coregrind/ |
D | m_libcfile.c | 100 SSizeT res = VG_(readlink)(tmp, buf, bufsiz); in VG_() local 101 if (res < 0) break; in VG_() 102 if (res == bufsiz) { // buffer too small; increase and retry in VG_() 107 vg_assert(bufsiz > res); // paranoia in VG_() 110 buf[res] = '\0'; in VG_() 143 SysRes res = VG_(do_syscall4)(__NR_mknodat, in VG_() local 146 SysRes res = VG_(do_syscall3)(__NR_mknod, in VG_() 149 SysRes res = VG_(do_syscall4)(__NR_mknodat, in VG_() 154 return res; in VG_() 161 SysRes res = VG_(do_syscall4)(__NR_openat, in VG_() local [all …]
|
/external/valgrind/memcheck/tests/amd64/ |
D | bt_everything.c | 32 UChar res; in btsq_mem() local 36 : "=m" (*base), "=q" (res) in btsq_mem() 41 return res; in btsq_mem() 46 UChar res; in btrq_mem() local 50 : "=m" (*base), "=q" (res) in btrq_mem() 52 return res; in btrq_mem() 57 UChar res; in btcq_mem() local 61 : "=m" (*base), "=q" (res) in btcq_mem() 63 return res; in btcq_mem() 68 UChar res; in btq_mem() local [all …]
|
/external/bison/src/ |
D | symlist.c | 35 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/none/tests/amd64/ |
D | bmi.c | 8 void do_andn64 ( /*OUT*/UInt* flags, /*OUT*/ULong* res, ULong arg1, ULong arg2 ) in do_andn64() argument 18 *res = tem; in do_andn64() 27 if (*res != tem || *flags != (flag & 0x8d5)) in do_andn64() 32 void do_andn32 ( /*OUT*/UInt* flags, /*OUT*/ULong* res, UInt arg1, UInt arg2 ) in do_andn32() argument 42 *res = tem; in do_andn32() 51 if (*res != tem || *flags != (flag & 0x8d5)) in do_andn32() 140 void do_sarx64 ( /*OUT*/ULong* res, ULong arg1, ULong arg2 ) in do_sarx64() argument 157 *res = tem; in do_sarx64() 172 if (*res != tem) in do_sarx64() 179 void do_sarx32 ( /*OUT*/ULong* res, UInt arg1, UInt arg2 ) in do_sarx32() argument [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | rem_crash.ll | 7 %res = add i8 %0, %1 8 ret i8 %res 15 %res = add i8 %0, %1 16 ret i8 %res 23 %res = add i8 %0, %1 24 ret i8 %res 31 %res = add i8 %0, %1 32 ret i8 %res 39 %res = add i16 %0, %1 40 ret i16 %res [all …]
|
/external/eigen/test/ |
D | sparse_permutations.cpp | 27 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/mesa3d/src/gallium/drivers/r600/ |
D | evergreen_compute_internal.c | 58 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/libnl/lib/fib_lookup/ |
D | lookup.c | 51 struct flnl_result *res = nl_object_priv(obj); in result_free_data() local 53 if (res && res->fr_req) in result_free_data() 54 nl_object_put(OBJ_CAST(res->fr_req)); in result_free_data() 73 struct flnl_result *res; in result_msg_parser() local 78 res = flnl_result_alloc(); in result_msg_parser() 79 if (!res) in result_msg_parser() 82 res->ce_msgtype = n->nlmsg_type; in result_msg_parser() 84 res->fr_req = flnl_request_alloc(); in result_msg_parser() 85 if (!res->fr_req) in result_msg_parser() 92 err = flnl_request_set_addr(res->fr_req, addr); in result_msg_parser() [all …]
|
/external/compiler-rt/lib/msan/ |
D | msan_interceptors.cc | 106 SIZE_T res = REAL(fread)(ptr, size, nmemb, file); in INTERCEPTOR() local 107 if (res > 0) in INTERCEPTOR() 108 __msan_unpoison(ptr, res *size); in INTERCEPTOR() 109 return res; in INTERCEPTOR() 116 SIZE_T res = REAL(fread_unlocked)(ptr, size, nmemb, file); in INTERCEPTOR() local 117 if (res > 0) in INTERCEPTOR() 118 __msan_unpoison(ptr, res *size); in INTERCEPTOR() 119 return res; in INTERCEPTOR() 129 SSIZE_T res = REAL(readlink)(path, buf, bufsiz); in INTERCEPTOR() 130 if (res > 0) in INTERCEPTOR() [all …]
|
/external/lzma/CPP/Common/ |
D | StringToInt.cpp | 14 uintType res = 0; \ 17 if (c < '0' || c > '9') { if (end) *end = s; return res; } \ 18 if (res > (k_ ## uintType ## _max) / 10) return 0; \ 19 res *= 10; \ 21 if (res > (k_ ## uintType ## _max) - v) return 0; \ 22 res += v; }} 39 UInt32 res = ConvertStringToUInt32(s2, &end2); in CONVERT_STRING_TO_UINT_FUNC() local 42 if (res > ((UInt32)1 << (32 - 1))) in CONVERT_STRING_TO_UINT_FUNC() 45 else if ((res & ((UInt32)1 << (32 - 1))) != 0) in CONVERT_STRING_TO_UINT_FUNC() 50 return -(Int32)res; in CONVERT_STRING_TO_UINT_FUNC() [all …]
|