Home
last modified time | relevance | path

Searched refs:def (Results 1 - 25 of 896) sorted by relevance

12345678910>>...36

/third_party/mesa3d/src/util/
H A Ddriconf.h72 #define DRI_CONF_OPT_B(_name, def, _desc) { \
78 .value = { ._bool = def }, \
81 #define DRI_CONF_OPT_I(_name, def, min, max, _desc) { \
88 .value = { ._int = def }, \
91 #define DRI_CONF_OPT_F(_name, def, min, max, _desc) { \
98 .value = { ._float = def }, \
101 #define DRI_CONF_OPT_E(_name, def, min, max, _desc, values) { \
108 .value = { ._int = def }, \
112 #define DRI_CONF_OPT_S(_name, def, _desc) { \
118 .value = { ._string = #def }, \
[all...]
/third_party/ltp/tools/sparse/sparse-src/
H A Dsimplify.c71 struct instruction *def = pseudo->def; in phi_parent() local
72 if (def->bb == source) in phi_parent()
96 struct instruction *def; in get_phisources() local
101 def = phi->def; in get_phisources()
102 assert(def->opcode == OP_PHISOURCE); in get_phisources()
103 sources[i++] = def; in get_phisources()
207 struct instruction *def; in trivial_phi() local
212 def in trivial_phi()
445 struct instruction *def; is_same_op() local
459 struct instruction *def; is_negate_of() local
913 struct instruction *def; simplify_shift() local
1087 struct instruction *def; simplify_seteq_setne() local
1174 struct instruction *def; simplify_compare_constant() local
1473 struct instruction *def; simplify_constant_mask() local
1504 simplify_const_rightadd(struct instruction *def, struct instruction *insn) simplify_const_rightadd() argument
1590 simplify_const_leftsub(struct instruction *insn, struct instruction *def) simplify_const_leftsub() argument
1782 struct instruction *def; can_move_to() local
1802 struct instruction *def; simplify_associative_binop() local
1830 struct instruction *def; simplify_add_one_side() local
1876 struct instruction *def; simplify_sub() local
1906 struct instruction *def = NULL; simplify_compare() local
1928 struct instruction *def, *defr = NULL; simplify_and_one_side() local
1993 struct instruction *def, *defr = NULL; simplify_ior_one_side() local
2047 struct instruction *def, *defr = NULL; simplify_xor_one_side() local
2131 struct instruction *def; simplify_unop() local
2200 struct instruction *def = addr->def; simplify_one_memop() local
2263 struct instruction *def, *def2; simplify_cast() local
2429 struct instruction *def; simplify_select() local
2591 simplify_cond_branch(struct instruction *br, struct instruction *def, pseudo_t newcond) simplify_cond_branch() argument
2616 struct instruction *def = cond->def; simplify_branch() local
2672 struct instruction *def; is_label() local
2683 struct instruction *def; simplify_cgoto() local
[all...]
H A Dunssa.c45 struct instruction *def = src->def; in simplify_phi_node() local
47 if (!def) in simplify_phi_node()
49 if (def->bb == phi->bb) in simplify_phi_node()
71 tmp->def = NULL; // defined by all the phisrc in replace_phi_node()
78 struct instruction *def = p->def; in replace_phi_node() local
84 assert(def->opcode == OP_PHISOURCE); in replace_phi_node()
86 def->opcode = OP_COPY; in replace_phi_node()
87 def in replace_phi_node()
[all...]
H A Dliveness.c21 struct instruction *def; in phi_defines() local
24 def = phi->def; in phi_defines()
25 if (!def || !def->bb) in phi_defines()
27 defines(def->bb, target); in phi_defines()
32 void (*def)(struct basic_block *, pseudo_t), in asm_liveness()
45 def(bb, entry->pseudo); in asm_liveness()
50 void (*def)(struct basic_block *, pseudo_t), in track_instruction_usage()
56 #define DEFINES(x) def(b in track_instruction_usage()
159 struct instruction *def = pseudo->def; insn_uses() local
228 pseudo_t def; track_pseudo_liveness() local
255 struct instruction *def; track_phi_uses() local
[all...]
/third_party/mesa3d/src/amd/compiler/tests/
H A Dtest_sdwa.cpp37 SDWA_instruction *sdwa = &bld.vop2_sdwa(aco_opcode::v_mul_f32, bld.def(v1), inputs[0], inputs[1]).instr->sdwa();
40 sdwa = &bld.vop2_sdwa(aco_opcode::v_mul_f32, bld.def(v1b), inputs[0], inputs[1]).instr->sdwa();
42 sdwa = &bld.vop2_sdwa(aco_opcode::v_mul_f32, bld.def(v1), inputs[0], inputs[1]).instr->sdwa();
60 bld.vop2_sdwa(aco_opcode::v_mul_f32, bld.def(v1), inputs[0], inputs[1]);
75 bld.vop2_sdwa(aco_opcode::v_mul_f32, bld.def(v1), inputs[2], inputs[1]);
76 bld.vop2_sdwa(aco_opcode::v_mul_f32, bld.def(v1), inputs[0], inputs[3]);
80 bld.vop2_sdwa(aco_opcode::v_mul_f32, bld.def(v1), Operand::c32(4u), inputs[1]);
81 bld.vop2_sdwa(aco_opcode::v_mul_f32, bld.def(v1), inputs[0], Operand::c32(4u));
86 bld.vop2_sdwa(aco_opcode::v_mul_f32, bld.def(v1), Operand::c32(0x1234u), inputs[1]);
87 bld.vop2_sdwa(aco_opcode::v_mul_f32, bld.def(v
[all...]
H A Dtest_optimizer_postRA.cpp51 auto vcmp = bld.vopc(aco_opcode::v_cmp_eq_u32, bld.def(bld.lm, vcc), Operand::zero(),
53 auto sand = bld.sop2(Builder::s_and, bld.def(bld.lm, reg_s0), bld.def(s1, scc), bld.vcc(vcmp), Operand(exec, bld.lm));
54 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s2, reg_s2), bld.scc(sand.def(1).getTemp()));
68 auto vcmp = bld.vopc(aco_opcode::v_cmp_eq_u32, bld.def(bld.lm, vcc), Operand::zero(),
70 auto sand = bld.sop2(Builder::s_and, bld.def(bld.lm, reg_s0), bld.def(s1, scc), bld.vcc(vcmp), Operand(exec, bld.lm));
71 auto ovrwr = bld.sop1(Builder::s_mov, bld.def(bld.lm, vcc), Operand::zero());
72 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s
[all...]
H A Dtest_optimizer.cpp37 writeout(0, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), inputs[0], neg_b));
44 writeout(1, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), Operand::c32(0x123456u), neg_a));
49 writeout(2, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), neg_neg_a, inputs[1]));
54 writeout(3, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), abs_neg_a, inputs[1]));
60 writeout(4, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), neg_abs_a, inputs[1]));
64 writeout(5, bld.vop2_dpp(aco_opcode::v_mul_f32, bld.def(v1), neg_a, inputs[1], dpp_row_sl(1)));
68 writeout(6, bld.vop2(aco_opcode::v_add_f32, bld.def(v1), neg_a, inputs[1]));
72 writeout(7, bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[1], neg_a));
76 Temp neg_c = fneg(bld.copy(bld.def(v1), inputs[2]));
77 writeout(8, bld.vop2(aco_opcode::v_mul_f32, bld.def(v
[all...]
H A Dtest_regalloc.cpp48 Builder::Result tmp = bld.pseudo(aco_opcode::p_split_vector, bld.def(v2b), bld.def(v2b), inputs[0]);
53 auto result1 = bld.vop1(aco_opcode::v_cvt_f32_f16, bld.def(v1), tmp.def(1).getTemp());
54 auto result2 = bld.vop1(aco_opcode::v_cvt_f32_f16, bld.def(v1), tmp.def(0).getTemp());
70 Temp hi = bld.pseudo(aco_opcode::p_split_vector, bld.def(v2b), bld.def(v2b), inputs[0]).def(1).getTemp();
74 Temp lo = bld.vop1(aco_opcode::v_not_b32, bld.def(v2
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_shrink_vectors.c42 * typically get unused def channel trimming by scalarizing and dead code
62 shrink_dest_to_read_mask(nir_ssa_def *def) in shrink_dest_to_read_mask() argument
65 if (def->num_components == 1) in shrink_dest_to_read_mask()
69 nir_foreach_use(use_src, def) { in shrink_dest_to_read_mask()
74 unsigned mask = nir_ssa_def_components_read(def); in shrink_dest_to_read_mask()
82 assert(rounded <= def->num_components); in shrink_dest_to_read_mask()
85 if (def->num_components > last_bit) { in shrink_dest_to_read_mask()
86 def->num_components = last_bit; in shrink_dest_to_read_mask()
94 reswizzle_alu_uses(nir_ssa_def *def, uint8_t *reswizzle) in reswizzle_alu_uses() argument
96 nir_foreach_use(use_src, def) { in reswizzle_alu_uses()
108 is_only_used_by_alu(nir_ssa_def *def) is_only_used_by_alu() argument
121 nir_ssa_def *def = &instr->dest.dest.ssa; opt_shrink_vector() local
172 nir_ssa_def *def = &instr->dest.dest.ssa; opt_shrink_vectors_alu() local
278 nir_ssa_def *def = &instr->def; opt_shrink_vectors_load_const() local
[all...]
H A Dnir_repair_ssa.c68 repair_ssa_def(nir_ssa_def *def, void *void_state) in repair_ssa_def() argument
73 nir_foreach_use(src, def) { in repair_ssa_def()
75 !nir_block_dominates(def->parent_instr->block, get_src_block(src))) { in repair_ssa_def()
81 nir_foreach_if_use(src, def) { in repair_ssa_def()
85 !nir_block_dominates(def->parent_instr->block, block_before_if)) { in repair_ssa_def()
96 BITSET_SET(state->def_set, def->parent_instr->block->index); in repair_ssa_def()
99 nir_phi_builder_add_value(pb, def->num_components, def->bit_size, in repair_ssa_def()
102 nir_phi_builder_value_set_block_def(val, def->parent_instr->block, def); in repair_ssa_def()
[all...]
/third_party/zlib/examples/
H A Dfitblk.c70 /* compress from file to def until provided buffer is full or end of
73 local int partcompress(FILE *in, z_streamp def) in partcompress() argument
80 def->avail_in = fread(raw, 1, RAWLEN, in); in partcompress()
83 def->next_in = raw; in partcompress()
86 ret = deflate(def, flush); in partcompress()
88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH); in partcompress()
92 /* recompress from inf's input to def's output; the input for inf and
93 the output for def are set in those structures before calling;
96 local int recompress(z_streamp inf, z_streamp def) in recompress() argument
113 def in recompress()
134 z_stream def, inf; /* zlib deflate and inflate states */ main() local
[all...]
/third_party/benchmark/bindings/python/google_benchmark/
H A Dbenchmark.cc76 .def("unit", &Benchmark::Unit, nb::rv_policy::reference) in NB_MODULE()
77 .def("arg", &Benchmark::Arg, nb::rv_policy::reference) in NB_MODULE()
78 .def("args", &Benchmark::Args, nb::rv_policy::reference) in NB_MODULE()
79 .def("range", &Benchmark::Range, nb::rv_policy::reference, in NB_MODULE()
81 .def("dense_range", &Benchmark::DenseRange, in NB_MODULE()
84 .def("ranges", &Benchmark::Ranges, nb::rv_policy::reference) in NB_MODULE()
85 .def("args_product", &Benchmark::ArgsProduct, in NB_MODULE()
87 .def("arg_name", &Benchmark::ArgName, nb::rv_policy::reference) in NB_MODULE()
88 .def("arg_names", &Benchmark::ArgNames, in NB_MODULE()
90 .def("range_pai in NB_MODULE()
[all...]
/third_party/spirv-tools/source/opt/
H A Ddef_use_manager.cpp55 Instruction* def = GetDef(use_id); in AnalyzeInstUse() local
56 assert(def && "Definition is not registered."); in AnalyzeInstUse()
57 id_to_users_.insert(UserEntry{def, inst}); in AnalyzeInstUse()
98 const Instruction* def) const { in UsersBegin()
100 UserEntry{const_cast<Instruction*>(def), nullptr}); in UsersBegin()
106 return (iter != cached_end && iter->def == inst); in UsersNotEnd()
115 const Instruction* def, const std::function<bool(Instruction*)>& f) const { in WhileEachUser()
116 // Ensure that |def| has been registered. in WhileEachUser()
117 assert(def && (!def in WhileEachUser()
114 WhileEachUser( const Instruction* def, const std::function<bool(Instruction*)>& f) const WhileEachUser() argument
133 ForEachUser( const Instruction* def, const std::function<void(Instruction*)>& f) const ForEachUser() argument
146 WhileEachUse( const Instruction* def, const std::function<bool(Instruction*, uint32_t)>& f) const WhileEachUse() argument
174 ForEachUse( const Instruction* def, const std::function<void(Instruction*, uint32_t)>& f) const ForEachUse() argument
210 const Instruction* def = GetDef(id); GetAnnotations() local
[all...]
H A Ddef_use_manager.h56 Instruction* def; member
61 return lhs.def == rhs.def && lhs.user == rhs.user; in operator ==()
72 // definition (i.e. using {def, nullptr}).
75 // If lhs.def and rhs.def are both null, fall through to checking the in operator ()()
77 if (!lhs.def && rhs.def) return true; in operator ()()
78 if (lhs.def && !rhs.def) retur in operator ()()
[all...]
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_spill.c43 struct ir3_register *def; member
93 /* Map from SSA def to reg_or_immed it is mapped to at the end of the block.
183 if (!instr->srcs[i]->def || in instr_cycles()
184 instr->srcs[i]->def->merge_set != instr->dsts[i]->merge_set) { in instr_cycles()
195 if (!instr->srcs[i]->def || in instr_cycles()
196 instr->srcs[i]->def->merge_set != instr->dsts[0]->merge_set) { in instr_cycles()
225 src->next_use = tmp_next_use[src->def->name]; in compute_block_next_distance()
232 if (src->def->merge_set == instr->dsts[i]->merge_set && in compute_block_next_distance()
233 src->def->merge_set_offset == instr->dsts[i]->merge_set_offset) { in compute_block_next_distance()
234 tmp_next_use[src->def in compute_block_next_distance()
836 add_to_merge_set(struct ir3_merge_set *set, struct ir3_register *def, unsigned offset) add_to_merge_set() argument
846 split(struct ir3_register *def, unsigned offset, struct ir3_instruction *after, struct ir3_block *block) split() argument
947 rewrite_src_interval(struct ra_spill_ctx *ctx, struct ra_spill_interval *interval, struct ir3_register *def, struct ir3_instruction *instr, struct ir3_block *block) rewrite_src_interval() argument
969 reload_def(struct ra_spill_ctx *ctx, struct ir3_register *def, struct ir3_instruction *instr, struct ir3_block *block) reload_def() argument
1114 create_temp_interval(struct ra_spill_ctx *ctx, struct ir3_register *def) create_temp_interval() argument
1312 handle_live_in(struct ra_spill_ctx *ctx, struct ir3_block *block, struct ir3_register *def) handle_live_in() argument
1326 is_live_in_phi(struct ir3_register *def, struct ir3_block *block) is_live_in_phi() argument
1332 is_live_in_pred(struct ra_spill_ctx *ctx, struct ir3_register *def, struct ir3_block *block, unsigned pred_idx) is_live_in_pred() argument
1347 is_live_in_undef(struct ir3_register *def, struct ir3_block *block, unsigned pred_idx) is_live_in_undef() argument
1357 read_live_in(struct ra_spill_ctx *ctx, struct ir3_register *def, struct ir3_block *block, unsigned pred_idx) read_live_in() argument
1377 is_live_in_all_preds(struct ra_spill_ctx *ctx, struct ir3_register *def, struct ir3_block *block) is_live_in_all_preds() argument
1389 spill_live_in(struct ra_spill_ctx *ctx, struct ir3_register *def, struct ir3_block *block) spill_live_in() argument
1465 struct ir3_register *def = interval->interval.reg; live_in_rewrite() local
1489 reload_live_in(struct ra_spill_ctx *ctx, struct ir3_register *def, struct ir3_block *block) reload_live_in() argument
1526 add_live_in_phi(struct ra_spill_ctx *ctx, struct ir3_register *def, struct ir3_block *block) add_live_in_phi() argument
1654 struct ir3_register *def = interval->interval.reg; spill_live_out() local
1675 reload_live_out(struct ra_spill_ctx *ctx, struct ir3_register *def, struct ir3_block *block) reload_live_out() argument
1708 struct ir3_register *def = instr->srcs[pred_idx]->def; update_live_out_phis() local
1727 struct ir3_register *def = interval->interval.reg; record_pred_live_out() local
1868 struct ir3_register *def = NULL; simplify_phi_node() local
1885 simplify_phi_def(struct ir3_register *def) simplify_phi_def() argument
[all...]
H A Dir3_ra_validate.c70 * SSA def assigned to it plus an offset into that definition, and when
80 struct ir3_register *def; member
158 if (dst->def == UNKNOWN) { in merge_reg()
160 return src->def != UNKNOWN; in merge_reg()
161 } else if (dst->def == OVERDEF) { in merge_reg()
164 if (src->def == UNKNOWN) in merge_reg()
166 else if (src->def == OVERDEF) { in merge_reg()
170 if (dst->def != src->def || dst->offset != src->offset) { in merge_reg()
171 dst->def in merge_reg()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Ddef_use_manager.cpp60 Instruction* def = GetDef(use_id); in AnalyzeInstUse() local
61 if (!def) assert(false && "Definition is not registered."); in AnalyzeInstUse()
62 id_to_users_.insert(UserEntry(def, inst)); in AnalyzeInstUse()
103 const Instruction* def) const { in UsersBegin()
105 UserEntry(const_cast<Instruction*>(def), nullptr)); in UsersBegin()
120 const Instruction* def, const std::function<bool(Instruction*)>& f) const { in WhileEachUser()
121 // Ensure that |def| has been registered. in WhileEachUser()
122 assert(def && (!def->HasResultId() || def in WhileEachUser()
119 WhileEachUser( const Instruction* def, const std::function<bool(Instruction*)>& f) const WhileEachUser() argument
138 ForEachUser( const Instruction* def, const std::function<void(Instruction*)>& f) const ForEachUser() argument
151 WhileEachUse( const Instruction* def, const std::function<bool(Instruction*, uint32_t)>& f) const WhileEachUse() argument
179 ForEachUse( const Instruction* def, const std::function<void(Instruction*, uint32_t)>& f) const ForEachUse() argument
215 const Instruction* def = GetDef(id); GetAnnotations() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Ddef_use_manager.cpp60 Instruction* def = GetDef(use_id); in AnalyzeInstUse() local
61 if (!def) assert(false && "Definition is not registered."); in AnalyzeInstUse()
62 id_to_users_.insert(UserEntry(def, inst)); in AnalyzeInstUse()
103 const Instruction* def) const { in UsersBegin()
105 UserEntry(const_cast<Instruction*>(def), nullptr)); in UsersBegin()
120 const Instruction* def, const std::function<bool(Instruction*)>& f) const { in WhileEachUser()
121 // Ensure that |def| has been registered. in WhileEachUser()
122 assert(def && (!def->HasResultId() || def in WhileEachUser()
119 WhileEachUser( const Instruction* def, const std::function<bool(Instruction*)>& f) const WhileEachUser() argument
138 ForEachUser( const Instruction* def, const std::function<void(Instruction*)>& f) const ForEachUser() argument
151 WhileEachUse( const Instruction* def, const std::function<bool(Instruction*, uint32_t)>& f) const WhileEachUse() argument
179 ForEachUse( const Instruction* def, const std::function<void(Instruction*, uint32_t)>& f) const ForEachUse() argument
215 const Instruction* def = GetDef(id); GetAnnotations() local
[all...]
/third_party/mesa3d/src/asahi/compiler/
H A Dagx_optimizer.c31 * Every def is visited before any of its uses.
35 * Every use of a def is visited before the def.
73 agx_is_fmov(agx_instr *def) in agx_is_fmov() argument
75 return (def->op == AGX_OPCODE_FADD) in agx_is_fmov()
76 && agx_is_equiv(def->src[1], agx_negzero()); in agx_is_fmov()
101 agx_instr *def = defs[src.value]; in agx_optimizer_fmov() local
102 if (def == NULL) continue; /* happens for phis in loops */ in agx_optimizer_fmov()
103 if (!agx_is_fmov(def)) continue; in agx_optimizer_fmov()
104 if (def in agx_optimizer_fmov()
118 agx_instr *def = defs[src.value]; agx_optimizer_inline_imm() local
163 agx_instr *def = defs[src.value]; agx_optimizer_copyprop() local
[all...]
/third_party/node/deps/v8/tools/torque/vim-torque/syntax/
H A Dtorque.vim54 hi def link torqueAssert Statement
55 hi def link torqueAtom Constant
56 hi def link torqueBoolean Boolean
57 hi def link torqueBranch Conditional
58 hi def link torqueComment Comment
59 hi def link torqueConditional Conditional
60 hi def link torqueConstant Constant
61 hi def link torqueFunction Function
62 hi def link torqueKeyword Keyword
63 hi def lin
[all...]
/third_party/mesa3d/src/compiler/spirv/
H A Dvtn_alu.c107 vec_src[j] = nir_fdot(&b->nb, src0_transpose->elems[j]->def, in matrix_multiply()
108 src1->elems[i]->def); in matrix_multiply()
110 dest->elems[i]->def = nir_vec(&b->nb, vec_src, src0_rows); in matrix_multiply()
120 dest->elems[i]->def = in matrix_multiply()
121 nir_fmul(&b->nb, src0->elems[src0_columns - 1]->def, in matrix_multiply()
122 nir_channel(&b->nb, src1->elems[i]->def, src0_columns - 1)); in matrix_multiply()
124 dest->elems[i]->def = in matrix_multiply()
125 nir_ffma(&b->nb, src0->elems[j]->def, in matrix_multiply()
126 nir_channel(&b->nb, src1->elems[i]->def, j), in matrix_multiply()
127 dest->elems[i]->def); in matrix_multiply()
157 vtn_mediump_downconvert(struct vtn_builder *b, enum glsl_base_type base_type, nir_ssa_def *def) vtn_mediump_downconvert() argument
563 vtn_mediump_upconvert(struct vtn_builder *b, enum glsl_base_type base_type, nir_ssa_def *def) vtn_mediump_upconvert() argument
[all...]
H A Dvtn_amd.c33 nir_ssa_def *def; in vtn_handle_amd_gcn_shader_instruction() local
36 def = nir_cube_face_index_amd(&b->nb, vtn_get_nir_ssa(b, w[5])); in vtn_handle_amd_gcn_shader_instruction()
39 def = nir_cube_face_coord_amd(&b->nb, vtn_get_nir_ssa(b, w[5])); in vtn_handle_amd_gcn_shader_instruction()
42 def = nir_pack_64_2x32(&b->nb, nir_shader_clock(&b->nb, NIR_SCOPE_SUBGROUP)); in vtn_handle_amd_gcn_shader_instruction()
49 vtn_push_nir_ssa(b, w[2], def); in vtn_handle_amd_gcn_shader_instruction()
137 nir_ssa_def *def; in vtn_handle_amd_shader_trinary_minmax_instruction() local
140 def = nir_fmin(nb, src[0], nir_fmin(nb, src[1], src[2])); in vtn_handle_amd_shader_trinary_minmax_instruction()
143 def = nir_umin(nb, src[0], nir_umin(nb, src[1], src[2])); in vtn_handle_amd_shader_trinary_minmax_instruction()
146 def = nir_imin(nb, src[0], nir_imin(nb, src[1], src[2])); in vtn_handle_amd_shader_trinary_minmax_instruction()
149 def in vtn_handle_amd_shader_trinary_minmax_instruction()
221 nir_ssa_def *def; vtn_handle_amd_shader_explicit_vertex_parameter_instruction() local
[all...]
/third_party/skia/third_party/externals/microhttpd/doc/
H A Dtexinfo.tex6 \def\texinfoversion{2013-02-01.11}
114 \def\linenumber{l.\the\inputlineno:\space}
160 \def\spaceisspace{\catcode`\ =\spacecat}
179 \def\gobble#1{}
182 \def\makecsname#1{\expandafter\noexpand\csname#1\endcsname}
205 \def\finalout{\overfullrule=0pt }
213 \def\gloggingall{\begingroup \globaldefs = 1 \loggingall \endgroup}%
214 \def\loggingall{%
238 \def\errormsg{\begingroup \indexnofonts \doerrormsg}
239 \def\doerrorms
[all...]
/third_party/ffmpeg/libavfilter/
H A Dtransform.c34 int width, int height, int stride, uint8_t def)
36 #define PIXEL(img, x, y, w, h, stride, def) \
37 ((x) < 0 || (y) < 0) ? (def) : \
38 (((x) >= (w) || (y) >= (h)) ? (def) : \
46 return PIXEL(src, (int)(x + 0.5), (int)(y + 0.5), width, height, stride, def); in INTERPOLATE_METHOD()
58 return def; in INTERPOLATE_METHOD()
66 v1 = PIXEL(src, x_c, y_c, width, height, stride, def); in INTERPOLATE_METHOD()
67 v2 = PIXEL(src, x_c, y_f, width, height, stride, def); in INTERPOLATE_METHOD()
68 v3 = PIXEL(src, x_f, y_c, width, height, stride, def); in INTERPOLATE_METHOD()
69 v4 = PIXEL(src, x_f, y_f, width, height, stride, def); in INTERPOLATE_METHOD()
133 uint8_t def = 0; ff_affine_transform() local
[all...]
/third_party/toybox/kconfig/
H A Dconfdata.c94 int conf_read_simple(const char *name, int def) in conf_read_simple() argument
138 def_flags = SYMBOL_DEF << def; in conf_read_simple()
148 if (sym->def[def].val) in conf_read_simple()
149 free(sym->def[def].val); in conf_read_simple()
151 sym->def[def].val = NULL; in conf_read_simple()
152 sym->def[def] in conf_read_simple()
[all...]

Completed in 15 milliseconds

12345678910>>...36