Lines Matching refs:ChildSize
186 unsigned ChildSize = 0; in EmitMatcher() local
189 VBRSize = GetVBRSize(ChildSize); in EmitMatcher()
194 ChildSize = EmitMatcherList(SM->getChild(i), Indent+1, in EmitMatcher()
196 } while (GetVBRSize(ChildSize) != VBRSize); in EmitMatcher()
198 assert(ChildSize != 0 && "Should not have a zero-sized child!"); in EmitMatcher()
200 CurrentIdx += EmitVBRValue(ChildSize, OS); in EmitMatcher()
202 OS << "/*->" << CurrentIdx+ChildSize << "*/"; in EmitMatcher()
210 CurrentIdx += ChildSize; in EmitMatcher()
327 unsigned ChildSize = 0; in EmitMatcher() local
330 VBRSize = GetVBRSize(ChildSize); in EmitMatcher()
335 ChildSize = EmitMatcherList(Child, Indent+1, CurrentIdx+VBRSize+IdxSize, in EmitMatcher()
337 } while (GetVBRSize(ChildSize) != VBRSize); in EmitMatcher()
339 assert(ChildSize != 0 && "Should not have a zero-sized child!"); in EmitMatcher()
351 CurrentIdx += EmitVBRValue(ChildSize, OS); in EmitMatcher()
361 OS << "// ->" << CurrentIdx+ChildSize; in EmitMatcher()
364 CurrentIdx += ChildSize; in EmitMatcher()