Home
last modified time | relevance | path

Searched refs:ChildSize (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp270 const unsigned ChildSize = SizeMatcherList(SM->getChild(i), OS); in SizeMatcher() local
271 assert(ChildSize != 0 && "Matcher cannot have child of size 0"); in SizeMatcher()
272 SM->getChild(i)->setSize(ChildSize); in SizeMatcher()
273 Size += GetVBRSize(ChildSize) + ChildSize; // Count VBR and child size. in SizeMatcher()
298 const unsigned ChildSize = SizeMatcherList(Child, OS); in SizeMatcher() local
299 assert(ChildSize != 0 && "Matcher cannot have child of size 0"); in SizeMatcher()
300 Child->setSize(ChildSize); in SizeMatcher()
301 Size += GetVBRSize(ChildSize) + ChildSize; // Count VBR and child size. in SizeMatcher()
396 unsigned ChildSize = SM->getChild(i)->getSize(); in EmitMatcher() local
397 unsigned VBRSize = EmitVBRValue(ChildSize, OS); in EmitMatcher()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/
H A DTokenAnnotator.cpp2521 unsigned ChildSize = 0; in calculateFormattingInformation() local
2524 ChildSize = LastOfChild.isTrailingComment() ? Style.ColumnLimit in calculateFormattingInformation()
2535 ChildSize + Current->SpacesRequiredBefore; in calculateFormattingInformation()