Home
last modified time | relevance | path

Searched refs:nodeQueue (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/types2/
Dinitorder.go22 pq := nodeQueue(dependencyGraph(check.objMap))
300 type nodeQueue []*graphNode type
302 func (a nodeQueue) Len() int { return len(a) }
304 func (a nodeQueue) Swap(i, j int) {
310 func (a nodeQueue) Less(i, j int) bool {
325 func (a *nodeQueue) Push(x any) {
329 func (a *nodeQueue) Pop() any {
/aosp_15_r20/prebuilts/go/linux-x86/src/go/types/
Dinitorder.go25 pq := nodeQueue(dependencyGraph(check.objMap))
303 type nodeQueue []*graphNode type
305 func (a nodeQueue) Len() int { return len(a) }
307 func (a nodeQueue) Swap(i, j int) {
313 func (a nodeQueue) Less(i, j int) bool {
328 func (a *nodeQueue) Push(x any) {
332 func (a *nodeQueue) Pop() any {
/aosp_15_r20/external/nullaway/jar-infer/jar-infer-lib/src/main/java/com/uber/nullaway/jarinfer/
H A DDefinitelyDerefedParams.java172 ArrayList<ISSABasicBlock> nodeQueue = new ArrayList<ISSABasicBlock>(); in computeDerefParamListUsingPDom() local
173 nodeQueue.add(prunedCFG.exit()); in computeDerefParamListUsingPDom()
175 while (!nodeQueue.isEmpty()) { in computeDerefParamListUsingPDom()
176 ISSABasicBlock node = nodeQueue.get(0); in computeDerefParamListUsingPDom()
177 nodeQueue.remove(node); in computeDerefParamListUsingPDom()
181 nodeQueue.add(succ); in computeDerefParamListUsingPDom()