/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_spill.cpp | 476 for (unsigned pred : block.linear_preds) in get_live_in_demand() 478 std::max<int16_t>(reg_pressure.sgpr, ctx.register_demand[pred].back().sgpr); in get_live_in_demand() 853 for (ASSERTED unsigned pred : block->linear_preds) in add_coupling_code() 854 assert(ctx.processed[pred]); in add_coupling_code() 914 Block& pred = ctx.program->blocks[pred_idx]; in add_coupling_code() local 915 unsigned idx = pred.instructions.size(); in add_coupling_code() 920 pred.instructions[idx]->opcode != aco_opcode::p_logical_end); in add_coupling_code() 921 std::vector<aco_ptr<Instruction>>::iterator it = std::next(pred.instructions.begin(), idx); in add_coupling_code() 922 pred.instructions.insert(it, std::move(spill)); in add_coupling_code() 972 Block& pred in add_coupling_code() local 1018 Block& pred = ctx.program->blocks[pred_idx]; add_coupling_code() local 1069 Block& pred = ctx.program->blocks[pred_idx]; add_coupling_code() local [all...] |
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
H A D | ppir.h | 148 void *pred, *succ; member 444 void ppir_node_add_dep(ppir_node *succ, ppir_node *pred, ppir_dep_type type); 451 ppir_dep *ppir_dep_for_pred(ppir_node *node, ppir_node *pred); 485 return list_first_entry(&node->pred_list, ppir_dep, pred_link)->pred; in ppir_node_first_pred() 710 void ppir_instr_add_dep(ppir_instr *succ, ppir_instr *pred);
|
H A D | regalloc.c | 259 ppir_node *pred = dep->pred; in ppir_update_spilled_src() local 261 ppir_node_add_dep(load_node, pred, ppir_dep_src); in ppir_update_spilled_src() 327 ppir_node *pred = dep->pred; in ppir_update_spilled_dest_load() local 329 ppir_node_add_dep(load_node, pred, ppir_dep_src); in ppir_update_spilled_dest_load()
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/ |
H A D | scheduler.h | 144 // a call to notify() and the predicate pred returns true. 145 // If the predicate pred does not return true when notify() is called, then 153 // pred will be always be called with the lock held. 156 void wait(marl::lock& lock, const Predicate& pred); 159 // a call to notify() and the predicate pred returns true, or sometime after 161 // If the predicate pred does not return true when notify() is called, then 170 // pred will be always be called with the lock held. 176 const Predicate& pred); 346 // wait() suspends execution of the current task until the predicate pred 350 bool wait(marl::lock& lock, const TimePoint* timeout, const Predicate& pred) 549 wait( marl::lock& lock, const std::chrono::time_point<Clock, Duration>& timeout, const Predicate& pred) wait() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | lossless_videoencdsp.c | 67 const int pred = mid_pred(l, src1[i], (l + src1[i] - lt) & 0xFF); in sub_median_pred_c() local 70 dst[i] = l - pred; in sub_median_pred_c()
|
H A D | magicyuv.c | 134 int flags, pred; in magy_decode_slice10() local 142 pred = get_bits(&gb, 8); in magy_decode_slice10() 171 switch (pred) { in magy_decode_slice10() 222 avpriv_request_sample(avctx, "Unknown prediction: %d", pred); in magy_decode_slice10() 265 int flags, pred; in magy_decode_slice() local 268 pred = bytestream_get_byte(&slice); in magy_decode_slice() 300 switch (pred) { in magy_decode_slice() 355 avpriv_request_sample(avctx, "Unknown prediction: %d", pred); in magy_decode_slice()
|
H A D | msmpeg4dec.c | 77 static int msmpeg4v2_decode_motion(MpegEncContext * s, int pred, int f_code) in msmpeg4v2_decode_motion() argument 82 ff_dlog(s, "MV code %d at %d %d pred: %d\n", code, s->mb_x,s->mb_y, pred); in msmpeg4v2_decode_motion() 87 return pred; in msmpeg4v2_decode_motion() 99 val += pred; in msmpeg4v2_decode_motion() 249 int pred = ff_msmpeg4_coded_block_pred(s, i, &coded_val); in msmpeg4v34_decode_mb() local 250 val = val ^ pred; in msmpeg4v34_decode_mb() 594 int level, pred; in msmpeg4_decode_dc() local 627 pred = msmpeg4v1_pred_dc(s, n, &dc_val); in msmpeg4_decode_dc() 628 level += pred; in msmpeg4_decode_dc() [all...] |
H A D | siprdata.h | 259 static const float pred[4] = { variable
|
H A D | mjpegdec.c | 1153 int pred, dc; in ljpeg_decode_rgb_scan() local 1163 pred = left[i]; in ljpeg_decode_rgb_scan() 1166 pred = vpred[i] - dc; in ljpeg_decode_rgb_scan() 1169 PREDICT(pred, topleft[i], top[i], pred, modified_predictor); in ljpeg_decode_rgb_scan() 1172 mask & (pred + (unsigned)(dc * (1 << point_transform))); in ljpeg_decode_rgb_scan() 1290 int pred, dc; in ljpeg_decode_yuv_scan() local 1302 pred= 1 << (bits - 1); in ljpeg_decode_yuv_scan() 1304 pred= ptr[-1]; in ljpeg_decode_yuv_scan() 1308 pred in ljpeg_decode_yuv_scan() 1361 int pred; ljpeg_decode_yuv_scan() local [all...] |
H A D | pixlet.c | 359 static void lowpass_prediction(int16_t *dst, int16_t *pred, in lowpass_prediction() argument 365 memset(pred, 0, width * sizeof(*pred)); in lowpass_prediction() 368 val = pred[0] + dst[0]; in lowpass_prediction() 369 dst[0] = pred[0] = val; in lowpass_prediction() 371 val = pred[j] + dst[j]; in lowpass_prediction() 372 dst[j] = pred[j] = val; in lowpass_prediction()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_conditional_discard.c | 72 if (phi_src->pred == then_block || in nir_opt_conditional_discard_block() 73 phi_src->pred == else_block) in nir_opt_conditional_discard_block()
|
H A D | nir_instr_set.c | 215 return src1->pred > src2->pred ? 1 : (src1->pred == src2->pred ? 0 : -1); in cmp_phi_src() 235 hash = HASH(hash, srcs[i]->pred); in hash_phi() 712 if (src1->pred == src2->pred) { in nir_instrs_equal()
|
/third_party/mesa3d/src/compiler/nir/tests/ |
H A D | lower_returns_tests.cpp | 54 nir_phi_instr *create_one_source_phi(nir_shader *shader, nir_block *pred, in create_one_source_phi() argument 59 nir_phi_instr_add_src(phi, pred, nir_src_for_ssa(def)); in create_one_source_phi()
|
/third_party/mesa3d/src/panfrost/util/ |
H A D | pan_liveness.c | 150 pan_foreach_predecessor(blk, pred) in pan_compute_liveness() 151 _mesa_set_add(work_list, pred); in pan_compute_liveness()
|
/third_party/skia/third_party/externals/spirv-tools/source/reduce/ |
H A D | structured_construct_to_block_reduction_opportunity_finder.cpp | 171 for (auto pred : context->cfg()->preds(block.id())) { in HasUnreachablePredecessor() 172 if (!context->IsReachable(*context->cfg()->block(pred))) { in HasUnreachablePredecessor()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/reduce/ |
H A D | structured_construct_to_block_reduction_opportunity_finder.cpp | 171 for (auto pred : context->cfg()->preds(block.id())) { in HasUnreachablePredecessor() 172 if (!context->IsReachable(*context->cfg()->block(pred))) { in HasUnreachablePredecessor()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | lossless_common.h | 182 const uint32_t pred = (PREDICTOR)(out[x - 1], upper + x); \ 183 out[x] = VP8LAddPixels(in[x], pred); \
|
/third_party/rust/crates/syn/tests/ |
H A D | test_generics.rs | 260 WherePredicate::Type(pred) => pred, in test_fn_precedence_in_where_clause()
|
/third_party/spirv-tools/source/reduce/ |
H A D | structured_construct_to_block_reduction_opportunity_finder.cpp | 171 for (auto pred : context->cfg()->preds(block.id())) { in HasUnreachablePredecessor() 172 if (!context->IsReachable(*context->cfg()->block(pred))) { in HasUnreachablePredecessor()
|
/third_party/ffmpeg/libavcodec/loongarch/ |
H A D | h264idct_lasx.c | 240 __m256i pred, out; in ff_h264_idct4x4_addblk_dc_lasx() local 249 pred = __lasx_xvpermi_q(src0, src1, 0x02); in ff_h264_idct4x4_addblk_dc_lasx() 250 pred = __lasx_xvaddw_h_h_bu(input_dc, pred); in ff_h264_idct4x4_addblk_dc_lasx() 251 pred = __lasx_xvclip255_h(pred); in ff_h264_idct4x4_addblk_dc_lasx() 252 out = __lasx_xvpickev_b(pred, pred); in ff_h264_idct4x4_addblk_dc_lasx()
|
/third_party/ffmpeg/tests/fate/ |
H A D | aac.mak | 226 FATE_AAC_ENCODE += fate-aac-pred-encode 227 fate-aac-pred-encode: CMD = enc_dec_pcm adts wav s16le $(TARGET_SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav -profile:a aac_main -c:a aac -aac_coder fast -aac_is 0 -aac_pns 0 -aac_ms 0 -aac_tns 0 -b:a 128k -cutoff 22050 -fflags +bitexact -flags +bitexact 228 fate-aac-pred-encode: CMP = stddev 229 fate-aac-pred-encode: REF = $(SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav 230 fate-aac-pred-encode: CMP_SHIFT = -4096 231 fate-aac-pred-encode: CMP_TARGET = 662 232 fate-aac-pred-encode: FUZZ = 12 233 fate-aac-pred-encode: SIZE_TOLERANCE = 3560
|
/kernel/linux/linux-6.6/drivers/md/ |
H A D | dm-bufio.c | 172 iter_predicate pred, void *context) in lru_iter_next() 185 if (pred(e, context)) in lru_iter_next() 257 static struct lru_entry *lru_evict(struct lru *lru, le_predicate pred, void *context, bool no_sleep) in lru_evict() argument 277 switch (pred(le, context)) { in lru_evict() 659 b_predicate pred; member 677 return w->pred(b, w->context); in __evict_pred() 681 b_predicate pred, void *context, in __cache_evict() 684 struct evict_wrapper w = {.lh = lh, .pred = pred, .context = context}; in __cache_evict() 700 b_predicate pred, voi in cache_evict() 171 lru_iter_next(struct lru_iter *it, iter_predicate pred, void *context) lru_iter_next() argument 680 __cache_evict(struct dm_buffer_cache *bc, int list_mode, b_predicate pred, void *context, struct lock_history *lh) __cache_evict() argument 699 cache_evict(struct dm_buffer_cache *bc, int list_mode, b_predicate pred, void *context) cache_evict() argument 734 __cache_mark_many(struct dm_buffer_cache *bc, int old_mode, int new_mode, b_predicate pred, void *context, struct lock_history *lh) __cache_mark_many() argument 752 cache_mark_many(struct dm_buffer_cache *bc, int old_mode, int new_mode, b_predicate pred, void *context) cache_mark_many() argument 922 __remove_range(struct dm_buffer_cache *bc, struct rb_root *root, sector_t begin, sector_t end, b_predicate pred, b_release release) __remove_range() argument 949 cache_remove_range(struct dm_buffer_cache *bc, sector_t begin, sector_t end, b_predicate pred, b_release release) cache_remove_range() argument [all...] |
/third_party/spirv-tools/source/val/ |
H A D | validate_cfg.cpp | 793 for (auto pred : *block->predecessors()) { in StructuredControlFlowChecks() 794 if (pred->structurally_reachable() && !construct_blocks.count(pred)) { in StructuredControlFlowChecks() 795 return _.diag(SPV_ERROR_INVALID_CFG, _.FindDef(pred->id())) in StructuredControlFlowChecks() 796 << "block <ID> " << pred->id() << " branches to the " in StructuredControlFlowChecks() 838 for (auto pred : *continue_target->predecessors()) { in StructuredControlFlowChecks() 845 if (header_block == continue_id && back_edge_block == pred->id()) in StructuredControlFlowChecks() 848 if (!construct_blocks.count(pred) && !is_back_edge) { in StructuredControlFlowChecks() 849 return _.diag(SPV_ERROR_INVALID_CFG, pred->terminator()) in StructuredControlFlowChecks() 850 << "Block " << _.getIdName(pred in StructuredControlFlowChecks() [all...] |
/third_party/mesa3d/src/asahi/compiler/ |
H A D | agx_print.c | 214 agx_foreach_predecessor(block, pred) in agx_print_block() 215 fprintf(fp, " block%u", (*pred)->index); in agx_print_block()
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_gvn.cpp | 209 if (n.pred) in process_op() 210 process_src(n.pred, false); in process_op()
|