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

/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/av/services/audiopolicy/service/
H A DAudioPolicyInterfaceImpl.cpp50 AutoCallerClear acc; local
62 AutoCallerClear acc; local
80 AutoCallerClear acc; local
106 AutoCallerClear acc; local
137 AutoCallerClear acc; local
150 AutoCallerClear acc; local
164 AutoCallerClear acc; local
192 AutoCallerClear acc; local
238 AutoCallerClear acc; local
275 AutoCallerClear acc; local
363 AutoCallerClear acc; local
400 AutoCallerClear acc; local
498 AutoCallerClear acc; local
604 AutoCallerClear acc; local
637 AutoCallerClear acc; local
656 AutoCallerClear acc; local
675 AutoCallerClear acc; local
692 AutoCallerClear acc; local
706 AutoCallerClear acc; local
721 AutoCallerClear acc; local
732 AutoCallerClear acc; local
746 AutoCallerClear acc; local
756 AutoCallerClear acc; local
766 AutoCallerClear acc; local
779 AutoCallerClear acc; local
792 AutoCallerClear acc; local
802 AutoCallerClear acc; local
836 AutoCallerClear acc; local
850 AutoCallerClear acc; local
860 AutoCallerClear acc; local
874 AutoCallerClear acc; local
888 AutoCallerClear acc; local
901 AutoCallerClear acc; local
914 AutoCallerClear acc; local
926 AutoCallerClear acc; local
936 AutoCallerClear acc; local
949 AutoCallerClear acc; local
965 AutoCallerClear acc; local
976 AutoCallerClear acc; local
989 AutoCallerClear acc; local
999 AutoCallerClear acc; local
1011 AutoCallerClear acc; local
1024 AutoCallerClear acc; local
1035 AutoCallerClear acc; local
[all...]
H A DAudioPolicyService.cpp340 AutoCallerClear acc; local
/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/base/core/java/android/hardware/usb/
H A DAccessoryFilter.java95 public boolean matches(UsbAccessory acc) { argument
96 if (mManufacturer != null && !acc.getManufacturer().equals(mManufacturer)) return false;
97 if (mModel != null && !acc.getModel().equals(mModel)) return false;
98 return !(mVersion != null && !acc.getVersion().equals(mVersion));
/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/core/java/com/android/server/content/
H A DSyncStorageEngine.java1024 AccountInfo acc = accIt.next();
1025 if (!ArrayUtils.contains(accounts, acc.accountAndUser.account)
1026 && acc.accountAndUser.userId == userId) {
1029 Slog.v(TAG, "Account removed: " + acc.accountAndUser);
1031 for (AuthorityInfo auth : acc.authorities.values()) {
H A DSyncManager.java3302 for (AccountAndUser acc : mRunningAccounts) {
3303 Slog.v(TAG, acc.toString());
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java5337 + mX.step + " dir=" + mX.dir + " acc=" + mX.acceleration
5340 + mY.step + " dir=" + mY.dir + " acc=" + mY.acceleration
5504 float acc = acceleration;
5508 if (scale > 1) acc *= scale;
5511 + " scale=" + scale + " acc=" + acc);
5512 acceleration = acc < MAX_ACCELERATION ? acc : MAX_ACCELERATION;
5516 if (scale > 1) acc /= scale;
5519 + " scale=" + scale + " acc
[all...]
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java1740 for (Account acc : getAccounts(parentUserId, mContext.getOpPackageName())) {
1741 if (acc.equals(account)) {
2668 for (Account acc : accounts.accountCache.get(account.type)) {
2669 if (acc.name.equals(account.name)) {

Completed in 1966 milliseconds