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

1 2 3 4 5 6 7 8 91011

  /external/pdfium/core/fxcodec/jbig2/
JBig2_BitStream_unittest.cpp 19 auto acc = pdfium::MakeRetain<CPDF_StreamAcc>(in_stream.get()); local
20 acc->LoadAllDataFiltered();
22 CJBig2_BitStream stream(acc);
44 auto acc = pdfium::MakeRetain<CPDF_StreamAcc>(in_stream.get()); local
45 acc->LoadAllDataFiltered();
47 CJBig2_BitStream stream(acc);
56 auto acc = pdfium::MakeRetain<CPDF_StreamAcc>(in_stream.get()); local
57 acc->LoadAllDataFiltered();
59 CJBig2_BitStream stream(acc);
72 auto acc = pdfium::MakeRetain<CPDF_StreamAcc>(in_stream.get()) local
89 auto acc = pdfium::MakeRetain<CPDF_StreamAcc>(in_stream.get()); local
110 auto acc = pdfium::MakeRetain<CPDF_StreamAcc>(in_stream.get()); local
    [all...]
  /external/python/cpython3/Include/
accu.h 26 PyAPI_FUNC(int) _PyAccu_Init(_PyAccu *acc); variable
27 PyAPI_FUNC(int) _PyAccu_Accumulate(_PyAccu *acc, PyObject *unicode);
28 PyAPI_FUNC(PyObject *) _PyAccu_FinishAsList(_PyAccu *acc); variable
29 PyAPI_FUNC(PyObject *) _PyAccu_Finish(_PyAccu *acc); variable
30 PyAPI_FUNC(void) _PyAccu_Destroy(_PyAccu *acc); variable
  /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...]
  /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/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/python/cpython3/Lib/turtledemo/
planet_and_moon.py 51 self.a = self.acc()
53 def acc(self): member in class:Star
65 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.27/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...]
  /external/pdfium/core/fxcrt/
cfx_seekablemultistream.cpp 27 for (const auto& acc : m_Data)
28 dwSize += acc->GetSize();
38 const auto& acc = m_Data[index]; local
39 FX_FILESIZE dwSize = acc->GetSize();
47 const auto& acc = m_Data[index]; local
48 uint32_t dwSize = acc->GetSize();
50 memcpy(buffer, acc->GetData() + offset, dwRead);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
TrackedGarbage.java 89 ArrayMap<Class<?>, Integer> acc = new ArrayMap<>(); local
92 acc.put(ref.clazz, acc.getOrDefault(ref.clazz, 0) + 1);
98 for (Map.Entry<Class<?>, Integer> entry : acc.entrySet()) {
  /art/test/562-bce-preheader/src/
Main.java 27 int acc = 0; local
38 acc += x[i][i];
41 return acc;
51 int acc = 0; local
62 acc += y[0];
68 acc += x[i];
70 return acc;
  /bionic/libc/bionic/
strtol.cpp 75 T acc = 0; local
86 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
88 acc = Min;
92 acc *= base;
93 acc -= c;
98 if (acc == Min) {
100 acc = Max;
102 acc = -acc;
138 T acc = 0; local
    [all...]
  /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
  /external/turbine/java/com/google/turbine/parse/
UnicodeEscapePreprocessor.java 76 char acc = (char) ((hexDigit(ch) & 0xff) << 12); local
78 acc |= (char) ((hexDigit(ch) & 0xff) << 8);
80 acc |= (char) ((hexDigit(ch) & 0xff) << 4);
82 acc |= (char) (hexDigit(ch) & 0xff);
83 ch = acc;

Completed in 425 milliseconds

1 2 3 4 5 6 7 8 91011