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

1 2 3 4 5 6 7 8 9

  /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;
114 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...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
_wcstol.h 63 __wINT acc, cutoff; local
72 (void)&acc; (void)&cutoff;
120 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
129 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
131 acc = __wINT_MIN;
135 acc *= base;
136 acc -= i;
139 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
    [all...]
_wcstoul.h 65 __wUINT acc, cutoff; local
109 for (acc = 0, any = 0;; wc = (wint_t) *s++) {
118 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
120 acc = __wUINT_MAX;
124 acc *= (__wUINT)base;
125 acc += i;
129 acc = (__wUINT)(-((__wINT)acc));
132 return (acc);
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
strtoimax.c 63 intmax_t acc, cutoff; local
72 (void) &acc; (void) &cutoff;
129 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
141 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
143 acc = INTMAX_MIN;
147 acc *= base;
148 acc -= c;
151 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
    [all...]
strtoumax.c 72 uintmax_t acc, cutoff; local
105 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
120 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
127 acc = UINTMAX_MAX;
132 acc *= (uintmax_t)base;
133 acc += c;
137 acc = (uintmax_t)(-((intmax_t)acc));
140 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/python/cpython2/Demo/turtle/
tdemo_planet_and_moon.py 52 self.a = self.acc()
54 def acc(self): member in class:Star
66 self.a = self.acc()
  /external/webrtc/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...]
  /toolchain/binutils/binutils-2.25/libiberty/
strtoul.c 64 register unsigned long acc; local
90 for (acc = 0, any = 0;; c = *s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
103 acc *= base;
104 acc += c;
108 acc = ULONG_MAX;
111 acc = -acc;
114 return (acc);
    [all...]
strtoull.c 69 register ullong_type acc; local
95 for (acc = 0, any = 0;; c = *s++) {
104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
108 acc *= base;
109 acc += c;
113 acc = ULLONG_MAX;
116 acc = -acc;
119 return (acc);
    [all...]
strtol.c 93 register unsigned long acc; local
140 for (acc = 0, any = 0;; c = *s++) {
149 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
153 acc *= base;
154 acc += c;
158 acc = neg ? LONG_MIN : LONG_MAX;
161 acc = -acc;
164 return (acc);
    [all...]
strtoll.c 101 register ullong_type acc; local
148 for (acc = 0, any = 0;; c = *s++) {
157 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
161 acc *= base;
162 acc += c;
166 acc = neg ? LLONG_MIN : LLONG_MAX;
169 acc = -acc;
172 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...]

Completed in 4660 milliseconds

1 2 3 4 5 6 7 8 9