/external/mesa3d/src/gallium/drivers/vc4/ |
vc4_job.c | 42 vc4_job_free(struct vc4_context *vc4, struct vc4_job *job) 44 struct vc4_bo **referenced_bos = job->bo_pointers.base; 45 for (int i = 0; i < cl_offset(&job->bo_handles) / 4; i++) { 49 remove_from_ht(vc4->jobs, &job->key); 51 if (job->color_write) { 52 remove_from_ht(vc4->write_jobs, job->color_write->texture); 53 pipe_surface_reference(&job->color_write, NULL); 55 if (job->msaa_color_write) { 56 remove_from_ht(vc4->write_jobs, job->msaa_color_write->texture); 57 pipe_surface_reference(&job->msaa_color_write, NULL) 80 struct vc4_job *job = rzalloc(vc4, struct vc4_job); local 105 struct vc4_job *job = entry->data; local 120 struct vc4_job *job = entry->data; local 186 struct vc4_job *job = vc4_job_create(vc4); local 234 struct vc4_job *job = vc4_get_job(vc4, cbuf, zsbuf); local [all...] |
vc4_cl.c | 29 vc4_init_cl(struct vc4_job *job, struct vc4_cl *cl) 31 cl->base = rzalloc_size(job, 1); /* TODO: don't use rzalloc */ 34 cl->job = job; 60 vc4_gem_hindex(struct vc4_job *job, struct vc4_bo *bo) 63 uint32_t *current_handles = job->bo_handles.base; 64 uint32_t cl_hindex_count = cl_offset(&job->bo_handles) / 4; 81 out = cl_start(&job->bo_handles); 83 cl_end(&job->bo_handles, out); 85 out = cl_start(&job->bo_pointers) [all...] |
vc4_emit.c | 30 struct vc4_job *job = vc4->job; local 53 maxx = MIN2(vp_maxx, job->draw_width); 54 maxy = MIN2(vp_maxy, job->draw_height); 62 cl_emit(&job->bcl, CLIP_WINDOW, clip) { 69 job->draw_min_x = MIN2(job->draw_min_x, minx); 70 job->draw_min_y = MIN2(job->draw_min_y, miny); 71 job->draw_max_x = MAX2(job->draw_max_x, maxx) [all...] |
vc4_draw.c | 38 vc4_get_draw_cl_space(struct vc4_job *job, int vert_count) 48 cl_ensure_space(&job->bcl, 58 cl_ensure_space(&job->shader_rec, 66 cl_ensure_space(&job->bo_handles, (2 * 16 + 20) * sizeof(uint32_t)); 67 cl_ensure_space(&job->bo_pointers, 77 struct vc4_job *job = vc4->job; local 79 if (job->needs_flush) 82 vc4_get_draw_cl_space(job, 0); 84 cl_emit(&job->bcl, TILE_BINNING_MODE_CONFIGURATION, bin) 136 struct vc4_job *job = vc4->job; local 276 struct vc4_job *job = vc4_get_job_for_fbo(vc4); local 318 struct vc4_job *job = vc4_get_job_for_fbo(vc4); local 551 struct vc4_job *job = vc4_get_job_for_fbo(vc4); local [all...] |
/external/mesa3d/src/gallium/drivers/vc5/ |
vc5_job.c | 48 vc5_job_free(struct vc5_context *vc5, struct vc5_job *job) 52 set_foreach(job->bos, entry) { 57 remove_from_ht(vc5->jobs, &job->key); 59 if (job->write_prscs) { 62 set_foreach(job->write_prscs, entry) { 70 if (job->cbufs[i]) { 71 remove_from_ht(vc5->write_jobs, job->cbufs[i]->texture); 72 pipe_surface_reference(&job->cbufs[i], NULL); 75 if (job->zsbuf) { 76 remove_from_ht(vc5->write_jobs, job->zsbuf->texture) 95 struct vc5_job *job = rzalloc(vc5, struct vc5_job); local 160 struct vc5_job *job = entry->data; local 175 struct vc5_job *job = entry->data; local 252 struct vc5_job *job = vc5_job_create(vc5); local 294 struct vc5_job *job = vc5_get_job(vc5, cbufs, zsbuf); local 332 struct vc5_job *job = data; local [all...] |
vc5_rcl.c | 90 store_general(struct vc5_job *job, 116 ((job->cleared & pipe_bit) && 152 (job->cleared & pipe_bit))); 154 !(job->cleared & PIPE_CLEAR_DEPTH); 156 !(job->cleared & PIPE_CLEAR_STENCIL); 197 vc5_rcl_emit_loads(struct vc5_job *job, struct vc5_cl *cl) 199 uint32_t read_but_not_cleared = job->resolve & ~job->cleared; 206 struct pipe_surface *psurf = job->cbufs[i]; 221 (job->zsbuf && job->zsbuf->texture->nr_samples > 1))) [all...] |
vc5_draw.c | 45 struct vc5_job *job = vc5->job; local 47 if (job->needs_flush) 53 vc5_cl_ensure_space_with_branch(&job->bcl, 256 /* XXX */); 55 job->submit.bcl_start = job->bcl.bo->offset; 56 vc5_job_add_bo(job, job->bcl.bo); 58 job->tile_alloc = vc5_bo_alloc(vc5->screen, 1024 * 1024, "tile alloc"); 60 job->tile_state = vc5_bo_alloc(vc5->screen 136 struct vc5_job *job = vc5->job; local 373 struct vc5_job *job = vc5_get_job_for_fbo(vc5); local 555 struct vc5_job *job = vc5_get_job_for_fbo(vc5); local [all...] |
/external/autotest/client/bin/ |
profiler.py | 5 def __init__(self, job): 6 self.job = job
|
harness_unittest.py | 20 job = object() 24 harness_standalone.harness_standalone.expect_new(job, harness_args) 25 harness.select(None, job, harness_args) 30 job = object() 34 harness_standalone.harness_standalone.expect_new(job, harness_args) 35 harness.select('standalone', job, harness_args)
|
harness_standalone.py | 14 job 15 The job object for this job 18 def __init__(self, job, harness_args): 20 job 21 The job object for this job 24 self.setup(job
|
harness.py | 19 job 20 The job object for this job 23 def __init__(self, job): 25 job 26 The job object for this job 28 self.setup(job) 31 def setup(self, job): 33 job [all...] |
job_unittest.py | 14 from autotest_lib.client.bin import job, sysinfo, harness 23 """Generic job TestCase class that defines a standard job setUp and 26 job_class = job.base_client_job 30 self.god.stub_with(job.base_client_job, '_get_environ_autodir', 32 self.job = self.job_class.__new__(self.job_class) 33 self.job._job_directory = base_job_unittest.stub_job_directory 48 autodir, clientdir, _ = self.job._find_base_directories() 54 _, _, serverdir = self.job._find_base_directories() 59 """Generic client job mixin used when defining variations on th [all...] |
/external/toolchain-utils/automation/server/ |
job_executer.py | 9 from automation.common import job 22 self.job = job_to_execute 27 self.name = '%s-%s' % (self.__class__.__name__, self.job.id) 30 self._executer = LoggingCommandExecuter(self.job.dry_run) 35 self.job.primary_machine.hostname, 36 self.job.primary_machine.username, 40 raise job.JobFailure(fail_msg, exit_code) 47 raise job.JobFailure(fail_msg, exit_code) 53 self._logger.debug('Cleaning up %r work directory.', self.job) 54 self._RunRemotely(cmd.RmTree(self.job.work_dir), 'Cleanup workdir failed.' [all...] |
/external/perfetto/gn/standalone/toolchain/ |
mac_find_llvm.py | 21 job = subprocess.Popen(['xcrun', '-f', 'clang++'], 24 out, err = job.communicate() 25 if job.returncode != 0: 28 return job.returncode
|
/cts/tests/tests/print/src/android/print/cts/ |
InterfaceForAppsTest.java | 105 * Create mock service callback for a session. Once the job is queued the test function is 115 android.printservice.PrintJob job = (android.printservice.PrintJob) invocation 121 job.getInfo().getState())); 124 eventually(() -> assertTrue(job.isQueued())); 125 job.start(); 128 eventually(() -> assertTrue(job.isQueued())); 131 eventually(() -> assertTrue(job.isQueued())); 132 job.start(); 133 job.block("test block"); 136 eventually(() -> assertTrue(job.isQueued())) 151 android.printservice.PrintJob job = (android.printservice.PrintJob) invocation external variable declarations [all...] |
/external/autotest/venv/lucifer/ |
jobx.py | 5 """Extra functions for frontend.afe.models.Job objects. 13 It's not really a good idea to define these on the Job class either; 14 they are specialized and the Job class already suffers from method 30 def is_hostless(job): 31 """Return True if the job is hostless. 33 @param job: frontend.afe.models.Job instance 35 return not hostnames(job) 38 def hostnames(job): 39 """Return a list of hostnames for a job [all...] |
/external/v8/src/compiler-dispatcher/ |
compiler-dispatcher.cc | 12 #include "src/compiler-dispatcher/compiler-dispatcher-job.h" 14 #include "src/compiler-dispatcher/unoptimized-compile-job.h" 25 bool DoNextStepOnMainThread(Isolate* isolate, CompilerDispatcherJob* job, 30 switch (job->status()) { 32 job->PrepareOnMainThread(isolate); 35 job->Compile(false); 38 job->FinalizeOnMainThread(isolate); 41 job->ReportErrorsOnMainThread(isolate); 48 DCHECK_EQ(job->IsFailed(), isolate->has_pending_exception()); 49 if (job->IsFailed() && exception_handling == ExceptionHandling::kSwallow) 335 JobMap::const_iterator job = GetJobFor(function); local 345 CompilerDispatcherJob* job = it->second.get(); local 414 auto job = it; local 470 JobMap::const_iterator job = jobs_.end(); local 529 CompilerDispatcherJob* job = nullptr; local 699 CompilerDispatcherJob* job = it->second.get(); local [all...] |
/external/toolchain-utils/automation/clients/helper/ |
jobs.py | 3 from automation.common import job 8 to_return = job.Job(label, command, timeout)
|
/external/autotest/server/cros/clique_lib/ |
clique_dut_log_collector.py | 14 def log_collector_dut_worker(dut, job): 23 @param job: Autotest job object. 26 # Set the job on the host object for log collection. 27 host.job = job 37 def collect_logs(self, dut_objects, job): 43 @param job: Autotest job object. 51 args=(dut, job)) [all...] |
/external/toybox/toys/pending/ |
crond.c | 49 } JOB; 53 struct double_list *job, *var; member in struct:_cronfile 212 JOB *j; 265 j = xzalloc(sizeof(JOB)); 280 dlist_add_nomalloc((struct double_list **)&cfile->job, (struct double_list *)j); 296 static void free_jobs(JOB **jlist) 298 JOB *j = dlist_pop(jlist); 329 JOB *jstart, *jlist = (JOB *)list->job; 507 JOB *job, *jstart; local 540 JOB *job, *jstart; local 591 JOB *job, *jstart; local [all...] |
/external/autotest/tko/parsers/ |
version_0_unittest.py | 22 self.god.stub_function(models.job, 'read_keyval') 23 self.god.stub_function(version_0.job, 'find_hostname') 42 models.job.read_keyval.expect_call('.').and_return( 45 job = version_0.job.load_from_dir('.') 46 self.assertEqual('janet', job['user']) 47 self.assertEqual('steeltown', job['label']) 48 self.assertEqual('abc123', job['machine']) 49 self.assertEqual('my_platform', job['machine_group']) 56 models.job.read_keyval.expect_call('.').and_return(raw_keyval [all...] |
/external/autotest/server/cros/ |
provision_actionables.py | 17 def execute(self, job, host, *args, **kwargs): 20 @param job: A job object from a control file. 45 def execute(self, job, host, *args, **kwargs): 48 @param job: A job object from a control file. 56 return job.run_test(self.test, host=host, *args, **kwargs) 62 def execute(self, job, host, *args, **kwargs): 65 @param job: A job object from a control file [all...] |
/external/autotest/server/hosts/ |
base_classes.py | 58 if self.job: 59 self.job.hosts.add(self) 73 if self.job: 74 self.job.hosts.discard(self)
|
/external/autotest/venv/lucifer/cmd/ |
job_reporter.py | 5 """Run a job against Autotest. 56 help='Path to job leases directory.') 60 # Job specific 65 parser.add_argument('--job-id', type=int, required=True, 66 help='Autotest Job ID') 68 help='Path to job results directory.') 96 """Run a job as seen from Autotest. 102 job = models.Job.objects.get(id=args.job_id) 103 _prepare_autotest_job_files(args, job) [all...] |
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
ShadowJobScheduler.java | 8 import android.app.job.JobInfo; 9 import android.app.job.JobScheduler; 10 import android.app.job.JobWorkItem; 25 protected abstract int schedule(JobInfo job); 41 protected abstract int enqueue(JobInfo job, JobWorkItem work); 52 public int schedule(JobInfo job) { 53 if (jobsToFail.contains(job.getId())) { 57 scheduledJobs.put(job.getId(), job); local 83 public int enqueue(JobInfo job, JobWorkItem work) [all...] |