/kernel/linux/linux-6.6/sound/soc/codecs/ |
H A D | peb2466.c | 853 { .reg = PEB2466_XR6, .def = 0x00 }, in peb2466_reset_audio() 855 { .reg = PEB2466_CR5(0), .def = 0x00 }, in peb2466_reset_audio() 856 { .reg = PEB2466_CR4(0), .def = 0x00 }, in peb2466_reset_audio() 857 { .reg = PEB2466_CR3(0), .def = 0x00 }, in peb2466_reset_audio() 858 { .reg = PEB2466_CR2(0), .def = 0x00 }, in peb2466_reset_audio() 859 { .reg = PEB2466_CR1(0), .def = 0x00 }, in peb2466_reset_audio() 860 { .reg = PEB2466_CR0(0), .def = PEB2466_CR0_IMR1 }, in peb2466_reset_audio() 862 { .reg = PEB2466_CR5(1), .def = 0x00 }, in peb2466_reset_audio() 863 { .reg = PEB2466_CR4(1), .def = 0x00 }, in peb2466_reset_audio() 864 { .reg = PEB2466_CR3(1), .def in peb2466_reset_audio() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | LiveIntervals.cpp | 314 /// block somewhere. Register values can appear without a corresponding def when 360 SlotIndex Def = VNI->def; in createSegmentsForValues() 402 if (!VNI->isPHIDef() || VNI->def != BlockStart || in extendSegmentsToUses() 486 Idx = DefVNI->def; in shrinkToUses() 491 // Create new live ranges with only minimal live segments per def. in shrinkToUses() 513 SlotIndex Def = VNI->def; in computeDeadValues() 536 // This is a dead def. Make sure the instruction knows. in computeDeadValues() 590 Idx = DefVNI->def; in shrinkToUses() 595 // Create a new live ranges with only minimal live segments per def. in shrinkToUses() 607 const LiveRange::Segment *Segment = SR.getSegmentContaining(VNI->def); in shrinkToUses() [all...] |
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_emit_nvc0.cpp | 197 void CodeEmitterNVC0::defId(const ValueDef& def, const int pos) in defId() argument 199 code[pos / 32] |= (def.get() && def.getFile() != FILE_FLAGS ? DDATA(def).id : 63) << (pos % 32); in defId() 205 defId(insn->def(d), pos); in defId() 385 assert(d < 0 || (i->defExists(d) && i->def(d).getFile() == FILE_PREDICATE)); in setPDSTL() 387 uint32_t pred = d >= 0 ? DDATA(i->def(d)).id : 7; in setPDSTL() 401 defId(i->def(0), 14); in emitForm_A() 446 defId(i->def(0), 14); in emitForm_B() 476 defId(i->def( in emitForm_S() [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_if.c | 1297 nir_ssa_def *def[NIR_MAX_VEC_COMPONENTS] = {0}; in propagate_condition_eval() 1300 def[i] = nir_imm_bool(b, bool_value); in propagate_condition_eval() 1302 def[i] = alu->src[i].src.ssa; in propagate_condition_eval() 1306 nir_ssa_def *nalu = clone_alu_and_replace_src_defs(b, alu, def); in propagate_condition_eval() 1405 nir_foreach_use_safe(use, scalar.def) { in rewrite_comp_uses_within_if() 1423 new_ssa = nir_channel(b, new_scalar.def, new_scalar.comp); in rewrite_comp_uses_within_if() 1424 if (scalar.def->num_components > 1) { in rewrite_comp_uses_within_if() 1425 nir_ssa_def *vec = nir_ssa_undef(b, scalar.def->num_components, scalar.def->bit_size); in rewrite_comp_uses_within_if() 1474 if (src_uni.def in opt_if_rewrite_uniform_uses() [all...] |
H A D | nir_opt_phi_precision.c | 57 * the phi def. In this case, since load_const is frequently one 272 assert(lc->def.bit_size == 32); in can_convert_load_const() 274 for (unsigned i = 0; i < lc->def.num_components; i++) { in can_convert_load_const() 402 new_src = nir_f2f16(b, &lc->def); in try_move_widening_src() 404 new_src = nir_i2i16(b, &lc->def); in try_move_widening_src() 429 nir_ssa_def *def = nir_build_alu(b, op, &new_phi->dest.ssa, NULL, NULL, NULL); in try_move_widening_src() local 431 nir_ssa_def_rewrite_uses(&phi->dest.ssa, def); in try_move_widening_src()
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | req.c | 59 static int add_attribute_object(X509_REQ *req, char *text, const char *def, 62 static int add_DN_object(X509_NAME *n, char *text, const char *def, 66 static int build_data(char *text, const char *def, char *value, 1137 const char *def; in prompt_info() local 1192 if ((def = NCONF_get_string(req_conf, dn_sect, buf)) == NULL) { in prompt_info() 1194 def = ""; in prompt_info() 1218 if (!add_DN_object(subj, v->value, def, value, nid, in prompt_info() 1250 if ((def = NCONF_get_string(req_conf, attr_sect, buf)) in prompt_info() 1253 def = ""; in prompt_info() 1279 v->value, def, valu in prompt_info() 1360 add_DN_object(X509_NAME *n, char *text, const char *def, char *value, int nid, int n_min, int n_max, unsigned long chtype, int mval) add_DN_object() argument 1380 add_attribute_object(X509_REQ *req, char *text, const char *def, char *value, int nid, int n_min, int n_max, unsigned long chtype) add_attribute_object() argument 1402 build_data(char *text, const char *def, char *value, int n_min, int n_max, char *buf, const int buf_size, const char *desc1, const char *desc2) build_data() argument [all...] |
/third_party/openssl/apps/ |
H A D | req.c | 59 static int add_attribute_object(X509_REQ *req, char *text, const char *def, 62 static int add_DN_object(X509_NAME *n, char *text, const char *def, 66 static int build_data(char *text, const char *def, char *value, 1135 const char *def; in prompt_info() local 1190 if ((def = NCONF_get_string(req_conf, dn_sect, buf)) == NULL) { in prompt_info() 1192 def = ""; in prompt_info() 1216 if (!add_DN_object(subj, v->value, def, value, nid, in prompt_info() 1248 if ((def = NCONF_get_string(req_conf, attr_sect, buf)) in prompt_info() 1251 def = ""; in prompt_info() 1277 v->value, def, valu in prompt_info() 1358 add_DN_object(X509_NAME *n, char *text, const char *def, char *value, int nid, int n_min, int n_max, unsigned long chtype, int mval) add_DN_object() argument 1378 add_attribute_object(X509_REQ *req, char *text, const char *def, char *value, int nid, int n_min, int n_max, unsigned long chtype) add_attribute_object() argument 1400 build_data(char *text, const char *def, char *value, int n_min, int n_max, char *buf, const int buf_size, const char *desc1, const char *desc2) build_data() argument [all...] |
/third_party/PyYAML/yaml/ |
H A D | _yaml.pyx | 4 def get_version_string(): 9 def get_version(): 69 def __init__(self, object name, size_t index, size_t line, size_t column, 78 def get_snippet(self): 81 def __str__(self): 91 # def __init__(self, context=None, context_mark=None, 99 # def __str__(self): 119 # def __init__(self, name, position, character, encoding, reason): 126 # def __str__(self): 150 # def __init_ [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | IntlTestDecimalFormatAPI.java | 111 DecimalFormat def = new DecimalFormat(); in TestAPI() 130 Format clone = (Format) def.clone(); in TestAPI() 131 if( ! def.equals(clone)) { in TestAPI() 154 res1 = def.format(d, res1, pos1); in TestAPI() 185 def.setDecimalFormatSymbols(syms); in TestAPI() 186 if( ! pat.getDecimalFormatSymbols().equals(def.getDecimalFormatSymbols())) { in TestAPI()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | IntlTestDecimalFormatAPI.java | 114 DecimalFormat def = new DecimalFormat(); in TestAPI() 133 Format clone = (Format) def.clone(); in TestAPI() 134 if( ! def.equals(clone)) { in TestAPI() 157 res1 = def.format(d, res1, pos1); in TestAPI() 188 def.setDecimalFormatSymbols(syms); in TestAPI() 189 if( ! pat.getDecimalFormatSymbols().equals(def.getDecimalFormatSymbols())) { in TestAPI()
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_nir_lower_64b.c | 109 nir_ssa_def *def = &intr->dest.ssa; in lower_64b_intrinsics() local 110 def->bit_size = 32; in lower_64b_intrinsics() 124 return nir_pack_64_2x32_split(b, def, upper); in lower_64b_intrinsics() 161 nir_ssa_def *c = nir_channel(b, def, i); in lower_64b_intrinsics() 187 unsigned num_comp = undef->def.num_components; in lower_64b_undef() 207 nir_instr_as_ssa_undef(instr)->def.bit_size == 64; in lower_64b_undef_filter()
|
/third_party/mesa3d/src/broadcom/compiler/ |
H A D | vir_live_variables.c | 64 if (!BITSET_TEST(block->def, var)) { in vir_setup_use() 85 /* The def[] bitset marks when an initialization in a 104 /* Mark the block as having a (partial) def of the var. */ in vir_setup_def() 107 /* If we've already tracked this as a def that screens off previous in vir_setup_def() 110 if (BITSET_TEST(block->use, var) || BITSET_TEST(block->def, var)) in vir_setup_def() 118 BITSET_SET(block->def, var); in vir_setup_def() 141 /* Sets up the def/use arrays for when variables are used-before-defined or 229 ~block->def[i])); in vir_live_variables_dataflow() 308 ralloc_free(block->def); in vir_calculate_live_intervals() 324 block->def in vir_calculate_live_intervals() [all...] |
/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_qir_live_variables.c | 61 if (!BITSET_TEST(block->def, var)) in qir_setup_use() 87 /* The def[] bitset marks when an initialization in a in qir_setup_def() 98 /* If we've already tracked this as a def, or already used it within in qir_setup_def() 101 if (BITSET_TEST(block->use, var) || BITSET_TEST(block->def, var)) in qir_setup_def() 109 * the if. Otherwise, if there was no intervening def, its live in qir_setup_def() 115 BITSET_SET(block->def, var); in qir_setup_def() 120 * def. We need to make sure that we understand sequences in qir_setup_def() 158 BITSET_SET(block->def, var); in qir_setup_def() 174 /* Sets up the def/use arrays for when variables are used-before-defined or 248 ~block->def[ in qir_live_variables_dataflow() [all...] |
/kernel/linux/linux-6.6/drivers/media/test-drivers/vivid/ |
H A D | vivid-ctrls.c | 162 .def = 1, 190 .def = 0x18, 203 .def = 50, 215 .def = 0x18, 227 .def = 0x18, 239 .def = 0x80, 251 .def = 2, 263 .def = 4, 287 .def = 3, 307 .def [all...] |
/third_party/selinux/libsepol/cil/src/ |
H A D | cil_write_ast.c | 689 struct cil_default *def = node->data; in cil_write_ast_node() local 691 if (def->class_datums) in cil_write_ast_node() 692 write_datum_list(out, def->class_datums); in cil_write_ast_node() 694 write_string_list(out, def->class_strs); in cil_write_ast_node() 695 if (def->object == CIL_DEFAULT_SOURCE) in cil_write_ast_node() 697 else if (def->object == CIL_DEFAULT_TARGET) in cil_write_ast_node() 705 struct cil_default *def = node->data; in cil_write_ast_node() local 707 if (def->class_datums) in cil_write_ast_node() 708 write_datum_list(out, def->class_datums); in cil_write_ast_node() 710 write_string_list(out, def in cil_write_ast_node() 721 struct cil_default *def = node->data; cil_write_ast_node() local 737 struct cil_defaultrange *def = node->data; cil_write_ast_node() local [all...] |
/foundation/multimedia/media_foundation/interface/inner_api/plugin/ |
H A D | plugin_package.h | 31 Status AddPlugin(const PluginDefBase& def);
32 Status AddPackage(const PackageDef& def)
in AddPackage() argument
|
/foundation/filemanagement/app_file_service/tests/mock/parameter_mock/include/ |
H A D | parameter_mock.h | 28 virtual int GetParameter(const char *key, const char *def, char *value, uint32_t len) = 0; 35 MOCK_METHOD4(GetParameter, int(const char *key, const char *def, char *value, uint32_t len));
|
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | s390-cpumsf-kernel.h | 16 unsigned int def:16; /* 0-15 Data Entry Format */ member 34 unsigned int def:16; /* 0-15 Data Entry Format */ member
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | s390-cpumsf-kernel.h | 16 unsigned int def:16; /* 0-15 Data Entry Format */ member 34 unsigned int def:16; /* 0-15 Data Entry Format */ member
|
/third_party/mesa3d/src/imagination/rogue/nir/ |
H A D | rogue_nir_constreg.c | 58 nir_ssa_def *mov = nir_mov(&b, &load_const->def); in rogue_nir_constreg() 60 nir_foreach_use_safe (use_src, &load_const->def) { in rogue_nir_constreg()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | scannerUnicodeEscapeInKeyword2.js | 38 const a = {def\u0061ult: 12}; // OK, `default` not in keyword position 62 const a = { def\u0061ult: 12 }; // OK, `default` not in keyword position
|
H A D | lateBoundConstraintTypeChecksCorrectly.js | 18 const def: T[typeof fooProp] = x[fooProp]; 31 var def = x[fooProp];
|
/kernel/linux/linux-6.6/drivers/media/platform/mediatek/vcodec/decoder/ |
H A D | mtk_vcodec_dec_stateless.c | 51 .def = V4L2_MPEG_VIDEO_H264_PROFILE_MAIN, 63 .def = V4L2_STATELESS_H264_DECODE_MODE_FRAME_BASED, 72 .def = V4L2_STATELESS_H264_START_CODE_ANNEX_B, 87 .def = V4L2_MPEG_VIDEO_VP8_PROFILE_0, 102 .def = V4L2_MPEG_VIDEO_VP9_PROFILE_0, 134 .def = V4L2_MPEG_VIDEO_HEVC_PROFILE_MAIN, 145 .def = V4L2_STATELESS_HEVC_DECODE_MODE_FRAME_BASED, 154 .def = V4L2_STATELESS_HEVC_START_CODE_ANNEX_B, 185 .def = V4L2_MPEG_VIDEO_AV1_PROFILE_MAIN, 194 .def [all...] |
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_optimizer_postRA.cpp | 122 for (const Definition& def : instr->definitions) { in save_reg_writes() 123 assert(def.regClass().type() != RegType::sgpr || def.physReg().reg() <= 255); in save_reg_writes() 124 assert(def.regClass().type() != RegType::vgpr || def.physReg().reg() >= 256); in save_reg_writes() 126 unsigned dw_size = DIV_ROUND_UP(def.bytes(), 4u); in save_reg_writes() 127 unsigned r = def.physReg().reg(); in save_reg_writes() 130 if (def.regClass().is_subdword()) in save_reg_writes() 134 assert(def.size() == dw_size || def in save_reg_writes() [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/ibm/emac/ |
H A D | phy.c | 512 struct mii_phy_def *def; in emac_mii_phy_probe() local 529 for (i = 0; (def = mii_phy_table[i]) != NULL; i++) in emac_mii_phy_probe() 530 if ((id & def->phy_id_mask) == def->phy_id) in emac_mii_phy_probe() 533 if (!def) in emac_mii_phy_probe() 536 phy->def = def; in emac_mii_phy_probe() 539 phy->features = def->features; in emac_mii_phy_probe()
|