Searched refs:callIndex0 (Results 1 – 1 of 1) sorted by relevance
/external/syzkaller/prog/ |
D | minimization.go | 14 func Minimize(p0 *Prog, callIndex0 int, crash bool, pred0 func(*Prog, int) bool) (*Prog, int) { 23 if callIndex0 != -1 { 24 if callIndex0 < 0 || callIndex0 >= len(p0.Calls) { 27 name0 = p0.Calls[callIndex0].Meta.Name 31 p0, callIndex0 = removeCalls(p0, callIndex0, crash, pred) 38 callIndex0: callIndex0, 53 if callIndex0 != -1 { 54 if callIndex0 < 0 || callIndex0 >= len(p0.Calls) || name0 != p0.Calls[callIndex0].Meta.Name { 56 len(p0.Calls), callIndex0, name0, p0.Calls[callIndex0].Meta.Name)) 59 return p0, callIndex0 [all …]
|