Searched refs:acc (Results 1 - 17 of 17) sorted by relevance

/frameworks/ml/nn/common/operations/internal/optimized/
H A Ddepthwiseconv_float.h55 float32x4_t acc[4]; local
57 acc[i] = vld1q_f32(acc_buffer_ptr + 4 * i);
60 acc[0] = vmlaq_f32(acc[0], input[0], filter[0]);
61 acc[1] = vmlaq_f32(acc[1], input[1], filter[1]);
62 acc[2] = vmlaq_f32(acc[2], input[2], filter[0]);
63 acc[3] = vmlaq_f32(acc[
79 float32x4_t acc[2]; local
113 float32x4_t acc[4]; local
136 float32x4_t acc[2]; local
156 float32x4_t acc = vld1q_f32(acc_buffer_ptr); local
169 float32x2_t acc = vld1_f32(acc_buffer_ptr); local
204 float32x4_t acc[4]; local
229 float32x4_t acc; local
270 float32x4_t acc[4]; local
296 float32x4_t acc[2]; local
341 float32x4_t acc[4]; local
368 float32x2_t acc[4]; local
392 float32x2_t acc[2]; local
437 float32x4_t acc[2]; local
473 float32x4_t acc[4]; local
728 float32x4_t acc[4]; local
754 float32x4_t acc = vld1q_f32(acc_buffer + i); local
769 float acc = acc_buffer[i]; local
[all...]
H A Ddepthwiseconv_uint8.h53 int32x4x2_t acc[2]; local
55 acc[i].val[0] = vld1q_s32(acc_buffer_ptr + 4 * i);
56 acc[i].val[1] = vld1q_s32(acc_buffer_ptr + 4 * i + 8);
67 acc[0].val[i] = vmlal_s16(acc[0].val[i], vget_low_s16(filter[i]),
69 acc[1].val[i] = vmlal_s16(acc[1].val[i], vget_high_s16(filter[i]),
74 vst1q_s32(acc_buffer_ptr + 4 * i, acc[i].val[0]);
75 vst1q_s32(acc_buffer_ptr + 4 * i + 8, acc[i].val[1]);
97 int32x4_t acc[ local
130 int32x4_t acc[2]; local
165 int32x4_t acc[4]; local
192 int32x4_t acc[2]; local
237 int32x4_t acc[8]; local
269 int32x4_t acc[4]; local
317 int32x4_t acc[4]; local
343 int32x4_t acc = vld1q_s32(acc_buffer_ptr); local
383 int32x4_t acc[4]; local
415 int32x4_t acc[2]; local
437 int32x4_t acc = vld1q_s32(acc_buffer_ptr); local
458 int32x2_t acc = vld1_s32(acc_buffer_ptr); local
497 int32x4_t acc[4]; local
523 int32x2_t acc = vld1_s32(acc_buffer_ptr); local
557 int32x4_t acc[8]; local
587 int32x4_t acc[4]; local
618 int32x4_t acc = vld1q_s32(acc_buffer_ptr); local
652 int32x4_t acc[4]; local
680 int32x4_t acc; local
720 int32x4_t acc[8]; local
757 int32x4_t acc[4]; local
838 int32x4x3_t acc[2]; local
904 int32x4x2_t acc[2]; local
978 int32x4_t acc[4]; local
1009 int32x4_t acc[2]; local
1067 int32x4_t acc[4]; local
1111 int32x4_t acc[4]; local
1147 int32x4_t acc[2]; local
1488 int32x4_t acc[4]; local
1562 int32x4_t acc = vld1q_s32(acc_buffer + i); local
1588 int32 acc = acc_buffer[i]; local
[all...]
H A Doptimized_ops.h403 int32x4_t acc[kPeel]; local
405 acc[k] = vdupq_n_s32(0);
436 acc[k] = vmlal_s16(acc[k], vget_low_s16(filter_val[k][p]),
440 acc[k] = vmlal_s16(acc[k], vget_high_s16(filter_val[k][p]),
461 acc[k] = vmlal_s16(acc[k], vget_low_s16(filter_val[k]),
465 acc[k] = vmlal_s16(acc[
[all...]
/frameworks/ml/nn/common/operations/internal/reference/
H A Ddepthwiseconv_uint8.h69 int32 acc = 0; local
82 acc +=
88 acc += bias_data[Offset(bias_dims, oc, 0, 0, 0)];
90 acc = MultiplyByQuantizedMultiplierSmallerThanOne(
91 acc, output_multiplier, output_shift);
92 acc += output_offset;
93 acc = std::max(acc, output_activation_min);
94 acc = std::min(acc, output_activation_ma
[all...]
H A Dreference_ops.h257 int32 acc = 0; local
272 acc +=
279 acc += bias_data[Offset(bias_dims, out_channel, 0, 0, 0)];
281 acc = MultiplyByQuantizedMultiplierSmallerThanOne(
282 acc, output_multiplier, output_shift);
283 acc += output_offset;
284 acc = std::max(acc, output_activation_min);
285 acc = std::min(acc, output_activation_ma
441 int32 acc = 0; local
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioCommon.h55 inline audio_coef_sample_acc_t mac_coef_sample(audio_coef_t x, audio_sample_t y, audio_coef_sample_acc_t acc) { argument
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) { argument
61 if (acc < 0) {
62 acc += AUDIO_COEF_ONE - 1;
64 return (audio_sample_t) (acc >> AUDIO_COEF_PRECISION);
H A DAudioBiquadFilter.cpp163 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...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
H A DTrackedGarbage.java89 ArrayMap<Class<?>, Integer> acc = new ArrayMap<>();
92 acc.put(ref.clazz, acc.getOrDefault(ref.clazz, 0) + 1);
98 for (Map.Entry<Class<?>, Integer> entry : acc.entrySet()) {
/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/perf/
H A DTimedStatement.java78 byte acc = 0;
80 acc += buffer[i];
82 buffer[0] = acc;
/frameworks/av/media/libaudioprocessing/
H A DAudioResamplerFirProcess.h88 inline void acc(TC coef, const TI*& data) { function in class:android::Accumulator
90 Accumulator<CHANNELS-1, TO>::acc(coef, data);
106 inline void acc(TC coef __unused, const TI*& data __unused) { function in class:android::Accumulator
202 accum.acc(c, tmp_data);
210 accum.acc(c, tmp_data);
/frameworks/av/services/camera/libcameraservice/gui/
H A DRingBufferConsumer.cpp70 BufferInfo acc, cur; local
93 acc = cur;
94 accPtr = &acc;
96 } // else acc = acc
/frameworks/native/services/sensorservice/
H A DSensorFusion.cpp108 const vec3_t acc(event.data);
111 mFusions[i].handleAcc(acc, dT);
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbProfileGroupSettingsManager.java501 public boolean matches(UsbAccessory acc) { argument
502 if (mManufacturer != null && !acc.getManufacturer().equals(mManufacturer)) return false;
503 if (mModel != null && !acc.getModel().equals(mModel)) return false;
504 return !(mVersion != null && !acc.getVersion().equals(mVersion));
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java968 AccountInfo acc = accIt.next();
969 if (!ArrayUtils.contains(accounts, acc.accountAndUser.account)
970 && acc.accountAndUser.userId == userId) {
973 Slog.v(TAG, "Account removed: " + acc.accountAndUser);
975 for (AuthorityInfo auth : acc.authorities.values()) {
H A DSyncManager.java2985 for (AccountAndUser acc : mRunningAccounts) {
2986 Slog.v(TAG, acc.toString());
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java5013 + mX.step + " dir=" + mX.dir + " acc=" + mX.acceleration
5016 + mY.step + " dir=" + mY.dir + " acc=" + mY.acceleration
5180 float acc = acceleration;
5184 if (scale > 1) acc *= scale;
5187 + " scale=" + scale + " acc=" + acc);
5188 acceleration = acc < MAX_ACCELERATION ? acc : MAX_ACCELERATION;
5192 if (scale > 1) acc /= scale;
5195 + " scale=" + scale + " acc
[all...]
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java1727 for (Account acc : getAccounts(parentUserId, mContext.getOpPackageName())) {
1728 if (acc.equals(account)) {
2656 for (Account acc : accounts.accountCache.get(account.type)) {
2657 if (acc.name.equals(account.name)) {

Completed in 657 milliseconds