Home
last modified time | relevance | path

Searched refs:scc (Results 1 – 25 of 57) sorted by relevance

123

/third_party/ffmpeg/libavformat/
Dsccenc.c35 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->prev_m != m || scc->prev_s != s || scc->prev_f != f)… in scc_write_packet()
84 scc->inside = 1; in scc_write_packet()
92 if (!scc->inside) { in scc_write_packet()
94 scc->inside = 1; in scc_write_packet()
96 if (scc->n > 0) in scc_write_packet()
99 scc->n++; in scc_write_packet()
[all …]
Dsccdec.c64 SCCContext *scc = s->priv_data; in scc_read_header() local
137 sub = ff_subtitles_queue_insert(&scc->q, out, i, 0); in scc_read_header()
155 ff_subtitles_queue_finalize(s, &scc->q); in scc_read_header()
159 ff_subtitles_queue_clean(&scc->q); in scc_read_header()
165 SCCContext *scc = s->priv_data; in scc_read_packet() local
166 return ff_subtitles_queue_read_packet(&scc->q, pkt); in scc_read_packet()
172 SCCContext *scc = s->priv_data; in scc_read_seek() local
173 return ff_subtitles_queue_seek(&scc->q, s, stream_index, in scc_read_seek()
179 SCCContext *scc = s->priv_data; in scc_read_close() local
180 ff_subtitles_queue_clean(&scc->q); in scc_read_close()
/third_party/protobuf/src/google/protobuf/compiler/
Dscc.h68 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->descriptors.end(), in DFS()
134 AddChildren(scc); in DFS()
140 void AddChildren(SCC* scc) { in AddChildren() argument
[all …]
/third_party/python/Tools/peg_generator/pegen/
Dsccutils.py42 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}
Dparser_generator.py169 for scc in sccs:
170 if len(scc) > 1:
171 for name in scc:
174 leaders = set(scc)
175 for start in scc:
176 for cycle in sccutils.find_cycles_in_scc(graph, scc, start):
178 leaders -= scc - set(cycle)
187 name = min(scc) # The only element.
D__main__.py146 for scc in gen.first_sccs:
147 print(" ", scc, end="")
148 if len(scc) > 1:
151 {name for name in scc if grammar.rules[name].leader},
154 name = next(iter(scc))
/third_party/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_file.cc472 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() local
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() local
524 scc->children.size(), SccInfoSymbol(scc, options_)); in GenerateInternalForwardDeclarations()
528 scc->children.size(), SccInfoPtrSymbol(scc, options_)); in GenerateInternalForwardDeclarations()
533 scc->children.size(), SccInfoSymbol(scc, options_)); in GenerateInternalForwardDeclarations()
[all …]
Dcpp_helpers.h574 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()
Dcpp_helpers.cc1164 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()
Dcpp_file.h116 void GenerateInitForSCC(const SCC* scc, const CrossFileReferences& refs,
Dcpp_unittest.inc59 #include <google/protobuf/compiler/scc.h>
2109 const SCC* scc = scc_analyzer.GetSCC(a.GetDescriptor());
2111 names.reserve(scc->descriptors.size());
2112 for (int i = 0; i < scc->descriptors.size(); i++) {
2113 names.push_back(scc->descriptors[i]->full_name());
2123 MessageAnalysis result = scc_analyzer.GetSCCAnalysis(scc);
2134 const SCC* scc = scc_analyzer.GetSCC(msg.GetDescriptor());
2135 MessageAnalysis result = scc_analyzer.GetSCCAnalysis(scc);
2144 const SCC* scc = scc_analyzer.GetSCC(msg.GetDescriptor());
2145 MessageAnalysis result = scc_analyzer.GetSCCAnalysis(scc);
[all …]
/third_party/grpc/test/core/util/
Ddebugger_macros.cc36 grpc_core::RefCountedPtr<grpc_core::SubchannelCall> scc = in grpc_transport_stream_from_call() local
38 if (scc == nullptr) { in grpc_transport_stream_from_call()
43 cs = scc->GetCallStack(); in grpc_transport_stream_from_call()
/third_party/protobuf/src/google/protobuf/
Dgenerated_message_util.h235 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()
Dgenerated_message_util.cc763 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 …]
/third_party/ffmpeg/
D.gitattributes2 tests/ref/fate/sub-scc eol=crlf
/third_party/libxml2/result/schemas/
Dscc-no-xmlns_0_0.err1 ./test/schemas/scc-no-xmlns_0.xsd:7: element attribute: Schemas parser error : Element '{http://www…
Dscc-no-xsi_0_0.err1 ./test/schemas/scc-no-xsi_0.xsd:7: element attribute: Schemas parser error : Element '{http://www.w…
/third_party/skia/third_party/externals/tint/src/reader/spirv/
Denum_converter_test.cc96 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/ffmpeg/tests/fate/
Dsubtitles.mak103 FATE_SUBTITLES-$(call DEMDEC, SCC, CCAPTION) += fate-sub-scc
104 fate-sub-scc: CMD = fmtstdout ass -ss 57 -i $(TARGET_SAMPLES)/sub/witch.scc
/third_party/protobuf/src/google/protobuf/compiler/js/
Djs_generator.cc393 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() argument
1790 for (auto desc : scc->descriptors) { in GenerateRequiresForSCC()
3806 const SCC* scc = analyzer.GetSCC(desc); in GenerateAll() local
[all …]
Djs_generator.h197 io::Printer* printer, const SCC* scc,
/third_party/uboot/u-boot-2020.01/doc/device-tree-bindings/misc/
Dintel,baytrail-fsp.txt62 - fsp,scc-mode
129 fsp,scc-mode = <SCC_MODE_PCI>;
/third_party/uboot/u-boot-2020.01/arch/arm/dts/
Dvexpress-v2p-ca15_a7.dts212 scc@7fff0000 {
213 compatible = "arm,vexpress-scc,v2p-ca15_a7", "arm,vexpress-scc";
/third_party/XKeyboardConfig/rules/
Dbase.lists.part6 // ori pk ru scc sy syr tel th tj tam ua uz
/third_party/uboot/u-boot-2020.01/arch/powerpc/include/asm/
Dimmap_8xx.h277 typedef struct scc { /* Serial communication channels */ struct

123