Home
last modified time | relevance | path

Searched refs:nodeA (Results 1 – 4 of 4) sorted by relevance

/third_party/ltp/testcases/kernel/syscalls/migrate_pages/
Dmigrate_pages02.c44 static int *nodes, nodeA, nodeB; variable
252 test_migrate_current_process(nodeA, nodeB, 1); in run()
253 test_migrate_current_process(nodeA, nodeB, 0); in run()
254 test_migrate_other_process(nodeA, nodeB, 1); in run()
255 test_migrate_other_process(nodeA, nodeB, 0); in run()
289 nodeA = nodeB = -1; in setup()
305 if (nodeA == -1) in setup()
306 nodeA = nodes[i]; in setup()
314 if (nodeA == -1 || nodeB == -1) in setup()
317 tst_res(TINFO, "Using nodes: %d %d", nodeA, nodeB); in setup()
/third_party/skia/tests/
DIncrTopoSortTest.cpp324 Node* nodeA = g.addNode('a'); in test_1() local
336 g.addEdge(nodeA, nodeB); in test_1()
338 g.addEdge(nodeQ, nodeA); in test_1()
433 Node* nodeA = g.addNode('a'); in test_diamond() local
434 g.addEdge(nodeA, nodeB); // node A must come before node B in test_diamond()
435 g.addEdge(nodeA, nodeC); // node A must come before node C in test_diamond()
469 Node* nodeA = g.addNode('a'); in test_lopsided_binary_tree() local
475 g.addEdge(nodeA, nodeC); in test_lopsided_binary_tree()
476 g.addEdge(nodeA, nodeB); in test_lopsided_binary_tree()
/third_party/flutter/skia/tests/
DIncrTopoSortTest.cpp324 Node* nodeA = g.addNode('a'); in test_1() local
336 g.addEdge(nodeA, nodeB); in test_1()
338 g.addEdge(nodeQ, nodeA); in test_1()
433 Node* nodeA = g.addNode('a'); in test_diamond() local
434 g.addEdge(nodeA, nodeB); // node A must come before node B in test_diamond()
435 g.addEdge(nodeA, nodeC); // node A must come before node C in test_diamond()
469 Node* nodeA = g.addNode('a'); in test_lopsided_binary_tree() local
475 g.addEdge(nodeA, nodeC); in test_lopsided_binary_tree()
476 g.addEdge(nodeA, nodeB); in test_lopsided_binary_tree()
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Dprefer-includes.ts71 nodeA: ts.Declaration,
74 if (!ts.isFunctionLike(nodeA) || !ts.isFunctionLike(nodeB)) {
78 const paramsA = nodeA.parameters;