HomeSort by relevance Sort by last modified time
    Searched defs:acc (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /libcore/luni/src/test/java/tests/support/
MockFunction.java 24 private StringBuffer acc = new StringBuffer(); field in class:MockFunction
32 return acc.toString();
45 acc.append(args[i]);
46 acc.append(" ");
52 fc.set_result(acc.toString());
  /bionic/libc/stdlib/
strtoimax.c 46 intmax_t acc, cutoff; local
135 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
147 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
149 acc = INTMAX_MIN;
153 acc *= base;
154 acc -= c;
157 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
159 acc = INTMAX_MAX
    [all...]
strtol.c 47 long acc, cutoff; local
104 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
116 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
118 acc = LONG_MIN;
122 acc *= base;
123 acc -= c;
126 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
128 acc = LONG_MAX
    [all...]
strtoul.c 46 unsigned long acc, cutoff; local
76 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
87 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
89 acc = ULONG_MAX;
93 acc *= (unsigned long)base;
94 acc += c;
98 acc = -acc;
101 return (acc);
    [all...]
strtoumax.c 46 uintmax_t acc, cutoff; local
89 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
100 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
102 acc = UINTMAX_MAX;
106 acc *= (uintmax_t)base;
107 acc += c;
111 acc = -acc;
114 return (acc);
    [all...]
  /external/clang/test/SemaCXX/
operator-arrow-temporary.cpp 18 void f() { Accessor acc; acc->doit(); } // expected-note {{requested here}} local
  /external/openssh/openbsd-compat/
strtoll.c 53 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 = LLONG_MAX
    [all...]
strtoul.c 51 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...]
  /external/dropbear/libtomcrypt/src/prngs/
rng_get_bytes.c 61 int l, acc, bits, a, b; local
69 acc = a = b = 0;
77 acc = (acc << 1) | a;
79 *buf++ = acc;
80 acc = 0;
83 acc = bits = a = b = 0;
  /external/javassist/src/main/javassist/
CtNewNestedClass.java 50 int acc = ica.accessFlags(i) & AccessFlag.STATIC; local
51 ica.setAccessFlags(i, mod | acc);
  /external/apache-harmony/security/src/test/api/java/tests/api/java/security/
AccessControlContextTest.java 42 AccessControlContext acc = new AccessControlContext( local
45 acc.checkPermission(perm);
53 AccessControlContext acc = new AccessControlContext(
56 acc.checkPermission(perm);
  /external/eigen/bench/
bench_reverse.cpp 30 Scalar acc = 0; local
41 acc += b.coeff(r,c);
56 if (acc==123)
57 std::cout << acc; local
benchCholesky.cpp 51 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
benchEigenSolver.cpp 50 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/openssl/crypto/ec/
ec2_mult.c 324 EC_POINT *acc = NULL; local
344 if ((acc = EC_POINT_new(group)) == NULL) goto err;
346 if (!EC_POINT_set_to_infinity(group, acc)) goto err;
353 if (!group->meth->add(group, acc, acc, p, ctx)) goto err;
361 if (!group->meth->add(group, acc, acc, p, ctx)) goto err;
364 if (!EC_POINT_copy(r, acc)) goto err;
370 if (acc) EC_POINT_free(acc);
    [all...]
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_indexing.h 50 double acc; local
54 acc=0;
55 for(j=0;j<acols;j++) acc+=At[j][i]*b[j];
56 c[i]=acc;
63 double acc; local
67 acc=0;
68 for(k=0;k<acols;k++) acc+=A[i][k]*B[k][j];
69 C[i][j]=acc;
76 double acc; local
80 acc=0
    [all...]
  /packages/apps/Gallery2/jni_mosaic/feature_stab/db_vlvm/
db_utilities_indexing.h 50 double acc; local
54 acc=0;
55 for(j=0;j<acols;j++) acc+=At[j][i]*b[j];
56 c[i]=acc;
63 double acc; local
67 acc=0;
68 for(k=0;k<acols;k++) acc+=A[i][k]*B[k][j];
69 C[i][j]=acc;
76 double acc; local
80 acc=0
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_indexing.h 50 double acc; local
54 acc=0;
55 for(j=0;j<acols;j++) acc+=At[j][i]*b[j];
56 c[i]=acc;
63 double acc; local
67 acc=0;
68 for(k=0;k<acols;k++) acc+=A[i][k]*B[k][j];
69 C[i][j]=acc;
76 double acc; local
80 acc=0
    [all...]
  /external/clang/test/CodeGen/
2007-03-05-DataLayout.c 21 vector acc; member in struct:bnode
34 #define Acc(x) ((x)->acc)
  /external/eigen/unsupported/test/
FFTW.cpp 38 complex<long double> acc = 0; local
41 acc += promote( timebuf[k1] ) * exp( complex<long double>(0,k1*phinc) );
43 totalpower += norm(acc);
45 complex<long double> dif = acc - x;
47 //cerr << k0 << "\t" << acc << "\t" << x << "\t" << sqrt(norm(dif)) << endl;
  /external/javassist/src/main/javassist/bytecode/
ClassFilePrinter.java 68 int acc = finfo.getAccessFlags(); local
69 out.println(Modifier.toString(AccessFlag.toModifier(acc))
80 int acc = minfo.getAccessFlags(); local
81 out.println(Modifier.toString(AccessFlag.toModifier(acc))
  /external/libvorbis/lib/
mdct.c 82 int acc=0; local
84 if((msb>>j)&i)acc|=1<<j;
85 bitrev[i*2]=((~acc)&mask)-1;
86 bitrev[i*2+1]=acc;
  /frameworks/av/media/libeffects/testlibs/
AudioBiquadFilter.cpp 163 audio_coef_sample_acc_t acc; local
164 acc = mul_coef_sample(b0, x0);
165 acc = mac_coef_sample(b1, x1, acc);
166 acc = mac_coef_sample(b2, x2, acc);
167 acc = mac_coef_sample(a1, y1, acc);
168 acc = mac_coef_sample(a2, y2, acc);
216 audio_coef_sample_acc_t acc; local
    [all...]
  /frameworks/av/services/camera/libcameraservice/gui/
RingBufferConsumer.cpp 66 BufferInfo acc, cur; local
89 acc = cur;
90 accPtr = &acc;
92 } // else acc = acc
  /libcore/luni/src/test/java/tests/api/javax/security/auth/
SubjectTest.java 127 * AccessControlContext acc)
133 AccessControlContext acc = AccessController.getContext(); local
136 Object obj = Subject.doAsPrivileged(null, pa, acc);
142 Object obj = Subject.doAsPrivileged(subj, pa, acc);
148 Object obj = Subject.doAsPrivileged(subj, paNull, acc);
157 * AccessControlContext acc)
163 AccessControlContext acc = AccessController.getContext(); local
166 Object obj = Subject.doAsPrivileged(null, pea, acc);
172 Object obj = Subject.doAsPrivileged(subj, pea, acc);
178 Object obj = Subject.doAsPrivileged(subj, peaNull, acc);
201 AccessControlContext acc = new AccessControlContext(new ProtectionDomain[0]); local
    [all...]

Completed in 253 milliseconds

1 2 3 4