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

1 2 3 4 5 6 7 8 91011>>

  /device/google/contexthub/firmware/os/algos/calibration/accelerometer/
accel_cal.c 158 static void accelCalAlgoInit(struct AccelCalAlgo *acc, uint32_t fx,
161 accelGoodDataInit(&acc->agd, fx, fxb, fy, fyb, fz, fzb, fle);
162 initKasa(&acc->akf);
166 void accelCalInit(struct AccelCal *acc, uint32_t t0, uint32_t n_s, float th,
170 accelCalAlgoInit(&acc->ac1[0], fx, fxb, fy, fyb, fz, fzb, fle);
171 accelCalAlgoInit(&acc->ac1[1], fx, fxb, fy, fyb, fz, fzb, fle);
174 accelStillInit(&acc->asd, t0, n_s, th);
178 memset(&acc->adf, 0, sizeof(struct AccelStatsMem));
181 acc->x_bias = acc->y_bias = acc->z_bias = 0
    [all...]
  /external/syslinux/core/lwip/src/core/ipv4/
inet_chksum.c 83 u32_t acc; local
87 acc = 0;
98 acc += src;
104 acc += src;
107 acc = (acc >> 16) + (acc & 0x0000ffffUL);
108 if ((acc & 0xffff0000UL) != 0) {
109 acc = (acc >> 16) + (acc & 0x0000ffffUL)
276 u32_t acc; local
336 u32_t acc; local
411 u32_t acc; local
    [all...]
  /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...]
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...]
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...]
  /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/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/pdfium/core/fpdfdoc/
cpdf_metadata.cpp 23 CPDF_StreamAcc acc;
24 acc.LoadAllData(pStream, false);
25 m_pXmlElement = CXML_Element::Parse(acc.GetData(), acc.GetSize());
  /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...]
  /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...]
  /toolchain/binutils/binutils-2.25/libiberty/
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...]
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...]

Completed in 306 milliseconds

1 2 3 4 5 6 7 8 91011>>