Searched defs:acc (Results 1 - 25 of 112) sorted by relevance

12345

/external/clang/test/SemaCXX/
H A Doperator-arrow-temporary.cpp18 void f() { Accessor acc; acc->doit(); } // expected-note {{requested here}} local
H A Datomic-type.cpp29 long l, _Atomic(long) al, A const *const *acc,
37 double &dr1 = ovl1(acc);
28 test_overloading(int i, float f, _Atomic(int) ai, _Atomic(float) af, long l, _Atomic(long) al, A const *const *acc, A const ** ac, A **a) argument
/external/openssh/openbsd-compat/
H A Dstrtoll.c53 long long acc, cutoff; local
111 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
123 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
125 acc = LLONG_MIN;
129 acc *= base;
130 acc -= c;
133 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
135 acc
[all...]
H A Dstrtoul.c51 unsigned long acc, cutoff; local
81 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
92 if (acc > cutoff || acc == cutoff && c > cutlim) {
94 acc = ULONG_MAX;
98 acc *= (unsigned long)base;
99 acc += c;
103 acc = -acc;
106 return (acc);
[all...]
H A Dstrtoull.c53 unsigned long long acc, cutoff; local
83 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
96 acc = ULLONG_MAX;
100 acc *= (unsigned long long)base;
101 acc += c;
105 acc = -acc;
108 return (acc);
[all...]
/external/webrtc/webrtc/modules/desktop_capture/
H A Ddiffer_block_sse2.cc27 __m128i acc = _mm_setzero_si128(); local
37 acc = _mm_adds_epu16(acc, sad);
41 acc = _mm_adds_epu16(acc, sad);
45 acc = _mm_adds_epu16(acc, sad);
49 acc = _mm_adds_epu16(acc, sad);
51 // This essential means sad = acc >> 6
67 __m128i acc = _mm_setzero_si128(); local
[all...]
/external/v8/src/base/
H A Dbits.cc34 int32_t SignedMulHighAndAdd32(int32_t lhs, int32_t rhs, int32_t acc) { argument
35 return bit_cast<int32_t>(bit_cast<uint32_t>(acc) +
/external/clang/test/OpenMP/
H A Ddistribute_parallel_for_shared_messages.cpp57 int acc = 0; local
64 acc++;
71 acc++;
78 acc++;
85 acc++;
92 acc++;
99 acc++;
106 acc++;
113 acc++;
120 acc
231 int acc = 0; local
[all...]
H A Ddistribute_parallel_for_simd_shared_messages.cpp57 int acc = 0; local
64 acc++;
71 acc++;
78 acc++;
85 acc++;
92 acc++;
99 acc++;
106 acc++;
113 acc++;
120 acc
231 int acc = 0; local
[all...]
/external/eigen/bench/
H A DbenchCholesky.cpp51 Scalar acc = 0; local
60 acc += cholnosqrt.matrixL().coeff(r,c);
71 acc += chol.matrixL().coeff(r,c);
103 acc += gsl_matrix_get(gslCopy,r,c);
116 if (acc==123)
117 std::cout << acc; local
H A Dbench_reverse.cpp30 Scalar acc = 0; local
41 acc += b.coeff(r,c);
56 if (acc==123)
57 std::cout << acc; local
H A DbenchEigenSolver.cpp50 Scalar acc = 0; local
61 acc += ei.eigenvectors().coeff(r,c);
75 acc += ei.eigenvectors().coeff(r,c);
105 acc += eigvect(r,c);
116 // acc += eigvect(r,c);
151 acc += gsl_matrix_get(eigvect,r,c);
162 acc += GSL_REAL(gsl_matrix_complex_get(eigvectz,r,c));
185 if (acc==123)
186 std::cout << acc; local
/external/gemmlowp/internal/
H A Dkernel_neon.h1006 uint32x4_t acc[Cells]; variable
1008 acc[cell] = vdupq_n_u32(0);
1024 acc[cell] = vmlal_n_u16(acc[cell], vget_low_u16(lhs[cell]), rhs0);
1028 acc[cell] = vmlal_n_u16(acc[cell], vget_high_u16(lhs[cell]), rhs1);
1034 acc[cell] = vaddq_u32(
1035 acc[cell], vreinterpretq_u32_s32(vld1q_s32(dst_ptr + 4 * cell)));
1040 vst1q_s32(dst_ptr + 4 * cell, vreinterpretq_s32_u32(acc[cell]));
/external/libunwind/tests/
H A Dtest-proc-info.c128 unw_accessors_t acc; local
136 memset (&acc, 0, sizeof (acc));
137 acc.find_proc_info = find_proc_info;
138 acc.put_unwind_info = put_unwind_info;
139 acc.get_dyn_info_list_addr = get_dyn_info_list_addr;
140 acc.access_mem = access_mem;
141 acc.access_reg = access_reg;
142 acc.access_fpreg = access_fpreg;
143 acc
[all...]
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_stream.cpp86 CPDF_StreamAcc acc; local
87 acc.LoadAllData(this, true);
89 uint32_t streamSize = acc.GetSize();
96 return pdfium::MakeUnique<CPDF_Stream>(acc.DetachData(), streamSize,
H A Dfpdf_parser_utility.cpp211 CPDF_StreamAcc acc; local
212 acc.LoadAllData(p, true);
213 buf.AppendBlock(acc.GetData(), acc.GetSize());
/external/javassist/src/main/javassist/bytecode/
H A DFieldInfo.java162 public void setAccessFlags(int acc) { argument
163 accessFlags = acc;
H A DMethodInfo.java251 public void setAccessFlags(int acc) { argument
252 accessFlags = acc;
/external/libopus/silk/float/
H A Dprefilter_FLP.c61 silk_float acc, tmp1, tmp2; local
73 acc = coef[ 0 ] * tmp2;
79 acc += coef[ i - 1 ] * tmp1;
83 acc += coef[ i ] * tmp2;
86 acc += coef[ order - 1 ] * tmp1;
87 res[ n ] = input[ n ] - acc;
/external/pdfium/xfa/fxfa/app/
H A Dxfa_ffapp.cpp52 for (const auto& acc : m_Data)
53 dwSize += acc->GetSize();
61 const auto& acc = m_Data[index]; local
62 FX_FILESIZE dwSize = acc->GetSize();
70 const auto& acc = m_Data[index]; local
71 uint32_t dwSize = acc->GetSize();
73 FXSYS_memcpy(buffer, acc->GetData() + offset, dwRead);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue82/
H A DPropOrderInfluenceWhenAliasedInGenericCollectionTest.java88 public Account acc; field in class:PropOrderInfluenceWhenAliasedInGenericCollectionTest.CustomerAB_Property
182 customerAB_property.acc = generalAccount;
207 customerAB_property.acc = generalAccount;
/external/syslinux/core/lwip/src/core/ipv4/
H A Dinet_chksum.c83 u32_t acc; local
87 acc = 0;
98 acc += src;
104 acc += src;
107 acc = (acc >> 16) + (acc & 0x0000ffffUL);
108 if ((acc & 0xffff0000UL) != 0) {
109 acc = (acc >> 1
276 u32_t acc; local
336 u32_t acc; local
411 u32_t acc; local
[all...]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorUInt128.h162 uint64_t acc = d * h; local
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);
177 // Carry forward the high bits of acc to initiate the computation of the
179 acc2 = (acc >> 3
[all...]
/external/eigen/unsupported/test/
H A DFFTW.cpp35 complex<long double> acc = 0; local
38 acc += promote( timebuf[k1] ) * exp( complex<long double>(0,k1*phinc) );
40 totalpower += numext::abs2(acc);
42 complex<long double> dif = acc - x;
44 //cerr << k0 << "\t" << acc << "\t" << x << "\t" << sqrt(numext::abs2(dif)) << endl;
/external/elfutils/libdw/
H A Dmemory-access.h76 uint64_t acc = 0; local
80 get_uleb128_step (acc, *addrp, 0);
84 get_uleb128_step (acc, *addrp, i);
110 int64_t acc = 0; local
114 get_sleb128_step (acc, *addrp, 0);
118 get_sleb128_step (acc, *addrp, i);

Completed in 635 milliseconds

12345