Searched defs:delay (Results 1 - 25 of 73) sorted by relevance

123

/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DDelayMix_16x16.c29 LVM_INT16 *delay, /* Delay buffer */
42 temp = (LVM_INT16)((LVM_UINT32)((LVM_INT32)(*dst) + (LVM_INT32)delay[Offset]) >> 1);
46 delay[Offset] = *src;
52 temp = (LVM_INT16)((LVM_UINT32)((LVM_INT32)(*dst) - (LVM_INT32)delay[Offset]) >> 1);
56 delay[Offset] = *src;
60 /* Make the reverb delay buffer a circular buffer */
28 DelayMix_16x16(const LVM_INT16 *src, LVM_INT16 *delay, LVM_INT16 size, LVM_INT16 *dst, LVM_INT16 *pOffset, LVM_INT16 n) argument
H A DDelayWrite_32.c29 LVM_INT32 *delay, /* Delay buffer */
39 delay[Offset] = *src;
43 /* Make the delay buffer a circular buffer */
28 DelayWrite_32(const LVM_INT32 *src, LVM_INT32 *delay, LVM_UINT16 size, LVM_UINT16 *pOffset, LVM_INT16 n) argument
H A DDelayAllPass_Sat_32x16To32.c30 void DelayAllPass_Sat_32x16To32( LVM_INT32 *delay, /* Delay buffer */ argument
33 LVM_UINT16 DelayOffset, /* Simple delay offset */
34 LVM_UINT16 *pAllPassOffset, /* All pass filter delay offset */
46 MUL32x16INTO32(delay[AllPassOffset], coeff, temp, 15)
48 b = delay[DelayOffset];
69 b = delay[AllPassOffset];
82 delay[AllPassOffset] = c;
85 /* Make the delay buffer a circular buffer */
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
H A DAppearAnimationCreator.java26 void createAnimation(T animatedObject, long delay, long duration, argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationCustomViewWrapper.java37 public void setDark(boolean dark, boolean fade, long delay) { argument
39 mInvertHelper.fade(dark, delay);
H A DNotificationMediaViewWrapper.java32 public void setDark(boolean dark, boolean fade, long delay) { argument
35 setPictureGrayscale(dark, fade, delay);
H A DNotificationOverflowContainer.java54 public void setDark(boolean dark, boolean fade, long delay) { argument
55 super.setDark(dark, fade, delay);
59 mViewInvertHelper.fade(dark, delay);
H A DNotificationViewWrapper.java59 * @param delay if fading, the delay of the animation
61 public abstract void setDark(boolean dark, boolean fade, long delay); argument
H A DSpeedBumpView.java79 public void performVisibilityAnimation(boolean nowVisible, long delay) { argument
80 animateDivider(nowVisible, delay, null /* onFinishedRunnable */);
87 * @param delay the delay after the animation should start
91 public void animateDivider(boolean nowVisible, long delay, Runnable onFinishedRunnable) { argument
97 .setStartDelay(delay)
121 performVisibilityAnimation(false, 0 /* delay */);
125 public void performAddAnimation(long delay, long duration) { argument
127 performVisibilityAnimation(true, delay);
H A DStackScrollerDecorView.java122 public void performAddAnimation(long delay, long duration) { argument
123 // TODO: use delay and duration
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DViewInvertHelper.java48 public void fade(final boolean invert, long delay) { argument
69 animator.setStartDelay(delay);
/frameworks/av/media/libstagefright/timedtext/
H A DTextDescriptions.cpp236 // 'dlay' box specifies a delay after a scroll in and/or
245 uint32_t delay = *(tmpData) << 24 | *(tmpData + 1) << 16 local
247 parcel->writeInt32(delay);
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DConfigurator.java202 * Sets a delay between key presses when injecting text input.
205 * @param delay Delay value in milliseconds
209 public Configurator setKeyInjectionDelay(long delay) { argument
210 mKeyInjectionDelay = delay;
215 * Gets the current delay between key presses when injecting text input.
218 * @return current delay in milliseconds
/frameworks/base/services/backup/java/com/android/server/backup/
H A DKeyValueBackupJob.java60 public static void schedule(Context ctx, long delay) { argument
63 if (delay <= 0) {
64 delay = BATCH_INTERVAL + new Random().nextInt(FUZZ_MILLIS);
68 + (delay / 1000 / 60) + " minutes");
72 .setMinimumLatency(delay)
78 sNextScheduled = System.currentTimeMillis() + delay;
/frameworks/base/services/core/java/com/android/server/notification/
H A DRankingReconsideration.java41 public RankingReconsideration(String key, long delay) { argument
42 mDelay = delay;
/frameworks/native/services/sensorservice/
H A DSensorDevice.h49 BatchParams(int flag, nsecs_t delay, nsecs_t timeout): flags(flag), batchDelay(delay), argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcRetryAlarmController.java106 * the retry delay.
110 * @return < 0 if no retry is needed otherwise the delay to the next SETUP_DATA_CALL
139 public void startRetryAlarm(int what, int tag, int delay) { argument
145 log("startRetryAlarm: next attempt in " + (delay / 1000) + "s" +
152 SystemClock.elapsedRealtime() + delay, retryIntent);
/frameworks/wilhelm/tests/listening/
H A DseekTorture.c121 SLmillisecond delay = 100 + (rand() & 8191); local
122 printf("sleep %u\n", (unsigned) delay);
123 usleep(delay * 1000);
/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java33 * is used by {@link android.view.ViewGroup} to compute the delay by which each
34 * child's animation start must be offset. The delay is computed by using
37 * This standard implementation computes the delay by multiplying a fixed
41 * of computing the delay. For instance, a
43 * delay based on the column and row indices of the child in its parent view
46 * Information used to compute the animation delay of each child are stored
128 * Creates a new layout animation controller with a delay of 50%
138 * Creates a new layout animation controller with the specified delay
142 * @param delay the delay b
144 LayoutAnimationController(Animation animation, float delay) argument
283 setDelay(float delay) argument
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DSyncRunner.java173 protected void scheduleFilterWake(Filter filter, int delay) { argument
187 }, delay, TimeUnit.MILLISECONDS);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DStackScrollState.java154 state.hideSensitive, false /* animated */, 0 /* delay */, 0 /* duration */);
160 view.setDark(state.dark, false /* animate */, 0 /* delay */);
237 long delay) {
243 speedBump.animateDivider(startIsAboveNext, delay, null /* onFinishedRunnable */);
236 performSpeedBumpAnimation(int i, SpeedBumpView speedBump, StackViewState state, long delay) argument
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNotificationController.java204 * @param delay time in milliseconds after which the notification should be made
208 int delay) {
207 setNotificationVisible(boolean visible, int numNetworks, boolean force, int delay) argument
/frameworks/base/cmds/hid/src/com/android/commands/hid/
H A DDevice.java85 public void addDelay(int delay) { argument
86 mEventTime += delay;
/frameworks/base/core/java/android/net/
H A DDnsPinger.java81 * arg2 is the delay, or is negative on error.
267 public int pingDnsAsync(InetAddress dns, int timeout, int delay) { argument
270 new DnsArg(dns, mCurrentToken.get())), delay);
/frameworks/base/core/java/com/android/internal/widget/
H A DDrawableHolder.java65 * @param delay the delay to start the animation, in ms.
70 public ObjectAnimator addAnimTo(long duration, long delay, argument
77 anim.setStartDelay(delay);

Completed in 568 milliseconds

123