/third_party/mesa3d/src/gallium/drivers/v3d/ |
D | v3d_job.c | 41 v3d_job_free(struct v3d_context *v3d, struct v3d_job *job) in v3d_job_free() argument 43 set_foreach(job->bos, entry) { in v3d_job_free() 48 _mesa_hash_table_remove_key(v3d->jobs, &job->key); in v3d_job_free() 50 if (job->write_prscs) { in v3d_job_free() 51 set_foreach(job->write_prscs, entry) { in v3d_job_free() 58 for (int i = 0; i < job->nr_cbufs; i++) { in v3d_job_free() 59 if (job->cbufs[i]) { in v3d_job_free() 61 job->cbufs[i]->texture); in v3d_job_free() 62 pipe_surface_reference(&job->cbufs[i], NULL); in v3d_job_free() 65 if (job->zsbuf) { in v3d_job_free() [all …]
|
D | v3dx_rcl.c | 114 store_general(struct v3d_job *job, in store_general() argument 162 assert(!resolve_4x || job->bbuf); in store_general() 165 else if (resolve_4x && job->bbuf->texture->nr_samples > 1) in store_general() 184 (job->clear & pipe_bit))); in store_general() 186 !(job->clear & PIPE_CLEAR_DEPTH); in store_general() 188 !(job->clear & PIPE_CLEAR_STENCIL); in store_general() 217 v3d_rcl_emit_loads(struct v3d_job *job, struct v3d_cl *cl, int layer) in v3d_rcl_emit_loads() argument 222 assert(!job->bbuf || job->load == 0); in v3d_rcl_emit_loads() 223 assert(!job->bbuf || job->nr_cbufs <= 1); in v3d_rcl_emit_loads() 224 assert(!job->bbuf || V3D_VERSION >= 40); in v3d_rcl_emit_loads() [all …]
|
D | v3dx_draw.c | 42 v3dX(start_binning)(struct v3d_context *v3d, struct v3d_job *job) in v3dX() 44 assert(job->needs_flush); in v3dX() 50 v3d_cl_ensure_space_with_branch(&job->bcl, 256 /* XXX */); in v3dX() 52 job->submit.bcl_start = job->bcl.bo->offset; in v3dX() 53 v3d_job_add_bo(job, job->bcl.bo); in v3dX() 59 MAX2(job->num_layers, 1) * job->draw_tiles_x * job->draw_tiles_y * 64; in v3dX() 76 job->tile_alloc = v3d_bo_alloc(v3d->screen, tile_alloc_size, in v3dX() 79 job->tile_state = v3d_bo_alloc(v3d->screen, in v3dX() 80 MAX2(job->num_layers, 1) * in v3dX() 81 job->draw_tiles_y * in v3dX() [all …]
|
D | v3dx_emit.c | 118 struct v3d_job *job = v3d->job; in emit_one_texture() local 128 v3d_cl_ensure_space(&job->indirect, in emit_one_texture() 132 job->indirect.bo); in emit_one_texture() 229 cl_packet_pack(TEXTURE_SHADER_STATE)(&job->indirect, packed, &unpacked); in emit_one_texture() 235 v3d_cl_ensure_space(&job->indirect, ARRAY_SIZE(packed), 32); in emit_one_texture() 236 cl_emit_prepacked(&job->indirect, &packed); in emit_one_texture() 262 emit_rt_blend(struct v3d_context *v3d, struct v3d_job *job, in emit_rt_blend() argument 274 cl_emit(&job->bcl, BLEND_CFG, config) { in emit_rt_blend() 300 emit_flat_shade_flags(struct v3d_job *job, in emit_flat_shade_flags() argument 306 cl_emit(&job->bcl, FLAT_SHADE_FLAGS, flags) { in emit_flat_shade_flags() [all …]
|
/third_party/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_job.c | 35 vc4_job_free(struct vc4_context *vc4, struct vc4_job *job) in vc4_job_free() argument 37 struct vc4_bo **referenced_bos = job->bo_pointers.base; in vc4_job_free() 38 for (int i = 0; i < cl_offset(&job->bo_handles) / 4; i++) { in vc4_job_free() 42 _mesa_hash_table_remove_key(vc4->jobs, &job->key); in vc4_job_free() 44 if (job->color_write) { in vc4_job_free() 46 job->color_write->texture); in vc4_job_free() 47 pipe_surface_reference(&job->color_write, NULL); in vc4_job_free() 49 if (job->msaa_color_write) { in vc4_job_free() 51 job->msaa_color_write->texture); in vc4_job_free() 52 pipe_surface_reference(&job->msaa_color_write, NULL); in vc4_job_free() [all …]
|
D | vc4_draw.c | 39 vc4_get_draw_cl_space(struct vc4_job *job, int vert_count) in vc4_get_draw_cl_space() argument 49 cl_ensure_space(&job->bcl, in vc4_get_draw_cl_space() 59 cl_ensure_space(&job->shader_rec, in vc4_get_draw_cl_space() 67 cl_ensure_space(&job->bo_handles, (2 * 16 + 20) * sizeof(uint32_t)); in vc4_get_draw_cl_space() 68 cl_ensure_space(&job->bo_pointers, in vc4_get_draw_cl_space() 78 struct vc4_job *job = vc4->job; in vc4_start_draw() local 80 if (job->needs_flush) in vc4_start_draw() 83 vc4_get_draw_cl_space(job, 0); in vc4_start_draw() 85 cl_emit(&job->bcl, TILE_BINNING_MODE_CONFIGURATION, bin) { in vc4_start_draw() 86 bin.width_in_tiles = job->draw_tiles_x; in vc4_start_draw() [all …]
|
D | vc4_emit.c | 30 struct vc4_job *job = vc4->job; in vc4_emit_state() local 53 maxx = MAX2(MIN2(vp_maxx, job->draw_width), minx); in vc4_emit_state() 54 maxy = MAX2(MIN2(vp_maxy, job->draw_height), miny); in vc4_emit_state() 62 cl_emit(&job->bcl, CLIP_WINDOW, clip) { in vc4_emit_state() 69 job->draw_min_x = MIN2(job->draw_min_x, minx); in vc4_emit_state() 70 job->draw_min_y = MIN2(job->draw_min_y, miny); in vc4_emit_state() 71 job->draw_max_x = MAX2(job->draw_max_x, maxx); in vc4_emit_state() 72 job->draw_max_y = MAX2(job->draw_max_y, maxy); in vc4_emit_state() 81 struct vc4_cl_out *bcl = cl_start(&job->bcl); in vc4_emit_state() 91 if (job->msaa || vc4->prog.fs->disable_early_z) in vc4_emit_state() [all …]
|
/third_party/libdrm/tegra/ |
D | job.c | 41 drm_tegra_job_add_command(struct drm_tegra_job *job, uint32_t type, in drm_tegra_job_add_command() argument 47 size = (job->num_commands + 1) * sizeof(*commands); in drm_tegra_job_add_command() 49 commands = realloc(job->commands, size); in drm_tegra_job_add_command() 53 command = &commands[job->num_commands]; in drm_tegra_job_add_command() 58 job->commands = commands; in drm_tegra_job_add_command() 59 job->num_commands++; in drm_tegra_job_add_command() 68 struct drm_tegra_job *job; in drm_tegra_job_new() local 70 job = calloc(1, sizeof(*job)); in drm_tegra_job_new() 71 if (!job) in drm_tegra_job_new() 74 job->page_size = sysconf(_SC_PAGESIZE); in drm_tegra_job_new() [all …]
|
D | pushbuf.c | 62 struct drm_tegra_job *job = pushbuf->job; in drm_tegra_pushbuf_begin() local 69 size = ALIGN(words * 4, job->page_size); in drm_tegra_pushbuf_begin() 92 command = drm_tegra_job_add_command(pushbuf->job, in drm_tegra_pushbuf_end() 111 command = drm_tegra_job_add_command(pushbuf->job, in drm_tegra_pushbuf_wait() 130 struct drm_tegra_job *job = pushbuf->job; in drm_tegra_pushbuf_relocate() local 133 size = (job->num_buffers + 1) * sizeof(*buffer); in drm_tegra_pushbuf_relocate() 135 buffers = realloc(job->buffers, size); in drm_tegra_pushbuf_relocate() 139 buffer = &buffers[job->num_buffers]; in drm_tegra_pushbuf_relocate() 151 job->buffers = buffers; in drm_tegra_pushbuf_relocate() 152 job->num_buffers++; in drm_tegra_pushbuf_relocate() [all …]
|
/third_party/node/deps/npm/node_modules/tar/lib/ |
D | pack.js | 149 const job = new PackJob(p.path, absolute, false) constant 150 job.entry = new WriteEntryTar(p, this[ENTRYOPT](job)) 151 job.entry.on('end', _ => this[JOBDONE](job)) 153 this[QUEUE].push(job) 165 [STAT] (job) { 166 job.pending = true 169 fs[stat](job.absolute, (er, stat) => { 170 job.pending = false 175 this[ONSTAT](job, stat) 180 [ONSTAT] (job, stat) { [all …]
|
/third_party/node/deps/v8/src/compiler-dispatcher/ |
D | lazy-compile-dispatcher.cc | 159 Job* job = new Job(std::make_unique<BackgroundCompileTask>( in Enqueue() local 165 reinterpret_cast<Address>(job)); in Enqueue() 178 all_jobs_.insert(job); in Enqueue() 180 pending_background_jobs_.push_back(job); in Enqueue() 189 Job* job = nullptr; in IsEnqueued() local 192 job = reinterpret_cast<Job*>( in IsEnqueued() 193 UncompiledDataWithPreparseDataAndJob::cast(function_data).job()); in IsEnqueued() 195 job = reinterpret_cast<Job*>( in IsEnqueued() 196 UncompiledDataWithoutPreparseDataWithJob::cast(function_data).job()); in IsEnqueued() 198 return job != nullptr; in IsEnqueued() [all …]
|
D | optimizing-compile-dispatcher.cc | 88 TurbofanCompilationJob* job = input_queue_[InputQueueIndex(0)]; in NextInput() local 89 DCHECK_NOT_NULL(job); in NextInput() 92 return job; in NextInput() 95 void OptimizingCompileDispatcher::CompileNext(TurbofanCompilationJob* job, in CompileNext() argument 97 if (!job) return; in CompileNext() 101 job->ExecuteJob(local_isolate->runtime_call_stats(), local_isolate); in CompileNext() 109 output_queue_.push(job); in CompileNext() 117 std::unique_ptr<TurbofanCompilationJob> job; in FlushOutputQueue() local 121 job.reset(output_queue_.front()); in FlushOutputQueue() 125 Compiler::DisposeTurbofanCompilationJob(job.get(), restore_function_code); in FlushOutputQueue() [all …]
|
/third_party/cups-filters/filter/foomatic-rip/ |
D | spooler.c | 41 void init_cups(list_t *arglist, dstr_t *filelist, jobparams_t *job) in init_cups() argument 78 strcpy(job->id, cups_jobid); in init_cups() 79 strcpy(job->title, cups_jobtitle); in init_cups() 80 strcpy(job->user, cups_user); in init_cups() 81 strcpy(job->copies, cups_copies); in init_cups() 82 dstrcatf(job->optstr, " %s", cups_options); in init_cups() 100 strncpy(job->printer, pname, 256); in init_cups() 101 job->printer[255] = '\0'; in init_cups() 107 int find_ppdfile(const char *user_default_path, jobparams_t *job) in find_ppdfile() argument 112 strcpy(job->ppdfile, job->printer); in find_ppdfile() [all …]
|
/third_party/mesa3d/src/gallium/drivers/lima/ |
D | lima_job.c | 54 lima_get_fb_info(struct lima_job *job) in lima_get_fb_info() argument 56 struct lima_context *ctx = job->ctx; in lima_get_fb_info() 57 struct lima_job_fb_info *fb = &job->fb; in lima_get_fb_info() 58 struct lima_surface *surf = lima_surface(job->key.cbuf); in lima_get_fb_info() 61 surf = lima_surface(job->key.zsbuf); in lima_get_fb_info() 140 lima_job_free(struct lima_job *job) in lima_job_free() argument 142 struct lima_context *ctx = job->ctx; in lima_job_free() 144 _mesa_hash_table_remove_key(ctx->jobs, &job->key); in lima_job_free() 146 if (job->key.cbuf && (job->resolve & PIPE_CLEAR_COLOR0)) in lima_job_free() 147 _mesa_hash_table_remove_key(ctx->write_jobs, job->key.cbuf->texture); in lima_job_free() [all …]
|
/third_party/openssl/crypto/async/ |
D | async.c | 82 ASYNC_JOB *job = NULL; in async_job_new() local 84 job = OPENSSL_zalloc(sizeof(*job)); in async_job_new() 85 if (job == NULL) { in async_job_new() 90 job->status = ASYNC_JOB_RUNNING; in async_job_new() 92 return job; in async_job_new() 95 static void async_job_free(ASYNC_JOB *job) in async_job_free() argument 97 if (job != NULL) { in async_job_free() 98 OPENSSL_free(job->funcargs); in async_job_free() 99 async_fibre_free(&job->fibrectx); in async_job_free() 100 OPENSSL_free(job); in async_job_free() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/async/ |
D | async.c | 82 ASYNC_JOB *job = NULL; in async_job_new() local 84 job = OPENSSL_zalloc(sizeof(*job)); in async_job_new() 85 if (job == NULL) { in async_job_new() 90 job->status = ASYNC_JOB_RUNNING; in async_job_new() 92 return job; in async_job_new() 95 static void async_job_free(ASYNC_JOB *job) in async_job_free() argument 97 if (job != NULL) { in async_job_free() 98 OPENSSL_free(job->funcargs); in async_job_free() 99 async_fibre_free(&job->fibrectx); in async_job_free() 100 OPENSSL_free(job); in async_job_free() [all …]
|
/third_party/mesa3d/src/broadcom/vulkan/ |
D | v3dvx_cmd_buffer.c | 35 v3dX(job_emit_binning_flush)(struct v3dv_job *job) in v3dX() 37 assert(job); in v3dX() 39 v3dv_cl_ensure_space_with_branch(&job->bcl, cl_packet_length(FLUSH)); in v3dX() 40 v3dv_return_if_oom(NULL, job); in v3dX() 42 cl_emit(&job->bcl, FLUSH, flush); in v3dX() 46 v3dX(job_emit_binning_prolog)(struct v3dv_job *job, in v3dX() 53 cl_emit(&job->bcl, NUMBER_OF_LAYERS, config) { in v3dX() 58 cl_emit(&job->bcl, TILE_BINNING_MODE_CFG, config) { in v3dX() 68 cl_emit(&job->bcl, FLUSH_VCD_CACHE, bin); in v3dX() 73 cl_emit(&job->bcl, START_TILE_BINNING, bin); in v3dX() [all …]
|
D | v3dv_queue.c | 37 struct v3dv_job *job, in v3dv_clif_dump() argument 51 set_foreach(job->bos, entry) { in v3dv_clif_dump() 127 handle_reset_query_cpu_job(struct v3dv_queue *queue, struct v3dv_job *job, in handle_reset_query_cpu_job() argument 130 struct v3dv_reset_query_cpu_job_info *info = &job->cpu.query_reset; in handle_reset_query_cpu_job() 138 v3dv_bo_wait(job->device, info->pool->bo, PIPE_TIMEOUT_INFINITE); in handle_reset_query_cpu_job() 156 VkResult result = vk_sync_wait_many(&job->device->vk, wait_count, waits, in handle_reset_query_cpu_job() 163 v3dv_reset_query_pools(job->device, info->pool, info->first, info->count); in handle_reset_query_cpu_job() 169 export_perfmon_last_job_sync(struct v3dv_queue *queue, struct v3dv_job *job, int *fd) in export_perfmon_last_job_sync() argument 172 if (job->device->pdevice->caps.multisync) { in export_perfmon_last_job_sync() 182 err = drmSyncobjExportSyncFile(job->device->pdevice->render_fd, in export_perfmon_last_job_sync() [all …]
|
D | v3dvx_meta_common.c | 40 emit_rcl_prologue(struct v3dv_job *job, in emit_rcl_prologue() argument 44 const struct v3dv_frame_tiling *tiling = &job->frame_tiling; in emit_rcl_prologue() 46 struct v3dv_cl *rcl = &job->rcl; in emit_rcl_prologue() 50 if (job->cmd_buffer->state.oom) in emit_rcl_prologue() 132 emit_frame_setup(struct v3dv_job *job, in emit_frame_setup() argument 136 v3dv_return_if_oom(NULL, job); in emit_frame_setup() 138 const struct v3dv_frame_tiling *tiling = &job->frame_tiling; in emit_frame_setup() 140 struct v3dv_cl *rcl = &job->rcl; in emit_frame_setup() 145 list.address = v3dv_cl_address(job->tile_alloc, tile_alloc_offset); in emit_frame_setup() 188 emit_supertile_coordinates(struct v3dv_job *job, in emit_supertile_coordinates() argument [all …]
|
D | v3dv_cmd_buffer.c | 29 v3dv_job_add_bo(struct v3dv_job *job, struct v3dv_bo *bo) in v3dv_job_add_bo() argument 34 if (job->bo_handle_mask & bo->handle_bit) { in v3dv_job_add_bo() 35 if (_mesa_set_search(job->bos, bo)) in v3dv_job_add_bo() 39 _mesa_set_add(job->bos, bo); in v3dv_job_add_bo() 40 job->bo_count++; in v3dv_job_add_bo() 41 job->bo_handle_mask |= bo->handle_bit; in v3dv_job_add_bo() 45 v3dv_job_add_bo_unchecked(struct v3dv_job *job, struct v3dv_bo *bo) in v3dv_job_add_bo_unchecked() argument 48 _mesa_set_add(job->bos, bo); in v3dv_job_add_bo_unchecked() 49 job->bo_count++; in v3dv_job_add_bo_unchecked() 50 job->bo_handle_mask |= bo->handle_bit; in v3dv_job_add_bo_unchecked() [all …]
|
/third_party/toybox/toys/pending/ |
D | crond.c | 53 struct double_list *job, *var; member 280 dlist_add_nomalloc((struct double_list **)&cfile->job, (struct double_list *)j); in parse_line() 329 JOB *jstart, *jlist = (JOB *)list->job; in remove_completed_jobs() 348 list->job = (struct double_list *)jlist; in remove_completed_jobs() 399 if (!cfile->job) { in scan_cronfiles() 425 static void do_fork(CRONFILE *cfile, JOB *job, int fd, char *prog) in do_fork() argument 461 execlp(file, file, (prog ? "-ti" : "-c"), (prog ? NULL : job->cmd), (char *) NULL); in do_fork() 464 if (!prog) dprintf(1, "Exec failed: %s -c %s\n", file, job->cmd); in do_fork() 473 job->pid = pid; in do_fork() 477 static void sendmail(CRONFILE *cfile, JOB *job) in sendmail() argument [all …]
|
/third_party/mesa3d/.gitlab-ci/bin/ |
D | ci_run_n_monitor.py | 83 def print_job_status(job) -> None: argument 85 if job.status == "canceled": 89 STATUS_COLORS[job.status] 99 def print_job_status_change(job) -> None: argument 101 if job.status == "canceled": 105 STATUS_COLORS[job.status] 138 for job in pipeline.jobs.list(all=True, sort="desc"): 140 if target_job and target_jobs_regex.match(job.name): 141 if force_manual and job.status == "manual": 142 enable_job(project, job, True) [all …]
|
/third_party/cups/ |
D | backport-Remove-legacy-code-for-RIP_MAX_CACHE-environment-variable.patch | 11 scheduler/job.c | 7 ++----- 14 diff --git a/scheduler/job.c b/scheduler/job.c 16 --- a/scheduler/job.c 17 +++ b/scheduler/job.c 18 @@ -541,10 +541,8 @@ cupsdContinueJob(cupsd_job_t *job) /* I - Job */ 30 @@ -749,7 +747,7 @@ cupsdContinueJob(cupsd_job_t *job) /* I - Job */ 32 raw_file = !strcmp(job->filetypes[job->current_file]->super, "application") && 33 !strcmp(job->filetypes[job->current_file]->type, "vnd.cups-raw"); 36 if ((job->compressions[job->current_file] && (!job->printer->remote || job->num_files == 1)) || 37 (!job->printer->remote && (job->printer->raw || raw_file) && job->num_files > 1)) [all …]
|
/third_party/mesa3d/.gitlab-ci/lava/ |
D | lava_job_submitter.py | 337 def find_lava_error(job) -> None: argument 339 results_yaml = _call_proxy(job.proxy.results.get_testjob_results_yaml, job.job_id) 343 find_exception_from_metadata(metadata, job.job_id) 347 job.status = "fail" 350 def show_job_data(job): argument 357 show = _call_proxy(job.proxy.scheduler.jobs.show, job.job_id) 362 def fetch_logs(job, max_idle_time, log_follower) -> None: argument 365 if datetime.now() - job.last_log_time > max_idle_time: 383 new_log_lines = job.get_logs() 390 job.heartbeat() [all …]
|
/third_party/libphonenumber/migrator/src/test/java/com/google/phonenumbers/migrator/ |
D | MigrationUtilsTest.java | 51 …MigrationJob job = MigrationFactory.createCustomRecipeMigration(invalidTestNumber, COUNTRY_CODE, M… in getCountryMigratableNumbers_expectNoMatches() local 55 .getMigratableRangeByCountry(job.getRecipesRangeTable(), job.getCountryCode(), in getCountryMigratableNumbers_expectNoMatches() 56 job.getMigrationEntries()); in getCountryMigratableNumbers_expectNoMatches() 63 MigrationJob job = MigrationFactory in getCountryMigratableNumbers_expectMatches() local 68 .getMigratableRangeByCountry(job.getRecipesRangeTable(), job.getCountryCode(), in getCountryMigratableNumbers_expectMatches() 69 job.getMigrationEntries()); in getCountryMigratableNumbers_expectMatches() 72 .containsExactlyElementsIn(job.getMigrationEntries().collect(Collectors.toList())); in getCountryMigratableNumbers_expectMatches() 80 …MigrationJob job = MigrationFactory.createCustomRecipeMigration(VALID_TEST_NUMBER, COUNTRY_CODE, M… in getMigratableNumbers_invalidKey_expectException() local 84 … .getMigratableRangeByRecipe(job.getRecipesCsvTable(), invalidKey, job.getMigrationEntries()); in getMigratableNumbers_invalidKey_expectException() 97 …MigrationJob job = MigrationFactory.createCustomRecipeMigration(VALID_TEST_NUMBER, COUNTRY_CODE, M… in getMigratableNumbers_validKey_expectNoExceptionAndNoMatches() local [all …]
|