Searched refs:schedule (Results 1 - 25 of 225) sorted by relevance

123456789

/external/v8/test/unittests/compiler/
H A Dscheduler-rpo-unittest.cc5 #include "src/compiler/schedule.h"
61 TestLoop* CreateLoop(Schedule* schedule, int count) { argument
66 loop->nodes[i] = schedule->NewBasicBlock();
68 schedule->AddSuccessorForTesting(loop->nodes[i - 1], loop->nodes[i]);
71 schedule->AddSuccessorForTesting(loop->nodes[count - 1], loop->nodes[0]);
77 Schedule schedule(zone());
78 BasicBlockVector* order = Scheduler::ComputeSpecialRPO(zone(), &schedule);
80 EXPECT_EQ(schedule.start(), order->at(0));
84 Schedule schedule(zone());
86 schedule
[all...]
H A Deffect-control-linearizer-unittest.cc10 #include "src/compiler/schedule.h"
43 BasicBlock* AddBlockToSchedule(Schedule* schedule) { argument
44 BasicBlock* block = schedule->NewBasicBlock();
45 block->set_rpo_number(static_cast<int32_t>(schedule->rpo_order()->size()));
46 schedule->rpo_order()->push_back(block);
53 Schedule schedule(zone());
64 BasicBlock* start = schedule.start();
65 schedule.rpo_order()->push_back(start);
69 schedule.AddNode(start, graph()->start());
70 schedule
75 EffectControlLinearizer introducer(jsgraph(), &schedule, zone()); local
135 EffectControlLinearizer introducer(jsgraph(), &schedule, zone()); local
254 EffectControlLinearizer introducer(jsgraph(), &schedule, zone()); local
320 EffectControlLinearizer introducer(jsgraph(), &schedule, zone()); local
[all...]
H A Dschedule-unittest.cc6 #include "src/compiler/schedule.h"
87 Schedule schedule(zone());
88 EXPECT_NE(nullptr, schedule.start());
89 EXPECT_EQ(schedule.start(),
90 schedule.GetBlockById(BasicBlock::Id::FromInt(0)));
91 EXPECT_NE(nullptr, schedule.end());
92 EXPECT_EQ(schedule.end(), schedule.GetBlockById(BasicBlock::Id::FromInt(1)));
93 EXPECT_NE(schedule.start(), schedule
[all...]
/external/junit/src/org/junit/runners/model/
H A DRunnerScheduler.java13 void schedule(Runnable childStatement); method in interface:RunnerScheduler
/external/clang/test/OpenMP/
H A Dfor_schedule_messages.cpp14 #pragma omp for schedule // expected-error {{expected '(' after 'schedule'}}
16 #pragma omp for schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp for schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}}
20 #pragma omp for schedule (auto // expected-error {{expected ')'}} expected-note {{to match this '('}}
22 #pragma omp for schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
24 #pragma omp for schedule (aut
[all...]
H A Dfor_simd_schedule_messages.cpp14 #pragma omp for simd schedule // expected-error {{expected '(' after 'schedule'}}
16 #pragma omp for simd schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp for simd schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}}
20 #pragma omp for simd schedule (auto // expected-error {{expected ')'}} expected-note {{to match this '('}}
22 #pragma omp for simd schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
24 #pragma omp for simd schedule (aut
[all...]
H A Dparallel_for_schedule_messages.cpp14 #pragma omp parallel for schedule // expected-error {{expected '(' after 'schedule'}}
16 #pragma omp parallel for schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp parallel for schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}}
20 #pragma omp parallel for schedule (auto // expected-error {{expected ')'}} expected-note {{to match this '('}}
22 #pragma omp parallel for schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
24 #pragma omp parallel for schedule (aut
[all...]
H A Dparallel_for_simd_schedule_messages.cpp14 #pragma omp parallel for simd schedule // expected-error {{expected '(' after 'schedule'}}
16 #pragma omp parallel for simd schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp parallel for simd schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}}
20 #pragma omp parallel for simd schedule (auto // expected-error {{expected ')'}} expected-note {{to match this '('}}
22 #pragma omp parallel for simd schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
24 #pragma omp parallel for simd schedule (aut
[all...]
H A Dopenmp_common.c12 #pragma omp parallel for private(j) schedule(static) if (tree1->totleaf > 1024) // expected-error {{unexpected OpenMP directive '#pragma omp parallel for'}}
H A Dparallel_for_codegen.cpp25 #pragma omp parallel for schedule(static, char(a))
75 #pragma omp parallel for schedule(static)
118 #pragma omp parallel for schedule(static, 5)
180 #pragma omp parallel for schedule(dynamic)
224 #pragma omp parallel for schedule(guided, 7)
270 #pragma omp parallel for schedule(auto) collapse(2)
318 #pragma omp parallel for collapse(2) schedule(runtime)
366 #pragma omp parallel for schedule(static, 5) private(arr)
382 // Check source line corresponds to "#pragma omp parallel for schedule(static, 5)" above:
H A Dfor_ast_print.cpp16 #pragma omp for schedule(dynamic) linear(a)
17 // CHECK-NEXT: #pragma omp for schedule(dynamic) linear(a)
23 #pragma omp for private(argc, b), firstprivate(c, d), lastprivate(d, f) collapse(N) schedule(static, N) ordered(N) nowait linear(a : N)
36 // CHECK-NEXT: #pragma omp for private(argc,b) firstprivate(c,d) lastprivate(d,f) collapse(N) schedule(static, N) ordered(N) nowait linear(a: N)
55 #pragma omp for schedule(guided, argc)
56 // CHECK-NEXT: #pragma omp for schedule(guided, argc)
62 #pragma omp for private(argc, b), firstprivate(argv, c), lastprivate(d, f) collapse(2) schedule(auto) ordered nowait linear(g:-1)
67 // CHECK-NEXT: #pragma omp for private(argc,b) firstprivate(argv,c) lastprivate(d,f) collapse(2) schedule(auto) ordered nowait linear(g: -1)
H A Dordered_codegen.cpp14 #pragma omp for schedule(static) ordered
63 #pragma omp for schedule(dynamic) ordered
116 #pragma omp for schedule(auto) collapse(2) ordered
169 #pragma omp for collapse(2) schedule(runtime) ordered
H A Dparallel_for_ast_print.cpp18 #pragma omp parallel for schedule(dynamic) default(none) copyin(g) linear(a)
19 // CHECK: #pragma omp parallel for schedule(dynamic) default(none) copyin(g) linear(a)
24 #pragma omp parallel for private(argc, b), firstprivate(c, d), lastprivate(d, f) collapse(N) schedule(static, N) ordered(N) if (parallel :argc) num_threads(N) default(shared) shared(e) reduction(+ : h) linear(a:N)
36 // CHECK-NEXT: #pragma omp parallel for private(argc,b) firstprivate(c,d) lastprivate(d,f) collapse(N) schedule(static, N) ordered(N) if(parallel: argc) num_threads(N) default(shared) shared(e) reduction(+: h) linear(a: N)
57 #pragma omp parallel for schedule(guided, argc) default(none) copyin(g) linear(a)
58 // CHECK: #pragma omp parallel for schedule(guided, argc) default(none) copyin(g) linear(a)
63 #pragma omp parallel for private(argc, b), firstprivate(argv, c), lastprivate(d, f) collapse(2) schedule(auto) ordered if (argc) num_threads(a) default(shared) shared(e) reduction(+ : h) linear(a:-5)
67 // CHECK-NEXT: #pragma omp parallel for private(argc,b) firstprivate(argv,c) lastprivate(d,f) collapse(2) schedule(auto) ordered if(argc) num_threads(a) default(shared) shared(e) reduction(+: h) linear(a: -5)
/external/v8/test/cctest/compiler/
H A Dtest-instruction.cc13 #include "src/compiler/schedule.h"
29 schedule(zone()),
35 Schedule schedule; member in class:v8::internal::compiler::InstructionTester
43 if (schedule.rpo_order()->size() == 0) {
45 Scheduler::ComputeSpecialRPO(main_zone(), &schedule); local
46 CHECK_NE(0u, schedule.rpo_order()->size());
49 TestInstrSeq::InstructionBlocksFor(main_zone(), &schedule);
56 schedule.AddNode(schedule.start(), node);
62 schedule
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DWrappingScheduledExecutorService.java41 public final ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { method in class:WrappingScheduledExecutorService
42 return delegate.schedule(wrapTask(command), delay, unit);
46 public final <V> ScheduledFuture<V> schedule(Callable<V> task, long delay, TimeUnit unit) { method in class:WrappingScheduledExecutorService
47 return delegate.schedule(wrapTask(task), delay, unit);
H A DListeningScheduledExecutorService.java40 ListenableScheduledFuture<?> schedule( method in interface:ListeningScheduledExecutorService
45 <V> ListenableScheduledFuture<V> schedule( method in interface:ListeningScheduledExecutorService
H A DAbstractScheduledService.java46 * the {@link #startUp} and {@link #shutDown} methods and also uses that service to schedule the
54 * #runOneIteration} takes longer than its schedule defines, then subsequent executions may start
105 * service with a fixed schedule. If more flexibility is needed then consider subclassing
125 public Future<?> schedule(AbstractService service, ScheduledExecutorService executor,
144 public Future<?> schedule(AbstractService service, ScheduledExecutorService executor,
152 abstract Future<?> schedule(AbstractService service, ScheduledExecutorService executor, method in class:AbstractScheduledService.Scheduler
201 runningTask = scheduler().schedule(delegate, executorService, task);
391 * use a dynamically changing schedule. After every execution of the task, assuming it hasn't
453 final Schedule schedule = CustomScheduler.this.getNextSchedule();
454 currentFuture = executor.schedule(thi
488 final Future<?> schedule(AbstractService service, ScheduledExecutorService executor, method in class:AbstractScheduledService.CustomScheduler
[all...]
/external/v8/src/compiler/
H A Dbasic-block-instrumentor.h24 Graph* graph, Schedule* schedule);
H A Dpipeline.h37 // Run the pipeline on a machine graph and generate code. The {schedule} must
41 Graph* graph, Schedule* schedule,
49 // Run the pipeline on a machine graph and generate code. If {schedule} is
50 // {nullptr}, then compute a new schedule for code generation.
53 Schedule* schedule = nullptr);
60 // Run the pipeline on a machine graph and generate code. If {schedule} is
61 // {nullptr}, then compute a new schedule for code generation.
65 Schedule* schedule = nullptr);
H A Dbasic-block-instrumentor.cc15 #include "src/compiler/schedule.h"
51 CompilationInfo* info, Graph* graph, Schedule* schedule) {
54 size_t n_blocks = static_cast<size_t>(schedule->RpoBlockCount()) - 1;
63 // Capture the schedule string before instrumentation.
66 os << *schedule; local
74 BasicBlockVector* blocks = schedule->rpo_order();
100 schedule->SetBlockForNode(block, to_insert[i]);
50 Instrument( CompilationInfo* info, Graph* graph, Schedule* schedule) argument
/external/jetty/src/java/org/eclipse/jetty/util/thread/
H A DTimeout.java157 public void schedule(Task task) method in class:Timeout
159 schedule(task,0L);
167 public void schedule(Task task,long delay) method in class:Timeout
311 public void schedule(Timeout timer) method in class:Timeout.Task
313 timer.schedule(this);
321 public void schedule(Timeout timer, long delay) method in class:Timeout.Task
323 timer.schedule(this,delay);
335 timeout.schedule(this,_delay);
/external/boringssl/include/openssl/
H A Ddes.h88 /* DES_set_key performs a key schedule and initialises |schedule| with |key|. */
90 DES_key_schedule *schedule);
98 * |schedule|. */
100 const DES_key_schedule *schedule,
107 const DES_key_schedule *schedule,
144 DES_key_schedule *schedule);
/external/boringssl/src/include/openssl/
H A Ddes.h88 /* DES_set_key performs a key schedule and initialises |schedule| with |key|. */
90 DES_key_schedule *schedule);
98 * |schedule|. */
100 const DES_key_schedule *schedule,
107 const DES_key_schedule *schedule,
144 DES_key_schedule *schedule);
/external/jmdns/src/javax/jmdns/impl/
H A DDNSTaskStarter.java203 * @see java.util.Timer#schedule(java.util.TimerTask, long)
206 public synchronized void schedule(TimerTask task, long delay) { method in class:DNSTaskStarter.DNSTaskStarterImpl.StarterTimer
208 super.schedule(task, delay);
213 * @see java.util.Timer#schedule(java.util.TimerTask, java.util.Date)
216 public synchronized void schedule(TimerTask task, Date time) { method in class:DNSTaskStarter.DNSTaskStarterImpl.StarterTimer
218 super.schedule(task, time);
223 * @see java.util.Timer#schedule(java.util.TimerTask, long, long)
226 public synchronized void schedule(TimerTask task, long delay, long period) { method in class:DNSTaskStarter.DNSTaskStarterImpl.StarterTimer
228 super.schedule(task, delay, period);
233 * @see java.util.Timer#schedule(jav
236 public synchronized void schedule(TimerTask task, Date firstTime, long period) { method in class:DNSTaskStarter.DNSTaskStarterImpl.StarterTimer
[all...]
/external/autotest/client/tests/kvm/deps/
H A Dwhql_submission_15.cs304 // Create a schedule, add jobs to it and run it
305 ISchedule schedule = script.CreateNewSchedule();
309 schedule.AddScheduleItem(item);
311 schedule.AddSubmission(submission);
312 schedule.SetResourcePool(newPool);
313 script.RunSchedule(schedule);
322 // Report results in a Python readable format and count completed and failed schedule jobs
326 foreach (IResult r in schedule.GetResults())
342 } while (numCompleted < schedule.GetResults().Length && DateTime.Now < endTime);
347 foreach (IResult r in schedule
[all...]

Completed in 642 milliseconds

123456789