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

1 2 3 4 5 6

  /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/upstream-openbsd/lib/libc/locale/
_wcstol.h 52 int_type acc, cutoff; local
102 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
111 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
113 acc = MIN_VALUE;
117 acc *= base;
118 acc -= i;
121 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
123 acc = MAX_VALUE
    [all...]
_wcstoul.h 51 uint_type acc, cutoff; local
92 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
100 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
102 acc = MAX_VALUE;
106 acc *= (uint_type)base;
107 acc += i;
111 acc = -acc;
115 return (acc);
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
strtoimax.c 45 intmax_t acc, cutoff; local
114 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
128 acc = INTMAX_MIN;
132 acc *= base;
133 acc -= c;
136 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
138 acc = INTMAX_MAX
    [all...]
strtol.c 46 long acc, cutoff; local
114 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
128 acc = LONG_MIN;
132 acc *= base;
133 acc -= c;
136 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
138 acc = LONG_MAX
    [all...]
strtoll.c 48 long long acc, cutoff; local
117 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
129 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
131 acc = LLONG_MIN;
135 acc *= base;
136 acc -= c;
139 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
141 acc = LLONG_MAX
    [all...]
strtoul.c 46 unsigned long acc, cutoff; local
83 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
96 acc = ULONG_MAX;
100 acc *= (unsigned long)base;
101 acc += c;
105 acc = -acc;
108 return (acc);
    [all...]
strtoull.c 48 unsigned long long acc, cutoff; local
85 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
96 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
98 acc = ULLONG_MAX;
102 acc *= (unsigned long long)base;
103 acc += c;
107 acc = -acc;
110 return (acc);
    [all...]
strtoumax.c 45 uintmax_t acc, cutoff; local
82 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
93 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
95 acc = UINTMAX_MAX;
99 acc *= (uintmax_t)base;
100 acc += c;
104 acc = -acc;
107 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...]
strtoull.c 53 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/javassist/src/main/javassist/
CtNewNestedClass.java 50 int acc = ica.accessFlags(i) & AccessFlag.STATIC; local
51 ica.setAccessFlags(i, mod | acc);
  /external/libunwind/tests/
test-proc-info.c 128 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.resume = resume
    [all...]
  /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
  /development/perftests/panorama/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...]
  /hardware/akm/AK8975_FS/libsensors/
AkmSensor.cpp 244 int16_t acc[3]; local
246 acc[0] = (int16_t)(data->acceleration.x / GRAVITY_EARTH * AKSC_LSG);
247 acc[1] = (int16_t)(data->acceleration.y / GRAVITY_EARTH * AKSC_LSG);
248 acc[2] = (int16_t)(data->acceleration.z / GRAVITY_EARTH * AKSC_LSG);
251 err = write_sys_attribute(input_sysfs_path, (char*)acc, 6);
  /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/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/eigen/unsupported/test/
FFTW.cpp 35 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/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))

Completed in 458 milliseconds

1 2 3 4 5 6