/third_party/node/deps/v8/src/compiler/ |
H A D | node-aux-data.h | 28 template <class T, T def(Zone*) = DefaultConstruct<T>> 33 : zone_(zone), aux_data_(initial_size, def(zone), zone) {} in NodeAuxData() 38 if (id >= aux_data_.size()) aux_data_.resize(id + 1, def(zone_)); in Set() 48 return (id < aux_data_.size()) ? aux_data_[id] : def(zone_); in Get() 62 template <class T, T def(Zone*)> 63 class NodeAuxData<T, def>::const_iterator { 96 template <class T, T def(Zone*)> 97 typename NodeAuxData<T, def>::const_iterator NodeAuxData<T, def>::begin() in begin() 99 return typename NodeAuxData<T, def> in begin() [all...] |
/foundation/multimedia/media_foundation/engine/plugin/core/ |
H A D | plugin_register.h | 80 Status AddPlugin(const PluginDefBase& def) override; 82 Status AddPackage(const PackageDef& def) override; 84 Status SetPackageDef(const PackageDef& def); 86 void UpdateRegisterTableAndRegisterNames(const PluginDefBase& def); 88 void SetPluginInfo(std::shared_ptr<PluginInfo>& info, const PluginDefBase& def); 90 Status InitSourceInfo(std::shared_ptr<PluginRegInfo>& reg, const PluginDefBase& def); 92 static Status SourceCapabilityConvert(std::shared_ptr<PluginInfo>& info, const PluginDefBase& def); 94 Status InitDemuxerInfo(std::shared_ptr<PluginRegInfo>& reg, const PluginDefBase& def); 96 static Status DemuxerCapabilityConvert(std::shared_ptr<PluginInfo>& info, const PluginDefBase& def); 98 Status InitMuxerInfo(std::shared_ptr<PluginRegInfo>& reg, const PluginDefBase& def); [all...] |
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 6 \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/vk-gl-cts/external/vulkan-docs/src/config/spec-macros/ |
H A D | extension.rb | 19 def text 23 def process parent, target, attributes 31 def exists? target 35 def process parent, target, attributes 65 def process parent, target, attributes 77 def process parent, target, attributes 83 def process parent, target, attributes 92 def text 101 def text 110 def tex [all...] |
/third_party/toybox/kconfig/ |
H A D | confdata.c | 94 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...] |
/third_party/alsa-utils/alsamixer/ |
H A D | curskey.c | 228 int curskey_parse(const char *def) { in curskey_parse() argument 232 if (! def) in curskey_parse() 236 if (def[0] == '^' && def[1] != '\0') { in curskey_parse() 237 ++def; in curskey_parse() 240 else if ((def[0] == 'C' || def[0] == 'c') && def[1] == '-') { in curskey_parse() 241 def += 2; in curskey_parse() 244 else if (IS_META(def)) { in curskey_parse() [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_shader_calls.c | 117 add_ssa_def_to_bitset(nir_ssa_def *def, struct brw_bitset *set) in add_ssa_def_to_bitset() argument 119 if (def->index >= set->size) in add_ssa_def_to_bitset() 122 BITSET_SET(set->set, def->index); in add_ssa_def_to_bitset() 209 can_remat_ssa_def(nir_ssa_def *def, struct brw_bitset *remat) in can_remat_ssa_def() argument 211 return can_remat_instr(def->parent_instr, remat); in can_remat_ssa_def() 215 remat_ssa_def(nir_builder *b, nir_ssa_def *def) in remat_ssa_def() argument 217 nir_instr *clone = nir_instr_clone(b->shader, def->parent_instr); in remat_ssa_def() 228 get_phi_builder_value_for_def(nir_ssa_def *def, in get_phi_builder_value_for_def() argument 231 if (def->index >= pbv_arr->len) in get_phi_builder_value_for_def() 234 return pbv_arr->arr[def in get_phi_builder_value_for_def() 269 spill_fill(nir_builder *before, nir_builder *after, nir_ssa_def *def, unsigned offset, nir_address_format address_format, unsigned stack_alignment) spill_fill() argument 385 nir_ssa_def *def = nir_instr_ssa_def(instr); spill_ssa_defs_and_lower_shader_calls() local 420 nir_ssa_def *def = spill_defs[index]; spill_ssa_defs_and_lower_shader_calls() local 525 nir_ssa_def *def = spill_defs[index]; spill_ssa_defs_and_lower_shader_calls() local 543 nir_ssa_def *def = nir_instr_ssa_def(instr); spill_ssa_defs_and_lower_shader_calls() local 856 nir_ssa_def *def = nir_instr_ssa_def(instr); flatten_resume_if_ladder() local [all...] |
H A D | nir_to_lcssa.c | 93 is_defined_before_loop(nir_ssa_def *def, nir_loop *loop) in is_defined_before_loop() argument 95 nir_instr *instr = def->parent_instr; in is_defined_before_loop() 112 def_is_invariant(nir_ssa_def *def, nir_loop *loop) in def_is_invariant() argument 114 if (is_defined_before_loop(def, loop)) in def_is_invariant() 117 if (def->parent_instr->pass_flags == undefined) in def_is_invariant() 118 def->parent_instr->pass_flags = instr_is_invariant(def->parent_instr, loop); in def_is_invariant() 120 return def->parent_instr->pass_flags == invariant; in def_is_invariant() 193 convert_loop_exit_for_ssa(nir_ssa_def *def, void *void_state) in convert_loop_exit_for_ssa() argument 200 (def in convert_loop_exit_for_ssa() [all...] |
H A D | nir_from_ssa.c | 48 /* Returns if def @a comes after def @b. 107 * is represented by a combination of a hash table and the "def" parameter 121 nir_ssa_def *def; member 139 while (dom_idx >= 0 && !ssa_def_dominates(dom[dom_idx], node->def)) 145 fprintf(fp, "ssa_%d\n", node->def->index); 147 dom[++dom_idx] = node->def; 153 get_merge_node(nir_ssa_def *def, struct from_ssa_state *state) in get_merge_node() argument 156 _mesa_hash_table_search(state->merge_node_table, def); in get_merge_node() 163 set->divergent = def in get_merge_node() 541 create_reg_for_ssa_def(nir_ssa_def *def, nir_function_impl *impl) create_reg_for_ssa_def() argument 553 rewrite_ssa_def(nir_ssa_def *def, void *void_state) rewrite_ssa_def() argument 943 place_phi_read(nir_builder *b, nir_register *reg, nir_ssa_def *def, nir_block *block, struct set *visited_blocks) place_phi_read() argument 1025 nir_ssa_def *def = nir_load_reg(&b, reg); nir_lower_phis_to_regs_block() local 1080 ssa_def_is_local_to_block(nir_ssa_def *def, UNUSED void *state) ssa_def_is_local_to_block() argument [all...] |
H A D | nir_opt_remove_phis.c | 77 nir_ssa_def *def = NULL; in remove_phis_block() local 98 if (def == NULL) { in remove_phis_block() 99 def = src->src.ssa; in remove_phis_block() 100 mov = get_parent_mov(def); in remove_phis_block() 102 nir_block_dominates(def->parent_instr->block, src->pred)) { in remove_phis_block() 105 if (src->src.ssa != def && !matching_mov(mov, src->src.ssa)) { in remove_phis_block() 115 if (!def) { in remove_phis_block() 119 def = nir_ssa_undef(b, phi->dest.ssa.num_components, in remove_phis_block() 131 def = nir_mov_alu(b, mov->src[0], def in remove_phis_block() [all...] |
H A D | nir_opt_preamble.c | 78 nir_ssa_def *def; member 297 def_state *state = &ctx->states[ctx->def->index]; in update_src_value() 351 nir_ssa_def *def = nir_instr_ssa_def(instr); in nir_opt_preamble() local 352 if (!def) in nir_opt_preamble() 355 def_state *state = &ctx.states[def->index]; in nir_opt_preamble() 377 nir_ssa_def *def = nir_instr_ssa_def(instr); in nir_opt_preamble() local 378 if (!def) in nir_opt_preamble() 381 def_state *state = &ctx.states[def->index]; in nir_opt_preamble() 389 nir_foreach_use (use, def) { in nir_opt_preamble() 402 nir_foreach_if_use (use, def) { in nir_opt_preamble() 438 nir_ssa_def *def = nir_instr_ssa_def(instr); nir_opt_preamble() local 527 nir_ssa_def *def = nir_instr_ssa_def(instr); nir_opt_preamble() local 570 nir_ssa_def *def = nir_instr_ssa_def(instr); nir_opt_preamble() local [all...] |
/third_party/unity/test/ |
H A D | rakefile_helper.rb | 15 def load_configuration(config_file) 24 def configure_clean 28 def configure_toolchain(config_file = DEFAULT_CONFIG_FILE) 35 def unit_test_files 41 def local_include_dirs 50 def extract_headers(filename) 60 def find_source_file(header, paths) 68 def tackit(strings) 77 def squash(prefix, items) 83 def shoul [all...] |
/third_party/mesa3d/src/panfrost/midgard/ |
H A D | midgard_address.c | 51 nir_alu_instr *alu = nir_instr_as_alu(s.def->parent_instr); in mir_args_ssa() 69 if (address->A.def && nir_ssa_scalar_is_const(address->A)) { in mir_match_constant() 71 address->A.def = NULL; in mir_match_constant() 74 if (address->B.def && nir_ssa_scalar_is_const(address->B)) { in mir_match_constant() 76 address->B.def = NULL; in mir_match_constant() 88 if (!address->B.def || !nir_ssa_scalar_is_alu(address->B)) in mir_match_iadd() 111 first_free && !address->A.def) { in mir_match_iadd() 122 if (!address->B.def || !nir_ssa_scalar_is_alu(address->B)) in mir_match_u2u64() 141 if (!address->B.def || !nir_ssa_scalar_is_alu(address->B)) in mir_match_i2i64() 160 if (!address->B.def || !nir_ssa_scalar_is_al in mir_match_ishl() [all...] |
/third_party/cJSON/tests/unity/test/ |
H A D | rakefile_helper.rb | 15 def load_configuration(config_file) 24 def configure_clean 28 def configure_toolchain(config_file = DEFAULT_CONFIG_FILE) 35 def unit_test_files 41 def local_include_dirs 47 def extract_headers(filename) 57 def find_source_file(header, paths) 65 def tackit(strings) 74 def squash(prefix, items) 80 def shoul [all...] |
/third_party/cJSON/tests/unity/auto/ |
H A D | stylize_as_junit.rb | 18 def self.parse(args) 72 def initialize 77 def run 120 def usage(err_msg = nil) 139 def get_details(_result_file, lines) 153 def parse_test_summary(summary) 158 def here 164 def results_structure 175 def write_xml_header(stream) 179 def write_suites_heade [all...] |
/third_party/cJSON/tests/unity/examples/example_3/ |
H A D | rakefile_helper.rb | 10 def load_configuration(config_file) 15 def configure_clean 19 def configure_toolchain(config_file = DEFAULT_CONFIG_FILE) 25 def unit_test_files 31 def local_include_dirs 37 def extract_headers(filename) 47 def find_source_file(header, paths) 55 def tackit(strings) 64 def squash(prefix, items) 70 def build_compiler_field [all...] |
/third_party/unity/examples/example_3/ |
H A D | rakefile_helper.rb | 14 def load_configuration(config_file) 19 def configure_clean 23 def configure_toolchain(config_file = DEFAULT_CONFIG_FILE) 29 def unit_test_files 35 def local_include_dirs 41 def extract_headers(filename) 51 def find_source_file(header, paths) 59 def tackit(strings) 67 def squash(prefix, items) 73 def build_compiler_field [all...] |
/third_party/unity/auto/ |
H A D | parse_output.rb | 30 def initialize 52 def set_xml_output 57 def test_suite_name=(cli_arg) 62 def xml_encode_s(str) 67 def write_xml_output 76 def push_xml_output_suite_info 85 def push_xml_output_passed(test_name, execution_time = 0) 90 def push_xml_output_failed(test_name, reason, execution_time = 0) 97 def push_xml_output_ignored(test_name, reason, execution_time = 0) 105 def test_suite_verif [all...] |
H A D | stylize_as_junit.rb | 18 def self.parse(args) 72 def initialize 77 def run 120 def usage(err_msg = nil) 139 def get_details(_result_file, lines) 153 def parse_test_summary(summary) 161 def results_structure 172 def write_xml_header(stream) 176 def write_suites_header(stream) 180 def write_suite_heade [all...] |
/third_party/mesa3d/src/gallium/frontends/omx/ |
H A D | vid_enc_common.c | 180 struct encode_task *enc_NeedTask_common(vid_enc_PrivateType * priv, OMX_VIDEO_PORTDEFINITIONTYPE *def) in enc_NeedTask_common() argument 197 templat.width = def->nFrameWidth; in enc_NeedTask_common() 198 templat.height = def->nFrameHeight; in enc_NeedTask_common() 210 void enc_ScaleInput_common(vid_enc_PrivateType * priv, OMX_VIDEO_PORTDEFINITIONTYPE *def, in enc_ScaleInput_common() argument 234 src_rect.x1 = def->nFrameWidth; in enc_ScaleInput_common() 235 src_rect.y1 = def->nFrameHeight; in enc_ScaleInput_common() 397 OMX_ERRORTYPE enc_LoadImage_common(vid_enc_PrivateType * priv, OMX_VIDEO_PORTDEFINITIONTYPE *def, in enc_LoadImage_common() argument 414 box.width = def->nFrameWidth; in enc_LoadImage_common() 415 box.height = def->nFrameHeight; in enc_LoadImage_common() 419 ptr, def in enc_LoadImage_common() [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/usr/sensor/primesensor_ps5260_2L/ |
H A D | ps5260_2l_cmos.c | 750 static HI_VOID cmos_get_isp_dng_default(ISP_SNS_STATE_S *sns_state, ISP_CMOS_DEFAULT_S *def) in cmos_get_isp_dng_default() argument 752 (hi_void)memcpy_s(&def->stDngColorParam, sizeof(ISP_CMOS_DNG_COLORPARAM_S), &g_stDngColorParam, in cmos_get_isp_dng_default() 758 def->stSensorMode.stDngRawFormat.u8BitsPerSample = 12; /* 12bit */ in cmos_get_isp_dng_default() 759 def->stSensorMode.stDngRawFormat.u32WhiteLevel = 4095; /* max 4095 */ in cmos_get_isp_dng_default() 763 def->stSensorMode.stDngRawFormat.u8BitsPerSample = 10; /* 10bit */ in cmos_get_isp_dng_default() 764 def->stSensorMode.stDngRawFormat.u32WhiteLevel = 1023; /* max 1023 */ in cmos_get_isp_dng_default() 768 def->stSensorMode.stDngRawFormat.stDefaultScale.stDefaultScaleH.u32Denominator = 1; in cmos_get_isp_dng_default() 769 def->stSensorMode.stDngRawFormat.stDefaultScale.stDefaultScaleH.u32Numerator = 1; in cmos_get_isp_dng_default() 770 def->stSensorMode.stDngRawFormat.stDefaultScale.stDefaultScaleV.u32Denominator = 1; in cmos_get_isp_dng_default() 771 def in cmos_get_isp_dng_default() 788 cmos_get_isp_linear_default(ISP_CMOS_DEFAULT_S *def) cmos_get_isp_linear_default() argument 817 cmos_get_isp_built_in_wdr_default(ISP_CMOS_DEFAULT_S *def) cmos_get_isp_built_in_wdr_default() argument 853 cmos_get_isp_default(VI_PIPE vi_pipe, ISP_CMOS_DEFAULT_S *def) cmos_get_isp_default() argument [all...] |
/third_party/mesa3d/src/compiler/spirv/ |
H A D | vtn_glsl450.c | 108 cols[i] = src->elems[i]->def; in build_mat_det() 121 cols[i] = src->elems[i]->def; in matrix_inverse() 140 val->elems[i]->def = nir_fmul(&b->nb, adj_col[i], det_inv); in matrix_inverse() 336 dest->def = nir_radians(nb, src[0]); in handle_glsl450_alu() 339 dest->def = nir_degrees(nb, src[0]); in handle_glsl450_alu() 342 dest->def = nir_ftan(nb, src[0]); in handle_glsl450_alu() 358 dest->def = nir_bcsel(nb, in handle_glsl450_alu() 365 whole->def = nir_fmul(nb, sign, nir_ffloor(nb, abs)); in handle_glsl450_alu() 380 dest->elems[0]->def = nir_bcsel(nb, in handle_glsl450_alu() 384 dest->elems[1]->def in handle_glsl450_alu() 696 nir_ssa_def *def = &intrin->dest.ssa; handle_glsl450_interpolation() local [all...] |
/third_party/musl/libc-test/src/functionalext/unittest/ |
H A D | unit_test_ldso_dynlink.c | 250 int check_vna_hash(Verdef *def, int16_t vsym, uint32_t vna_hash); 251 int check_verinfo(Verdef *def, int16_t *versym, uint32_t index, struct verinfo *verinfo, char *strings); 651 Verdef def; in dynlink_test_2004() local 652 def.vd_ndx = 0xf; in dynlink_test_2004() 653 def.vd_hash = 0x123; in dynlink_test_2004() 654 int ret = check_vna_hash(&def, 0xf, 0x123); in dynlink_test_2004() 665 Verdef def; in dynlink_test_2005() local 666 def.vd_ndx = 0x0; in dynlink_test_2005() 667 def.vd_hash = 0x123; in dynlink_test_2005() 668 def in dynlink_test_2005() 680 Verdef def; dynlink_test_2006() local 700 Verdef def; dynlink_test_2007() local 721 Verdef def; dynlink_test_2008() local [all...] |
/third_party/vk-gl-cts/external/amber/src/tools/ |
H A D | amber-syntax.vim | 98 hi def link amberTodo Todo 99 hi def link amberBang Comment 100 hi def link amberComment Comment 101 hi def link amberBlockCmd Keyword 102 hi def link amberString String 103 hi def link amberNumber Number 104 hi def link amberDesc PreProc 105 hi def link amberKeyword String 106 hi def link amberFormat Type 107 hi def lin [all...] |
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_lower_to_hw_instr.cpp | 189 emit_vadd32(Builder& bld, Definition def, Operand src0, Operand src1) in emit_vadd32() argument 191 Instruction* instr = bld.vadd32(def, src0, src1, false, Operand(s2), true); in emit_vadd32() 217 bld.vop3(aco_opcode::v_add_co_u32_e64, dst[0], bld.def(bld.lm, vcc), vtmp_op[0], src1[0]); in emit_int64_dpp_op() 219 bld.vop2_dpp(aco_opcode::v_add_co_u32, dst[0], bld.def(bld.lm, vcc), src0[0], src1[0], in emit_int64_dpp_op() 222 bld.vop2_dpp(aco_opcode::v_addc_co_u32, dst[1], bld.def(bld.lm, vcc), src0[1], src1[1], in emit_int64_dpp_op() 258 bld.vopc(cmp, bld.def(bld.lm, vcc), vtmp_op64, src1_64); in emit_int64_dpp_op() 327 bld.vop3(aco_opcode::v_add_co_u32_e64, dst[0], bld.def(bld.lm, vcc), src0[0], src1[0]); in emit_int64_op() 329 bld.vop2(aco_opcode::v_add_co_u32, dst[0], bld.def(bld.lm, vcc), src0[0], src1[0]); in emit_int64_op() 331 bld.vop2(aco_opcode::v_addc_co_u32, dst[1], bld.def(bld.lm, vcc), src0[1], src1[1], in emit_int64_op() 352 bld.vopc(cmp, bld.def(bl in emit_int64_op() 962 Definition def; global() member 971 split_copy(lower_context* ctx, unsigned offset, Definition* def, Operand* op, const copy_operation& src, bool ignore_uses, unsigned max_size) split_copy() argument 1147 copy_linear_vgpr(Builder& bld, Definition def, Operand op, bool preserve_scc, PhysReg scratch_sgpr) copy_linear_vgpr() argument 1168 swap_linear_vgpr(Builder& bld, Definition def, Operand op, bool preserve_scc, PhysReg scratch_sgpr) swap_linear_vgpr() argument 1218 Definition def; do_copy() local 1293 swap_subdword_gfx11(Builder& bld, Definition def, Operand op) swap_subdword_gfx11() argument 1337 PhysReg def = copy.def.physReg(); do_swap() local 1360 Definition def; do_swap() local 1434 do_pack_2x16(lower_context* ctx, Builder& bld, Definition def, Operand lo, Operand hi) do_pack_2x16() argument 1807 Definition def; handle_operands() local 2026 Definition& def = instr->definitions[0]; lower_to_hw_instr() local 2046 const Definition def = Definition( lower_to_hw_instr() local 2062 const Definition def = Definition(reg, rc_def); lower_to_hw_instr() local [all...] |