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

1 2 3 4 5 6

  /external/qemu/android/
async-console.c 48 _acc_prepareLineReader(AsyncConsoleConnector* acc, int newState)
50 acc->state = newState;
51 asyncLineReader_init(acc->lreader, acc->lbuff, sizeof(acc->lbuff), acc->io);
56 asyncConsoleConnector_connect(AsyncConsoleConnector* acc,
60 acc->state = STATE_INITIAL;
61 acc->address = address[0];
62 acc->io = io
    [all...]
async-console.h 38 asyncConsoleConnector_connect(AsyncConsoleConnector* acc,
59 asyncConsoleConnector_run(AsyncConsoleConnector* acc);
  /external/elfutils/libdw/
memory-access.c 58 __libdw_get_uleb128 (uint64_t acc, unsigned int i, const unsigned char **addrp)
61 get_uleb128_rest_return (acc, i, addrp);
66 __libdw_get_sleb128 (int64_t acc, unsigned int i, const unsigned char **addrp)
69 int64_t _v = acc;
70 get_sleb128_rest_return (acc, i, addrp);
  /bionic/libc/stdlib/
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...]
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...]
  /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/clang/test/SemaCXX/
operator-arrow-temporary.cpp 18 void f() { Accessor acc; acc->doit(); } // expected-note {{requested here}} local
atomic-type.cxx 24 long l, _Atomic(long) al, A const *const *acc,
32 double &dr1 = ovl1(acc);
  /external/openssl/crypto/bn/
bn_nist.c 403 NIST_INT64 acc; /* accumulator */ local
407 acc = rp[0]; acc += bp[3*2-6];
408 acc += bp[5*2-6]; rp[0] = (unsigned int)acc; acc >>= 32;
410 acc += rp[1]; acc += bp[3*2-5];
411 acc += bp[5*2-5]; rp[1] = (unsigned int)acc; acc >>= 32
531 NIST_INT64 acc; \/* accumulator *\/ local
678 NIST_INT64 acc; \/* accumulator *\/ local
882 NIST_INT64 acc; \/* accumulator *\/ local
    [all...]
  /external/libppp/src/
tcpmss.c 78 * internet checksum. "acc" is a 32-bit
84 #define ADJUST_CHECKSUM(acc, cksum) { \
85 acc += cksum; \
86 if (acc < 0) { \
87 acc = -acc; \
88 acc = (acc >> 16) + (acc & 0xffff); \
89 acc += acc >> 16;
    [all...]
  /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());
  /libcore/luni/src/main/java/java/security/
AccessControlContext.java 39 public AccessControlContext(AccessControlContext acc, DomainCombiner combiner) {
  /frameworks/av/media/libeffects/testlibs/
AudioCommon.h 55 inline audio_coef_sample_acc_t mac_coef_sample(audio_coef_t x, audio_sample_t y, audio_coef_sample_acc_t acc) {
56 return acc + ((audio_coef_sample_acc_t) (x)) * y;
60 inline audio_sample_t coef_sample_acc_to_sample(audio_coef_sample_acc_t acc) {
61 if (acc < 0) {
62 acc += AUDIO_COEF_ONE - 1;
64 return (audio_sample_t) (acc >> AUDIO_COEF_PRECISION);
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...]
  /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/openssl/crypto/aes/asm/
aes-586.pl 202 $acc="esi";
245 my $v0 = $acc, $v1 = $key;
302 { my $v0 = $key, $v1 = $acc;
360 &movz ($acc,&LB("eax")); # 0
361 &mov ("ecx",&DWP(0,$tbl,$acc,8)); # 0
367 &movz ($acc,&LB("ebx")); # 10
368 &xor ("ecx",&DWP(2,$tbl,$acc,8)); # 10
370 &movz ($acc,&HB("ebx")); # 11
371 &xor ("edx",&DWP(1,$tbl,$acc,8)); # 11
374 &movz ($acc,&HB("eax")); #
    [all...]
  /external/openssl/crypto/rc4/asm/
rc4-s390x.pl 48 $acc="%r0";
92 llgc $acc,2($TY,$key)
95 sllg $acc,$acc,8
96 ic $acc,2($TY,$key)
115 sllg $acc,$acc,8
117 ic $acc,2($TY,$key)
118 xgr $acc,$TX[1]
119 stg $acc,0($out
    [all...]
rc4-parisc.pl 82 $acc="%r1";
103 `sprintf("%sdep %$dat1,%d,8,%$acc",$i==1?"z":"",8*($i-1)+7) if ($i>0)`
127 $LDX $TY($key),$acc
130 xor $dat1,$acc,$acc
132 stb $acc,-1($out)
180 and,<> $inp,$dat0,$acc ; is $inp aligned?
182 sub $inp,$acc,$rem ; align $inp
184 sh3addl $acc,%r0,$acc
    [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
  /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...]

Completed in 1783 milliseconds

1 2 3 4 5 6