/third_party/ffmpeg/libavformat/ |
H A D | sccenc.c | 35 SCCContext *scc = avf->priv_data; in scc_write_header() local 52 scc->prev_h = scc->prev_m = scc->prev_s = scc->prev_f = -1; in scc_write_header() 53 scc->inside = 0; in scc_write_header() 60 SCCContext *scc = avf->priv_data; in scc_write_packet() local 82 if (!scc->inside && (scc->prev_h != h || scc in scc_write_packet() [all...] |
H A D | sccdec.c | 64 SCCContext *scc = s->priv_data; in scc_read_header() local 120 sub = ff_subtitles_queue_insert(&scc->q, out, i, 0); in scc_read_header() 137 sub = ff_subtitles_queue_insert(&scc->q, out, i, 0); in scc_read_header() 145 ff_subtitles_queue_finalize(s, &scc->q); in scc_read_header() 151 .name = "scc", 157 .extensions = "scc",
|
/third_party/protobuf/src/google/protobuf/compiler/ |
H A D | scc.h | 68 if (cache_.count(descriptor)) return cache_[descriptor].scc; in GetSCC() 69 return DFS(descriptor).scc; in GetSCC() 74 const SCC* scc; // if null it means its still on the stack member 109 if (child_data.scc == nullptr) { in DFS() 117 SCC* scc = CreateSCC(); in DFS() local 120 scc->descriptors.push_back(scc_desc); in DFS() 123 cache_[scc_desc].scc = scc; in DFS() 130 std::sort(scc->descriptors.begin(), scc in DFS() 140 AddChildren(SCC* scc) AddChildren() argument [all...] |
/third_party/mesa3d/src/amd/compiler/tests/ |
H A D | test_optimizer_postRA.cpp | 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())); 64 //! s2: %c:s[0-1], s1: %d:scc = s_and_b64 %b:vcc, %x:exec 66 //! s2: %e:s[2-3] = p_cbranch_z %d:scc 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)); 72 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s2, reg_s2), bld.scc(sand.def(1).getTemp())); 82 //! s2: %c:s[0-1], s1: %d:scc = s_and_b64 %b:s[4-5], %x:exec 83 //! s2: %e:s[2-3] = p_cbranch_z %d:scc 87 auto sand = bld.sop2(Builder::s_and, bld.def(bld.lm, reg_s0), bld.def(s1, scc), Operand(vcmp, reg_s4), Operand(exec, bld.lm)); 88 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s2, reg_s2), bld.scc(san [all...] |
H A D | test_optimizer.cpp | 324 //~gfx8! s1: %lshl0, s1: %_:scc = s_lshl_b32 %a, 3 325 //~gfx8! s1: %res0, s1: %_:scc = s_add_u32 %lshl0, 4 326 //~gfx(9|10)! s1: %res0, s1: %_:scc = s_lshl3_add_u32 %a, 4 328 shift = bld.sop2(aco_opcode::s_lshl_b32, bld.def(s1), bld.def(s1, scc), Operand(inputs[0]), 330 writeout(0, bld.sop2(aco_opcode::s_add_u32, bld.def(s1), bld.def(s1, scc), shift, 333 //~gfx8! s1: %lshl1, s1: %_:scc = s_lshl_b32 %a, 3 334 //~gfx8! s1: %add1, s1: %_:scc = s_add_u32 %lshl1, 4 337 //~gfx(9|10)! s1: %lshl1, s1: %_:scc = s_lshl3_add_u32 %a, 4 341 shift = bld.sop2(aco_opcode::s_lshl_b32, bld.def(s1), bld.def(s1, scc), Operand(inputs[0]), 344 bld.sop2(aco_opcode::s_add_u32, bld.def(s1), bld.def(s1, scc), shif [all...] |
H A D | test_regalloc.cpp | 219 //! s1: %scc_tmp:scc, s1: %1:s[0] = p_unit_test 221 Temp scc_tmp = bld.pseudo(aco_opcode::p_unit_test, bld.def(s1, scc), Definition(s0_tmp.id(), PhysReg{0}, s1)); 230 //! p_unit_test %tmp2:v[2], %scc_tmp:scc, %1:s[0] 235 //>> lv1: %5:v[2] = p_parallelcopy %3:v[1] scc:1 scratch:s1 238 fprintf(output, " scc:%u scratch:s%u\n", parallelcopy.tmp_in_scc, parallelcopy.scratch_sgpr.reg()); 321 //! s2: %_:s[2-3] = p_cbranch_z %0:scc 322 bld.branch(aco_opcode::p_cbranch_z, bld.def(s2), Operand(scc, s1));
|
/third_party/python/Tools/peg_generator/pegen/ |
H A D | sccutils.py | 42 scc = set(stack[index[v] :]) 44 identified.update(scc) 45 yield scc 101 graph: Dict[str, AbstractSet[str]], scc: AbstractSet[str], start: str 112 assert start in scc, (start, scc) 113 assert scc <= graph.keys(), scc - graph.keys() 116 graph = {src: {dst for dst in dsts if dst in scc} for src, dsts in graph.items() if src in scc} [all...] |
H A D | __main__.py | 152 for scc in gen.first_sccs: 153 print(" ", scc, end="") 154 if len(scc) > 1: 157 {name for name in scc if grammar.rules[name].leader}, 160 name = next(iter(scc))
|
H A D | parser_generator.py | 342 for scc in sccs: 343 if len(scc) > 1: 344 for name in scc: 347 leaders = set(scc) 348 for start in scc: 349 for cycle in sccutils.find_cycles_in_scc(graph, scc, start): 351 leaders -= scc - set(cycle) 354 f"SCC {scc} has no leadership candidate (no element is included in all cycles)" 360 name = min(scc) # The only element.
|
/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
H A D | cpp_file.cc | 50 #include <google/protobuf/compiler/scc.h> 472 const SCC* scc = GetSCC(msg); in GetCrossFileReferencesForField() local 476 refs->weak_sccs.insert(scc); in GetCrossFileReferencesForField() 479 refs->strong_sccs.insert(scc); in GetCrossFileReferencesForField() 508 for (auto scc : Sorted(refs.strong_sccs)) { in GenerateInternalForwardDeclarations() 510 FileDllExport(scc->GetFile(), options_), scc->children.size(), in GenerateInternalForwardDeclarations() 511 SccInfoSymbol(scc, options_)); in GenerateInternalForwardDeclarations() 514 for (auto scc : Sorted(refs.weak_sccs)) { in GenerateInternalForwardDeclarations() 524 scc in GenerateInternalForwardDeclarations() 926 GenerateInitForSCC(const SCC* scc, const CrossFileReferences& refs, io::Printer* printer) GenerateInitForSCC() argument [all...] |
H A D | cpp_helpers.h | 44 #include <google/protobuf/compiler/scc.h> 574 MessageAnalysis GetSCCAnalysis(const SCC* scc); 601 inline std::string SccInfoSymbol(const SCC* scc, const Options& options) { in SccInfoSymbol() argument 602 return UniqueName("scc_info_" + ClassName(scc->GetRepresentative()), in SccInfoSymbol() 603 scc->GetRepresentative(), options); in SccInfoSymbol() 606 inline std::string SccInfoPtrSymbol(const SCC* scc, const Options& options) { in SccInfoPtrSymbol() argument 607 return UniqueName("scc_info_ptr_" + ClassName(scc->GetRepresentative()), in SccInfoPtrSymbol() 608 scc->GetRepresentative(), options); in SccInfoPtrSymbol()
|
H A D | cpp_file.h | 47 #include <google/protobuf/compiler/scc.h> 116 void GenerateInitForSCC(const SCC* scc, const CrossFileReferences& refs,
|
H A D | cpp_helpers.cc | 49 #include <google/protobuf/compiler/scc.h> 1164 MessageAnalysis MessageSCCAnalyzer::GetSCCAnalysis(const SCC* scc) { in GetSCCAnalysis() argument 1165 if (analysis_cache_.count(scc)) return analysis_cache_[scc]; in GetSCCAnalysis() 1167 for (int i = 0; i < scc->descriptors.size(); i++) { in GetSCCAnalysis() 1168 const Descriptor* descriptor = scc->descriptors[i]; in GetSCCAnalysis() 1195 if (child != scc) { in GetSCCAnalysis() 1220 return analysis_cache_[scc] = result; in GetSCCAnalysis()
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_lower_phis.cpp | 157 bld.sop2(Builder::s_and, dst, bld.def(s1, scc), cur, Operand(exec, bld.lm)); in build_merge_code() 160 bld.sop2(Builder::s_orn2, dst, bld.def(s1, scc), cur, Operand(exec, bld.lm)); in build_merge_code() 175 bld.sop2(Builder::s_and, bld.def(bld.lm), bld.def(s1, scc), cur, Operand(exec, bld.lm)); in build_merge_code() 177 bld.sop2(Builder::s_or, dst, bld.def(s1, scc), prev, cur); in build_merge_code() 183 bld.sop2(Builder::s_or, dst, bld.def(s1, scc), prev, Operand(exec, bld.lm)); in build_merge_code() 185 bld.sop2(Builder::s_andn2, dst, bld.def(s1, scc), prev, Operand(exec, bld.lm)); in build_merge_code() 189 bld.sop2(Builder::s_andn2, bld.def(bld.lm), bld.def(s1, scc), prev, Operand(exec, bld.lm)); in build_merge_code() 190 cur = bld.sop2(Builder::s_and, bld.def(bld.lm), bld.def(s1, scc), cur, Operand(exec, bld.lm)); in build_merge_code() 191 bld.sop2(Builder::s_or, dst, bld.def(s1, scc), prev, cur); in build_merge_code()
|
H A D | aco_insert_exec_mask.cpp | 198 exec_mask = bld.sop1(Builder::s_wqm, Definition(exec, bld.lm), bld.def(s1, scc), in transition_to_WQM() 233 wqm = bld.sop1(Builder::s_and_saveexec, bld.def(bld.lm), bld.def(s1, scc), in transition_to_Exact() 236 bld.sop2(Builder::s_and, Definition(exec, bld.lm), bld.def(s1, scc), in transition_to_Exact() 278 bld.sop1(Builder::s_wqm, Definition(exec, bld.lm), bld.def(s1, scc), in add_coupling_code() 582 bld.sop1(Builder::s_and_saveexec, bld.def(bld.lm), bld.scc(Definition(exit_cond)), in process_instructions() 587 exit_cond = bld.sop2(Builder::s_andn2, Definition(exec, bld.lm), bld.def(s1, scc), in process_instructions() 596 Instruction* andn2 = bld.sop2(Builder::s_andn2, bld.def(bld.lm), bld.def(s1, scc), in process_instructions() 603 instr->operands[0] = bld.scc(exit_cond); in process_instructions() 623 instr->definitions[1] = bld.def(s1, scc); in process_instructions() 637 bld.sop1(Builder::s_and_saveexec, bld.def(bld.lm), bld.scc(Definitio in process_instructions() [all...] |
H A D | aco_lower_to_hw_instr.cpp | 488 bld.sop1(Builder::s_or_saveexec, Definition(stmp, bld.lm), Definition(scc, s1), in emit_reduction() 864 assert(clobber_scc.isFixed() && clobber_scc.physReg() == scc); in emit_gfx10_wave64_bpermute() 1150 bld.sop1(aco_opcode::s_mov_b32, Definition(scratch_sgpr, s1), Operand(scc, s1)); in copy_linear_vgpr() 1158 bld.sop1(Builder::s_not, Definition(exec, bld.lm), Definition(scc, s1), in copy_linear_vgpr() 1163 bld.sopc(aco_opcode::s_cmp_lg_i32, Definition(scc, s1), Operand(scratch_sgpr, s1), in copy_linear_vgpr() 1171 bld.sop1(aco_opcode::s_mov_b32, Definition(scratch_sgpr, s1), Operand(scc, s1)); in swap_linear_vgpr() 1185 bld.sop1(Builder::s_not, Definition(exec, bld.lm), Definition(scc, s1), in swap_linear_vgpr() 1190 bld.sopc(aco_opcode::s_cmp_lg_i32, Definition(scc, s1), Operand(scratch_sgpr, s1), in swap_linear_vgpr() 1222 if (def.physReg() == scc) { in do_copy() 1377 } else if (op.physReg() == scc || de in do_swap() [all...] |
H A D | aco_optimizer_postRA.cpp | 209 * sX, scc = s_and_bXX vcc, exec ; op0_instr in try_apply_branch_vcc() 211 * s_cbranch_XX scc ; instr in try_apply_branch_vcc() 224 instr->operands[0].physReg() != scc) in try_apply_branch_vcc() 295 Idx sccwr_idx = last_writer_idx(ctx, scc, s1); in try_optimize_scc_nocompare() 301 wr_instr->definitions[1].physReg() != scc) in try_optimize_scc_nocompare() 341 instr->operands[0] = Operand(wr_instr->definitions[1].getTemp(), scc); in try_optimize_scc_nocompare() 352 instr->operands[0].physReg() == scc) || in try_optimize_scc_nocompare() 371 if (wr_instr->operands[0].physReg() != scc) in try_optimize_scc_nocompare()
|
H A D | aco_instruction_selection.cpp | 209 Temp index_is_lo_n1 = bld.sop1(aco_opcode::s_not_b32, bld.def(s1), bld.def(s1, scc), in emit_bpermute() 224 return bld.pseudo(aco_opcode::p_bpermute, bld.def(v1), bld.def(s2), bld.def(s1, scc), in emit_bpermute() 485 bld.sop2(aco_opcode::s_and_b32, bld.def(s1), bld.def(s1, scc), offset, Operand::c32(3u)); in byte_align_scalar() 487 shift = bld.sop2(aco_opcode::s_lshl_b32, bld.def(s1), bld.scc(Definition(select)), tmp, in byte_align_scalar() 492 bld.sop2(aco_opcode::s_lshr_b32, Definition(dst), bld.def(s1, scc), vec, shift); in byte_align_scalar() 495 bld.sop2(aco_opcode::s_lshr_b64, Definition(tmp), bld.def(s1, scc), vec, shift); in byte_align_scalar() 513 bld.sop2(aco_opcode::s_cselect_b32, bld.def(s1), hi, Operand::zero(), bld.scc(select)); in byte_align_scalar() 514 lo = bld.sop2(aco_opcode::s_lshr_b64, bld.def(s2), bld.def(s1, scc), lo, shift); in byte_align_scalar() 517 hi = bld.sop2(aco_opcode::s_lshl_b32, bld.def(s1), bld.def(s1, scc), hi, shift); in byte_align_scalar() 518 mid = bld.sop2(aco_opcode::s_or_b32, bld.def(s1), bld.def(s1, scc), h in byte_align_scalar() [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | generated_message_util.cc | 763 void InitSCC_DFS(SCCInfoBase* scc) { in InitSCC_DFS() argument 764 if (scc->visit_status.load(std::memory_order_relaxed) != in InitSCC_DFS() 767 scc->visit_status.store(SCCInfoBase::kRunning, std::memory_order_relaxed); in InitSCC_DFS() 770 auto deps = reinterpret_cast<void**>(scc + 1); in InitSCC_DFS() 772 for (int i = 0; i < scc->num_deps; ++i) { in InitSCC_DFS() 776 reinterpret_cast<SCCInfoBase** const*>(deps + scc->num_deps); in InitSCC_DFS() 777 for (int i = 0; i < scc->num_implicit_weak_deps; ++i) { in InitSCC_DFS() 782 scc->init_func(); in InitSCC_DFS() 786 scc->visit_status.store(SCCInfoBase::kInitialized, std::memory_order_release); in InitSCC_DFS() 791 void InitSCCImpl(SCCInfoBase* scc) { in InitSCCImpl() argument [all...] |
H A D | generated_message_util.h | 235 PROTOBUF_EXPORT void InitSCCImpl(SCCInfoBase* scc); 237 inline void InitSCC(SCCInfoBase* scc) { in InitSCC() argument 238 auto status = scc->visit_status.load(std::memory_order_acquire); in InitSCC() 240 InitSCCImpl(scc); in InitSCC()
|
/third_party/ffmpeg/tests/fate/ |
H A D | subtitles.mak | 110 FATE_SUBTITLES-$(call DEMDEC, SCC, CCAPTION) += fate-sub-scc 111 fate-sub-scc: CMD = fmtstdout ass -ss 57 -i $(TARGET_SAMPLES)/sub/witch.scc 113 FATE_SUBTITLES-$(call DEMMUX, SCC, SCC) += fate-sub-scc-remux 114 fate-sub-scc-remux: CMD = fmtstdout scc -i $(TARGET_SAMPLES)/sub/witch.scc -ss 4:00 -map 0 -c copy
|
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
H A D | enum_converter_test.cc | 96 inline std::ostream& operator<<(std::ostream& out, StorageClassCase scc) { in operator <<() argument 97 out << "StorageClassCase{ SpvStorageClass:" << int(scc.sc) in operator <<() 98 << " expect_success?:" << int(scc.expect_success) in operator <<() 99 << " expected:" << int(scc.expected) << "}"; in operator <<()
|
/third_party/node/deps/cares/src/lib/ |
H A D | ares_sysconfig_files.c | 429 static char *try_config(char *s, const char *opt, char scc) in try_config() argument 445 if (scc) { in try_config() 446 while (*p && (*p != '#') && (*p != scc)) { in try_config()
|
/third_party/protobuf/src/google/protobuf/compiler/js/ |
H A D | js_generator.cc | 46 #include <google/protobuf/compiler/scc.h> 393 std::string GetMessagesFileName(const GeneratorOptions& options, const SCC* scc, in GetMessagesFileName() argument 399 ? ToLower(GetNamespace(options, scc->GetRepresentative()->file()) + in GetMessagesFileName() 404 for (auto one_desc : scc->descriptors) { in GetMessagesFileName() 417 if ((*long_name_dict).find(scc->GetRepresentative()) == in GetMessagesFileName() 420 GetSnakeFilename(scc->GetRepresentative()->file()->name())); in GetMessagesFileName() 421 (*long_name_dict)[scc->GetRepresentative()] = in GetMessagesFileName() 425 filename_base = (*long_name_dict)[scc->GetRepresentative()]; in GetMessagesFileName() 1783 io::Printer* printer, const SCC* scc, in GenerateRequiresForSCC() 1790 for (auto desc : scc in GenerateRequiresForSCC() 1782 GenerateRequiresForSCC(const GeneratorOptions& options, io::Printer* printer, const SCC* scc, std::set<std::string>* provided) const GenerateRequiresForSCC() argument 3806 const SCC* scc = analyzer.GetSCC(desc); GenerateAll() local [all...] |
H A D | js_generator.h | 41 #include <google/protobuf/compiler/scc.h> 197 io::Printer* printer, const SCC* scc,
|