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

1 2 3 4

  /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);
  /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/clang/test/SemaCXX/
operator-arrow-temporary.cpp 18 void f() { Accessor acc; acc->doit(); } // expected-note {{requested here}} local
  /frameworks/base/media/libeffects/testlibs/
AudioCommon.h 54 inline audio_coef_sample_acc_t mac_coef_sample(audio_coef_t x, audio_sample_t y, audio_coef_sample_acc_t acc) {
55 return acc + ((audio_coef_sample_acc_t) (x)) * y;
59 inline audio_sample_t coef_sample_acc_to_sample(audio_coef_sample_acc_t acc) {
60 if (acc < 0) {
61 acc += AUDIO_COEF_ONE - 1;
63 return (audio_sample_t) (acc >> AUDIO_COEF_PRECISION);
AudioBiquadFilter.cpp 165 audio_coef_sample_acc_t acc; local
166 acc = mul_coef_sample(b0, x0);
167 acc = mac_coef_sample(b1, x1, acc);
168 acc = mac_coef_sample(b2, x2, acc);
169 acc = mac_coef_sample(a1, y1, acc);
170 acc = mac_coef_sample(a2, y2, acc);
218 audio_coef_sample_acc_t acc; local
    [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());
  /external/dbus/tools/
strtoll.c 68 unsigned long long acc; local
101 acc = any = 0;
138 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
142 acc *= base;
143 acc += c;
147 acc = neg ? LLONG_MIN : LLONG_MAX;
161 acc = -acc;
164 return (acc);
    [all...]
strtoull.c 69 unsigned long long acc; local
100 acc = any = 0;
117 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
121 acc *= base;
122 acc += c;
126 acc = ULLONG_MAX;
140 acc = -acc;
143 return (acc);
    [all...]
  /libcore/luni/src/main/java/java/security/
AccessControlContext.java 39 public AccessControlContext(AccessControlContext acc, DomainCombiner combiner) {
  /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 25 $acc="%r0";
64 llgc $acc,2($TY,$key)
67 sllg $acc,$acc,8
68 ic $acc,2($TY,$key)
87 sllg $acc,$acc,8
89 ic $acc,2($TY,$key)
90 xgr $acc,$TX[1]
91 stg $acc,0($out
    [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);
  /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...]
  /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...]
  /external/openssl/crypto/x509v3/
v3_info.c 140 ACCESS_DESCRIPTION *acc;
149 if(!(acc = ACCESS_DESCRIPTION_new())
150 || !sk_ACCESS_DESCRIPTION_push(ainfo, acc)) {
162 if(!v2i_GENERAL_NAME_ex(acc->location, method, ctx, &ctmp, 0))
170 acc->method = OBJ_txt2obj(objtmp, 0);
171 if(!acc->method) {
  /external/sonivox/arm-fm-22k/lib_src/
eas_imaadpcm.c 140 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Predictor: Was %d, now %d\n", pState->decoderL.acc, sTemp); */ }
142 pState->decoderL.acc = pState->decoderL.x1 = sTemp;
157 pState->decoderR.acc = pState->decoderR.x1 = sTemp;
251 pState->acc -= delta;
253 pState->acc += delta;
256 if (pState->acc > 32767)
257 pState->acc = 32767;
258 if (pState->acc < -32768)
259 pState->acc = -32768;
260 pState->x1 = (EAS_PCM) pState->acc;
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_imaadpcm.c 140 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Predictor: Was %d, now %d\n", pState->decoderL.acc, sTemp); */ }
142 pState->decoderL.acc = pState->decoderL.x1 = sTemp;
157 pState->decoderR.acc = pState->decoderR.x1 = sTemp;
251 pState->acc -= delta;
253 pState->acc += delta;
256 if (pState->acc > 32767)
257 pState->acc = 32767;
258 if (pState->acc < -32768)
259 pState->acc = -32768;
260 pState->x1 = (EAS_PCM) pState->acc;
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_imaadpcm.c 140 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Predictor: Was %d, now %d\n", pState->decoderL.acc, sTemp); */ }
142 pState->decoderL.acc = pState->decoderL.x1 = sTemp;
157 pState->decoderR.acc = pState->decoderR.x1 = sTemp;
251 pState->acc -= delta;
253 pState->acc += delta;
256 if (pState->acc > 32767)
257 pState->acc = 32767;
258 if (pState->acc < -32768)
259 pState->acc = -32768;
260 pState->x1 = (EAS_PCM) pState->acc;
    [all...]
  /external/clang/test/CodeGen/
2007-03-05-DataLayout.c 21 vector acc; member in struct:bnode
34 #define Acc(x) ((x)->acc)
  /external/javassist/src/main/javassist/
CtNewNestedClass.java 50 int acc = ica.accessFlags(i) & AccessFlag.STATIC; local
51 ica.setAccessFlags(i, mod | acc);

Completed in 1936 milliseconds

1 2 3 4