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

1 2 3 4 5 6 7 8 91011

  /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/0.153/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/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 46 intmax_t acc, cutoff; local
104 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
116 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
118 acc = INTMAX_MIN;
122 acc *= base;
123 acc -= c;
126 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
128 acc = INTMAX_MAX
    [all...]
strtol.c 47 long acc, cutoff; local
115 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
127 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
129 acc = LONG_MIN;
133 acc *= base;
134 acc -= c;
137 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
139 acc = LONG_MAX
    [all...]
strtoll.c 48 long long acc, cutoff; local
106 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
118 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
120 acc = LLONG_MIN;
124 acc *= base;
125 acc -= c;
128 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
130 acc = LLONG_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...]
strtoull.c 48 unsigned long long acc, cutoff; local
78 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
89 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
91 acc = ULLONG_MAX;
95 acc *= (unsigned long long)base;
96 acc += c;
100 acc = -acc;
103 return (acc);
    [all...]
strtoumax.c 46 uintmax_t acc, cutoff; local
76 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
87 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
89 acc = UINTMAX_MAX;
93 acc *= (uintmax_t)base;
94 acc += c;
98 acc = -acc;
101 return (acc);
    [all...]
  /external/clang/test/SemaCXX/
operator-arrow-temporary.cpp 18 void f() { Accessor acc; acc->doit(); } // expected-note {{requested here}} local
  /external/libunwind/src/hppa/
get_accessors.c 34 return &as->acc;
  /external/libunwind/src/mi/
Gget_accessors.c 33 return &as->acc;
  /external/chromium_org/third_party/openssl/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/openssl/crypto/bn/
bn_nist.c 402 NIST_INT64 acc; /* accumulator */ local
406 acc = rp[0]; acc += bp[3*2-6];
407 acc += bp[5*2-6]; rp[0] = (unsigned int)acc; acc >>= 32;
409 acc += rp[1]; acc += bp[3*2-5];
410 acc += bp[5*2-5]; rp[1] = (unsigned int)acc; acc >>= 32
534 NIST_INT64 acc; \/* accumulator *\/ local
682 NIST_INT64 acc; \/* accumulator *\/ local
887 NIST_INT64 acc; \/* accumulator *\/ local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
differ_block_sse2.cc 27 __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 >> 64. We only care about the lower 1
67 __m128i acc = _mm_setzero_si128(); local
    [all...]
  /external/clang/test/CodeGen/
arm64_vshift.c 247 int8x8_t test_vrsra_n_s8(int8x8_t acc, int8x8_t in) {
250 // CHECK: add <8 x i8> [[TMP]], %acc
251 return vrsra_n_s8(acc, in, 1);
254 int16x4_t test_vrsra_n_s16(int16x4_t acc, int16x4_t in) {
257 // CHECK: add <4 x i16> [[TMP]], %acc
258 return vrsra_n_s16(acc, in, 1);
261 int32x2_t test_vrsra_n_s32(int32x2_t acc, int32x2_t in) {
264 // CHECK: add <2 x i32> [[TMP]], %acc
265 return vrsra_n_s32(acc, in, 1);
268 int64x1_t test_vrsra_n_s64(int64x1_t acc, int64x1_t in)
    [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/libcxx/test/re/re.results/re.results.acc/
Android.mk 17 test_makefile := external/libcxx/test/re/re.results/re.results.acc/Android.mk
19 test_name := re/re.results/re.results.acc/length
23 test_name := re/re.results/re.results.acc/cbegin_cend
27 test_name := re/re.results/re.results.acc/suffix
31 test_name := re/re.results/re.results.acc/position
35 test_name := re/re.results/re.results.acc/index
39 test_name := re/re.results/re.results.acc/prefix
43 test_name := re/re.results/re.results.acc/begin_end
47 test_name := re/re.results/re.results.acc/str
  /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...]
  /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/chromium_org/third_party/openssl/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...]

Completed in 530 milliseconds

1 2 3 4 5 6 7 8 91011