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

1 2

  /external/linux-kselftest/tools/testing/selftests/sync/
sync_alloc.c 34 int timeline, valid; local
36 timeline = sw_sync_timeline_create();
37 valid = sw_sync_timeline_is_valid(timeline);
38 ASSERT(valid, "Failure allocating timeline\n");
40 sw_sync_timeline_destroy(timeline);
46 int timeline, fence, valid; local
48 timeline = sw_sync_timeline_create();
49 valid = sw_sync_timeline_is_valid(timeline);
50 ASSERT(valid, "Failure allocating timeline\n");
52 fence = sw_sync_fence_create(timeline, "allocFence", 1)
63 int fence, timeline; local
    [all...]
sync_fence.c 2 * sync fence tests with one timeline
35 int timeline = sw_sync_timeline_create(); local
37 valid = sw_sync_timeline_is_valid(timeline);
38 ASSERT(valid, "Failure allocating timeline\n");
40 fence = sw_sync_fence_create(timeline, "allocFence", 5);
48 /* Advance timeline from 0 -> 1 */
49 ret = sw_sync_timeline_inc(timeline, 1);
50 ASSERT(ret == 0, "Failure advancing timeline\n");
57 ret = sw_sync_timeline_inc(timeline, 4);
65 ret = sw_sync_timeline_inc(timeline, 10)
79 int timeline = sw_sync_timeline_create(); local
    [all...]
