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

1 2 3 4 5 6 7

  /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;
Gcreate_addr_space.c 50 as->acc = *a;
  /external/libunwind/src/mi/
Gget_accessors.c 33 return &as->acc;
  /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...]
  /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...]
  /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...]
  /external/chromium_org/third_party/boringssl/src/crypto/aes/asm/
aes-586.pl 203 $acc="esi";
246 my ($v0,$v1) = ($acc,$key);
303 { my ($v0,$v1) = ($key,$acc);
361 &movz ($acc,&LB("eax")); # 0
362 &mov ("ecx",&DWP(0,$tbl,$acc,8)); # 0
368 &movz ($acc,&LB("ebx")); # 10
369 &xor ("ecx",&DWP(2,$tbl,$acc,8)); # 10
371 &movz ($acc,&HB("ebx")); # 11
372 &xor ("edx",&DWP(1,$tbl,$acc,8)); # 11
375 &movz ($acc,&HB("eax")); #
    [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/libunwind/src/ppc/
Gcreate_addr_space.c 52 as->acc = *a;
  /external/libunwind/src/x86/
Gcreate_addr_space.c 54 as->acc = *a;
  /external/libunwind/src/x86_64/
Gcreate_addr_space.c 57 as->acc = *a;

Completed in 1316 milliseconds

1 2 3 4 5 6 7