/external/syslinux/core/lwip/src/core/ipv4/ |
D | inet_chksum.c | 83 u32_t acc; in lwip_standard_chksum() local 87 acc = 0; in lwip_standard_chksum() 98 acc += src; in lwip_standard_chksum() 104 acc += src; in lwip_standard_chksum() 107 acc = (acc >> 16) + (acc & 0x0000ffffUL); in lwip_standard_chksum() 108 if ((acc & 0xffff0000UL) != 0) { in lwip_standard_chksum() 109 acc = (acc >> 16) + (acc & 0x0000ffffUL); in lwip_standard_chksum() 114 return htons((u16_t)acc); in lwip_standard_chksum() 276 u32_t acc; in inet_chksum_pseudo() local 281 acc = 0; in inet_chksum_pseudo() [all …]
|
/external/boringssl/src/crypto/fipsmodule/aes/asm/ |
D | aes-586.pl | 207 $acc="esi"; 250 my ($v0,$v1) = ($acc,$key); 307 { my ($v0,$v1) = ($key,$acc); 365 &movz ($acc,&LB("eax")); # 0 366 &mov ("ecx",&DWP(0,$tbl,$acc,8)); # 0 372 &movz ($acc,&LB("ebx")); # 10 373 &xor ("ecx",&DWP(2,$tbl,$acc,8)); # 10 375 &movz ($acc,&HB("ebx")); # 11 376 &xor ("edx",&DWP(1,$tbl,$acc,8)); # 11 379 &movz ($acc,&HB("eax")); # 5 [all …]
|
/external/webrtc/webrtc/modules/desktop_capture/ |
D | differ_block_sse2.cc | 27 __m128i acc = _mm_setzero_si128(); in BlockDifference_SSE2_W16() local 37 acc = _mm_adds_epu16(acc, sad); in BlockDifference_SSE2_W16() 41 acc = _mm_adds_epu16(acc, sad); in BlockDifference_SSE2_W16() 45 acc = _mm_adds_epu16(acc, sad); in BlockDifference_SSE2_W16() 49 acc = _mm_adds_epu16(acc, sad); in BlockDifference_SSE2_W16() 53 sad = _mm_shuffle_epi32(acc, 0xEE); in BlockDifference_SSE2_W16() 54 sad = _mm_adds_epu16(sad, acc); in BlockDifference_SSE2_W16() 67 __m128i acc = _mm_setzero_si128(); in BlockDifference_SSE2_W32() local 77 acc = _mm_adds_epu16(acc, sad); in BlockDifference_SSE2_W32() 81 acc = _mm_adds_epu16(acc, sad); in BlockDifference_SSE2_W32() [all …]
|
/external/clang/test/OpenMP/ |
D | distribute_parallel_for_shared_messages.cpp | 57 int acc = 0; in tmain() local 64 acc++; in tmain() 71 acc++; in tmain() 78 acc++; in tmain() 85 acc++; in tmain() 92 acc++; in tmain() 99 acc++; in tmain() 106 acc++; in tmain() 113 acc++; in tmain() 120 acc++; in tmain() [all …]
|
D | distribute_parallel_for_simd_shared_messages.cpp | 57 int acc = 0; in tmain() local 64 acc++; in tmain() 71 acc++; in tmain() 78 acc++; in tmain() 85 acc++; in tmain() 92 acc++; in tmain() 99 acc++; in tmain() 106 acc++; in tmain() 113 acc++; in tmain() 120 acc++; in tmain() [all …]
|
/external/openssh/openbsd-compat/ |
D | strtoll.c | 53 long long acc, cutoff; in strtoll() local 111 for (acc = 0, any = 0;; c = (unsigned char) *s++) { in strtoll() 123 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoll() 125 acc = LLONG_MIN; in strtoll() 129 acc *= base; in strtoll() 130 acc -= c; in strtoll() 133 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll() 135 acc = LLONG_MAX; in strtoll() 139 acc *= base; in strtoll() 140 acc += c; in strtoll() [all …]
|
D | strtoul.c | 51 unsigned long acc, cutoff; in strtoul() local 81 for (acc = 0, any = 0;; c = (unsigned char) *s++) { in strtoul() 92 if (acc > cutoff || acc == cutoff && c > cutlim) { in strtoul() 94 acc = ULONG_MAX; in strtoul() 98 acc *= (unsigned long)base; in strtoul() 99 acc += c; in strtoul() 103 acc = -acc; in strtoul() 106 return (acc); in strtoul()
|
D | strtoull.c | 53 unsigned long long acc, cutoff; in strtoull() local 83 for (acc = 0, any = 0;; c = (unsigned char) *s++) { in strtoull() 94 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoull() 96 acc = ULLONG_MAX; in strtoull() 100 acc *= (unsigned long long)base; in strtoull() 101 acc += c; in strtoull() 105 acc = -acc; in strtoull() 108 return (acc); in strtoull()
|
/external/gemmlowp/internal/ |
D | simd_wrappers_neon.h | 96 inline void MulAdd(Int32x4 lhs, Int32x4 rhs, Int32x4* acc) { 97 *acc = vmlaq_s32(*acc, lhs, rhs); 100 inline void MulAdd(Int32x4 lhs, std::int32_t rhs, Int32x4* acc) { 101 *acc = vmlaq_n_s32(*acc, lhs, rhs); 105 inline void MulAddByRhsLane(Int32x4 lhs, Int32x4 rhs, Int32x4* acc) { 108 *acc = vmlaq_lane_s32(*acc, lhs, vget_low_s32(rhs), 0); 111 *acc = vmlaq_lane_s32(*acc, lhs, vget_low_s32(rhs), 1); 114 *acc = vmlaq_lane_s32(*acc, lhs, vget_high_s32(rhs), 0); 117 *acc = vmlaq_lane_s32(*acc, lhs, vget_high_s32(rhs), 1);
|
/external/libunwind/tests/ |
D | test-proc-info.c | 128 unw_accessors_t acc; in main() local 136 memset (&acc, 0, sizeof (acc)); in main() 137 acc.find_proc_info = find_proc_info; in main() 138 acc.put_unwind_info = put_unwind_info; in main() 139 acc.get_dyn_info_list_addr = get_dyn_info_list_addr; in main() 140 acc.access_mem = access_mem; in main() 141 acc.access_reg = access_reg; in main() 142 acc.access_fpreg = access_fpreg; in main() 143 acc.resume = resume; in main() 144 acc.get_proc_name = get_proc_name; in main() [all …]
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorUInt128.h | 162 uint64_t acc = d * h; variable 163 uint64_t low = acc & LOW; 165 acc >>= 32LL; 167 uint64_t acc2 = acc + c * h; 168 if (acc2 < acc) { 171 acc = acc2 + d * g; 172 if (acc < acc2) { 175 low |= (acc << 32LL); 179 acc2 = (acc >> 32LL) | (carry << 32LL); 182 acc = acc2 + b * h; [all …]
|
/external/valgrind/memcheck/tests/common/ |
D | sh-mem-vec128-plo-yes.stderr.exp-32bit-le | 62 ------ PL Aligned case with 0 leading acc+def bytes ------ 71 ------ PL Aligned case with 1 leading acc+def bytes ------ 80 ------ PL Aligned case with 2 leading acc+def bytes ------ 89 ------ PL Aligned case with 3 leading acc+def bytes ------ 98 ------ PL Aligned case with 4 leading acc+def bytes ------ 107 ------ PL Aligned case with 5 leading acc+def bytes ------ 116 ------ PL Aligned case with 6 leading acc+def bytes ------ 125 ------ PL Aligned case with 7 leading acc+def bytes ------ 134 ------ PL Aligned case with 8 leading acc+def bytes ------ 143 ------ PL Aligned case with 9 leading acc+def bytes ------ [all …]
|
D | sh-mem-vec128-plo-yes.stderr.exp-64bit-le | 62 ------ PL Aligned case with 0 leading acc+def bytes ------ 71 ------ PL Aligned case with 1 leading acc+def bytes ------ 80 ------ PL Aligned case with 2 leading acc+def bytes ------ 89 ------ PL Aligned case with 3 leading acc+def bytes ------ 98 ------ PL Aligned case with 4 leading acc+def bytes ------ 107 ------ PL Aligned case with 5 leading acc+def bytes ------ 116 ------ PL Aligned case with 6 leading acc+def bytes ------ 125 ------ PL Aligned case with 7 leading acc+def bytes ------ 134 ------ PL Aligned case with 8 leading acc+def bytes ------ 143 ------ PL Aligned case with 9 leading acc+def bytes ------ [all …]
|
/external/llvm/test/CodeGen/ARM/ |
D | neon-v8.1a.ll | 21 define <4 x i16> @test_vqrdmlah_v4i16(<4 x i16> %acc, <4 x i16> %mhs, <4 x i16> %rhs) { 24 %retval = call <4 x i16> @llvm.arm.neon.vqadds.v4i16(<4 x i16> %acc, <4 x i16> %prod) 29 define <8 x i16> @test_vqrdmlah_v8i16(<8 x i16> %acc, <8 x i16> %mhs, <8 x i16> %rhs) { 32 %retval = call <8 x i16> @llvm.arm.neon.vqadds.v8i16(<8 x i16> %acc, <8 x i16> %prod) 37 define <2 x i32> @test_vqrdmlah_v2i32(<2 x i32> %acc, <2 x i32> %mhs, <2 x i32> %rhs) { 40 %retval = call <2 x i32> @llvm.arm.neon.vqadds.v2i32(<2 x i32> %acc, <2 x i32> %prod) 45 define <4 x i32> @test_vqrdmlah_v4i32(<4 x i32> %acc, <4 x i32> %mhs, <4 x i32> %rhs) { 48 %retval = call <4 x i32> @llvm.arm.neon.vqadds.v4i32(<4 x i32> %acc, <4 x i32> %prod) 53 define <4 x i16> @test_vqrdmlsh_v4i16(<4 x i16> %acc, <4 x i16> %mhs, <4 x i16> %rhs) { 56 %retval = call <4 x i16> @llvm.arm.neon.vqsubs.v4i16(<4 x i16> %acc, <4 x i16> %prod) [all …]
|
/external/llvm/test/CodeGen/SystemZ/ |
D | fp-mul-06.ll | 5 define float @f1(float %f1, float %f2, float %acc) { 10 %res = call float @llvm.fma.f32 (float %f1, float %f2, float %acc) 14 define float @f2(float %f1, float *%ptr, float %acc) { 20 %res = call float @llvm.fma.f32 (float %f1, float %f2, float %acc) 24 define float @f3(float %f1, float *%base, float %acc) { 31 %res = call float @llvm.fma.f32 (float %f1, float %f2, float %acc) 35 define float @f4(float %f1, float *%base, float %acc) { 46 %res = call float @llvm.fma.f32 (float %f1, float %f2, float %acc) 50 define float @f5(float %f1, float *%base, float %acc) { 61 %res = call float @llvm.fma.f32 (float %f1, float %f2, float %acc) [all …]
|
D | fp-mul-08.ll | 5 define float @f1(float %f1, float %f2, float %acc) { 10 %negacc = fsub float -0.0, %acc 15 define float @f2(float %f1, float *%ptr, float %acc) { 21 %negacc = fsub float -0.0, %acc 26 define float @f3(float %f1, float *%base, float %acc) { 33 %negacc = fsub float -0.0, %acc 38 define float @f4(float %f1, float *%base, float %acc) { 49 %negacc = fsub float -0.0, %acc 54 define float @f5(float %f1, float *%base, float %acc) { 65 %negacc = fsub float -0.0, %acc [all …]
|
D | fp-mul-07.ll | 8 define double @f1(double %f1, double %f2, double %acc) { 14 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc) 18 define double @f2(double %f1, double *%ptr, double %acc) { 24 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc) 28 define double @f3(double %f1, double *%base, double %acc) { 35 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc) 39 define double @f4(double %f1, double *%base, double %acc) { 50 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc) 54 define double @f5(double %f1, double *%base, double %acc) { 65 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc) [all …]
|
D | fp-mul-09.ll | 8 define double @f1(double %f1, double %f2, double %acc) { 14 %negacc = fsub double -0.0, %acc 19 define double @f2(double %f1, double *%ptr, double %acc) { 25 %negacc = fsub double -0.0, %acc 30 define double @f3(double %f1, double *%base, double %acc) { 37 %negacc = fsub double -0.0, %acc 42 define double @f4(double %f1, double *%base, double %acc) { 53 %negacc = fsub double -0.0, %acc 58 define double @f5(double %f1, double *%base, double %acc) { 69 %negacc = fsub double -0.0, %acc [all …]
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-neon-v8.1a.ll | 30 define <4 x i16> @test_sqrdmlah_v4i16(<4 x i16> %acc, <4 x i16> %mhs, <4 x i16> %rhs) { 33 %retval = call <4 x i16> @llvm.aarch64.neon.sqadd.v4i16(<4 x i16> %acc, <4 x i16> %prod) 40 define <8 x i16> @test_sqrdmlah_v8i16(<8 x i16> %acc, <8 x i16> %mhs, <8 x i16> %rhs) { 43 %retval = call <8 x i16> @llvm.aarch64.neon.sqadd.v8i16(<8 x i16> %acc, <8 x i16> %prod) 50 define <2 x i32> @test_sqrdmlah_v2i32(<2 x i32> %acc, <2 x i32> %mhs, <2 x i32> %rhs) { 53 %retval = call <2 x i32> @llvm.aarch64.neon.sqadd.v2i32(<2 x i32> %acc, <2 x i32> %prod) 60 define <4 x i32> @test_sqrdmlah_v4i32(<4 x i32> %acc, <4 x i32> %mhs, <4 x i32> %rhs) { 63 %retval = call <4 x i32> @llvm.aarch64.neon.sqadd.v4i32(<4 x i32> %acc, <4 x i32> %prod) 70 define <4 x i16> @test_sqrdmlsh_v4i16(<4 x i16> %acc, <4 x i16> %mhs, <4 x i16> %rhs) { 73 %retval = call <4 x i16> @llvm.aarch64.neon.sqsub.v4i16(<4 x i16> %acc, <4 x i16> %prod) [all …]
|
/external/libunwind/include/tdep-ppc32/ |
D | libunwind_i.h | 56 struct unw_accessors acc; member 139 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_getvr() 144 if ((ret = (*c->as->acc.access_mem) (c->as, addr + 0, valp, in dwarf_getvr() 148 return (*c->as->acc.access_mem) (c->as, addr + 8, valp + 1, 0, c->as_arg); in dwarf_getvr() 165 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_putvr() 169 if ((ret = (*c->as->acc.access_mem) (c->as, addr + 0, valp, in dwarf_putvr() 173 return (*c->as->acc.access_mem) (c->as, addr + 8, valp + 1, 1, c->as_arg); in dwarf_putvr() 189 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_getfp() 193 return (*c->as->acc.access_mem) (c->as, addr + 0, valp, 0, c->as_arg); in dwarf_getfp() 210 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_putfp() [all …]
|
/external/libunwind/include/tdep-ppc64/ |
D | libunwind_i.h | 56 struct unw_accessors acc; member 139 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_getvr() 144 if ((ret = (*c->as->acc.access_mem) (c->as, addr + 0, valp, in dwarf_getvr() 148 return (*c->as->acc.access_mem) (c->as, addr + 8, valp + 1, 0, c->as_arg); in dwarf_getvr() 165 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_putvr() 169 if ((ret = (*c->as->acc.access_mem) (c->as, addr + 0, valp, in dwarf_putvr() 173 return (*c->as->acc.access_mem) (c->as, addr + 8, valp + 1, 1, c->as_arg); in dwarf_putvr() 189 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_getfp() 193 return (*c->as->acc.access_mem) (c->as, addr + 0, valp, 0, c->as_arg); in dwarf_getfp() 210 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_putfp() [all …]
|
/external/libunwind/include/tdep-aarch64/ |
D | libunwind_i.h | 65 struct unw_accessors acc; member 141 return (*c->as->acc.access_mem) (c->as, DWARF_GET_LOC (loc), val, in dwarf_get() 152 return (*c->as->acc.access_mem) (c->as, DWARF_GET_LOC (loc), &val, in dwarf_put() 182 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_getfp() 186 if ((ret = (*c->as->acc.access_mem) (c->as, addr + 0, (unw_word_t *) valp, in dwarf_getfp() 190 return (*c->as->acc.access_mem) (c->as, addr + 4, (unw_word_t *) valp + 1, 0, in dwarf_getfp() 205 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_putfp() 209 if ((ret = (*c->as->acc.access_mem) (c->as, addr + 0, (unw_word_t *) valp, in dwarf_putfp() 213 return (*c->as->acc.access_mem) (c->as, addr + 4, (unw_word_t *) valp + 1, in dwarf_putfp() 230 return (*c->as->acc.access_reg) (c->as, DWARF_GET_LOC (loc), val, in dwarf_get() [all …]
|
/external/libunwind/include/tdep-sh/ |
D | libunwind_i.h | 50 struct unw_accessors acc; member 127 return (*c->as->acc.access_mem) (c->as, DWARF_GET_LOC (loc), val, in dwarf_get() 138 return (*c->as->acc.access_mem) (c->as, DWARF_GET_LOC (loc), &val, in dwarf_put() 168 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_getfp() 172 if ((ret = (*c->as->acc.access_mem) (c->as, addr + 0, (unw_word_t *) valp, in dwarf_getfp() 176 return (*c->as->acc.access_mem) (c->as, addr + 4, (unw_word_t *) valp + 1, 0, in dwarf_getfp() 191 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_putfp() 195 if ((ret = (*c->as->acc.access_mem) (c->as, addr + 0, (unw_word_t *) valp, in dwarf_putfp() 199 return (*c->as->acc.access_mem) (c->as, addr + 4, (unw_word_t *) valp + 1, in dwarf_putfp() 216 return (*c->as->acc.access_reg) (c->as, DWARF_GET_LOC (loc), val, in dwarf_get() [all …]
|
/external/libunwind/include/tdep-hppa/ |
D | libunwind_i.h | 50 struct unw_accessors acc; member 126 return (*c->as->acc.access_mem) (c->as, DWARF_GET_LOC (loc), val, in dwarf_get() 137 return (*c->as->acc.access_mem) (c->as, DWARF_GET_LOC (loc), &val, in dwarf_put() 167 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_getfp() 171 if ((ret = (*c->as->acc.access_mem) (c->as, addr + 0, (unw_word_t *) valp, in dwarf_getfp() 175 return (*c->as->acc.access_mem) (c->as, addr + 4, (unw_word_t *) valp + 1, 0, in dwarf_getfp() 190 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_putfp() 194 if ((ret = (*c->as->acc.access_mem) (c->as, addr + 0, (unw_word_t *) valp, in dwarf_putfp() 198 return (*c->as->acc.access_mem) (c->as, addr + 4, (unw_word_t *) valp + 1, in dwarf_putfp() 215 return (*c->as->acc.access_reg) (c->as, DWARF_GET_LOC (loc), val, in dwarf_get() [all …]
|
/external/libunwind/include/tdep-x86/ |
D | libunwind_i.h | 50 struct unw_accessors acc; member 133 return (*c->as->acc.access_mem) (c->as, DWARF_GET_LOC (loc), val, in dwarf_get() 142 return (*c->as->acc.access_mem) (c->as, DWARF_GET_LOC (loc), &val, in dwarf_put() 171 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_getfp() 175 if ((ret = (*c->as->acc.access_mem) (c->as, addr + 0, (unw_word_t *) valp, in dwarf_getfp() 179 return (*c->as->acc.access_mem) (c->as, addr + 4, (unw_word_t *) valp + 1, 0, in dwarf_getfp() 194 return (*c->as->acc.access_fpreg) (c->as, DWARF_GET_LOC (loc), in dwarf_putfp() 198 if ((ret = (*c->as->acc.access_mem) (c->as, addr + 0, (unw_word_t *) valp, in dwarf_putfp() 202 return (*c->as->acc.access_mem) (c->as, addr + 4, (unw_word_t *) valp + 1, in dwarf_putfp() 219 return (*c->as->acc.access_reg) (c->as, DWARF_GET_LOC (loc), val, in dwarf_get() [all …]
|