sync_merge.c 35 int timeline = sw_sync_timeline_create(); local
37 valid = sw_sync_timeline_is_valid(timeline);
38 ASSERT(valid, "Failure allocating timeline\n");
40 fence = sw_sync_fence_create(timeline, "allocFence", 5);
51 sw_sync_timeline_inc(timeline, 5);
57 sw_sync_timeline_destroy(timeline);
sync_stress_parallelism.c 36 int timeline; member in struct:__anon25040
43 int timeline = test_data_two_threads.timeline; local
48 fence = sw_sync_fence_create(timeline, "fence",
66 ret = sw_sync_timeline_inc(timeline, 1);
67 ASSERT(ret == 0, "Advancing timeline failed\n");
79 int timeline = sw_sync_timeline_create(); local
81 valid = sw_sync_timeline_is_valid(timeline);
82 ASSERT(valid, "Failure allocating timeline\n");
86 test_data_two_threads.timeline = timeline
    [all...]
sync_stress_merge.c 44 int timeline, timeline_offset, sync_point; local
65 timeline = timelines[timeline_offset];
68 /* Keep track of the latest sync_point in each timeline. */
75 tmpfence = sw_sync_fence_create(timeline, "fence", sync_point);
100 /* Increment the timeline to the last sync_point */
  /external/toolchain-utils/cros_utils/
timeline_test.py 11 import timeline
15 """Tests for the Timeline class."""
18 tl = timeline.Timeline()
26 tl = timeline.Timeline()
35 tl = timeline.Timeline()
43 tl = timeline.Timeline()
    [all...]
  /system/core/libsync/tests/
sync_test.cpp 26 // C++ wrapper class for sync timeline.
128 SyncFence(const SyncTimeline &timeline,
134 int fd = sw_sync_fence_create(timeline.getFd(), name ? name : autoName.c_str(), value);
243 TEST(AllocTest, Timeline) {
244 SyncTimeline timeline; local
245 ASSERT_TRUE(timeline.isValid());
249 SyncTimeline timeline; local
250 ASSERT_TRUE(timeline.isValid());
252 SyncFence fence(timeline, 1);
258 int timeline = sw_sync_timeline_create() local
273 SyncTimeline timeline; local
302 SyncTimeline timeline; local
329 SyncTimeline timeline; local
369 SyncTimeline timeline; local
387 SyncTimeline timeline; local
454 SyncTimeline timeline; local
584 const SyncTimeline& timeline = timelines[timelineOffset]; local
    [all...]
  /external/drm_hwcomposer/
virtualcompositorworker.h 44 int FinishComposition(int timeline);
hwcomposer.cpp 74 ALOGE("Failed to increment dummy sync timeline %d", ret);
89 DummySwSyncTimeline &timeline)
90 : fd_(fd), description_(description), timeline_(timeline) {
929 ALOGE("Failed to create dummy sw sync timeline %d", ret);
  /external/toolchain-utils/automation/common/
state_machine.py 16 in a timeline object.
27 self.timeline = events.EventHistory()
28 self.timeline.AddEvent(self._state)
51 self.timeline.AddEvent(self._state)
54 self.timeline.last.Finish()
job_group.py 60 return self.status.timeline[1].time_started
job.py 82 def timeline(self): member in class:Job
83 return self._state.timeline
99 res.append(self.timeline.GetTransitionEventReport())
  /external/toolchain-utils/crosperf/
benchmark_run.py 15 from cros_utils import timeline
58 self.timeline = timeline.Timeline()
59 self.timeline.Record(STATUS_PENDING)
104 self.timeline.Record(STATUS_WAITING)
126 self.timeline.Record(STATUS_SUCCEEDED)
128 if self.timeline.GetLastEvent() != STATUS_FAILED:
130 self.timeline.Record(STATUS_FAILED)
135 if self.timeline.GetLastEvent() != STATUS_FAILED
    [all...]
benchmark_run_unittest.py 189 br.timeline.Record = MockRecordStatus
279 br.timeline.GetLastEvent = GetLastEventPassed
280 br.timeline.Record = RecordStub
307 br.timeline.GetLastEvent = GetLastEventFailed
308 br.timeline.Record = RecordStub
386 br.timeline.Record = MockRecord
experiment_status.py 91 status_bins[benchmark_run.timeline.GetLastEvent()].append(benchmark_run)
121 t_last = benchmark_run.timeline.GetLastEventTime()
  /external/skia/experimental/docs/
animationCommon.js 11 this.timeline = [];
18 function addActions(frame, timeline) {
23 loopOver(action, timeline);
36 for (var index = animationState.timelineIndex; index < animationState.timeline.length; ++index) {
37 var animation = animationState.timeline[index];
238 addActions("_default", animationState.timeline);
239 addActions(frame, animationState.timeline);
240 for (var index = 0; index < animationState.timeline.length; ++index) {
241 animationState.timeline[index].position = index;
243 animationState.timeline.sort(function(a, b)
    [all...]
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Timeline.java 8 * A Timeline can be used to create complex animations made of sequences and
27 * Timeline.createSequence()
46 public final class Timeline extends BaseTween<Timeline> {
51 private static final Pool.Callback<Timeline> poolCallback = new Pool.Callback<Timeline>() {
52 @Override public void onPool(Timeline obj) {obj.reset();}
53 @Override public void onUnPool(Timeline obj) {obj.reset();}
56 static final Pool<Timeline> pool = new Pool<Timeline>(10, poolCallback)
    [all...]
  /external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
TimelineApplet.java 4 import aurelienribon.tweenengine.Timeline;
144 String code = "Timeline.createSequence()" +
189 private Timeline timeline; field in class:TimelineApplet.MyCanvas
247 timeline = Timeline.createSequence()
262 if (rptCnt > 0 && yoyo) timeline.repeatYoyo(rptCnt, rpDelay);
263 else if (rptCnt > 0) timeline.repeat(rptCnt, rpDelay);
265 timeline.addCallback(EventType.COMPLETE, new TweenCallback() {
267 timeline = null
    [all...]
  /external/autotest/client/site_tests/performance_InboxInputLatency/
performance_InboxInputLatency.py 16 from telemetry.timeline import model as model_module
17 from telemetry.timeline import tracing_config
  /external/toolchain-utils/automation/server/monitor/
dashboard.py 72 for evlog in self._job.timeline.GetTransitionEventHistory()]
128 'elapsed': job.timeline.GetTotalTime()}
187 'timeline': job.GetTimeline()
  /cts/hostsidetests/security/securityPatch/CVE-2016-8448/
mtkfb.h 368 struct sw_sync_timeline *timeline; member in struct:mtkfb_device
  /frameworks/native/libs/gui/include/gui/
FrameTimestamps.h 149 void applyFenceDelta(FenceTimeline* timeline,
  /frameworks/native/libs/gui/
FrameTimestamps.cpp 316 void ProducerFrameEventHistory::applyFenceDelta(FenceTimeline* timeline,
329 timeline->push(*dst);
  /external/webrtc/
PRESUBMIT.py 99 ' 3. Create a timeline and plan for when the deprecated method will '
  /packages/apps/TV/libs/
exoplayer_v2.jar 

Completed in 573 milliseconds

1 2