| /third_party/node/deps/v8/src/compiler/backend/ |
| H A D | spill-placer.cc | 55 for (const LiveRange* child = range; child != nullptr; in Add() 56 child = child->next()) { in Add() 57 if (child->spilled()) { in Add() 59 for (UseInterval* interval = child->first_interval(); interval != nullptr; in Add() 89 for (const UsePosition* pos = child->first_pos(); pos != nullptr; in Add()
|
| /third_party/skia/modules/skottie/src/effects/ |
| H A D | DisplacementMapEffect.cpp | 44 uniform shader child; 55 return child.eval(xy + d.xy*d.zw); 77 static sk_sp<DisplacementNode> Make(sk_sp<RenderNode> child, in Make() argument 81 if (!child || !displ) { in Make() 85 return sk_sp<DisplacementNode>(new DisplacementNode(std::move(child), child_size, in Make() 121 DisplacementNode(sk_sp<RenderNode> child, const SkSize& child_size, in DisplacementNode() argument 123 : INHERITED({std::move(child)}) in DisplacementNode() 210 builder.child("child") = std::move(child_shader); 211 builder.child("disp [all...] |
| /third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
| H A D | reg.py | 104 for child in parent.findall('*'): 105 if child.tag == 'remove': 107 parent.remove(child) 109 stack.append(child) 111 supportedList = child.get('supported') 116 child.set('supported', toApiName) 118 if child.get('api'): 123 if child.tag in ['type']: 124 if child.get('name') is not None: 125 definitionName = child [all...] |
| /third_party/vulkan-headers/registry/ |
| H A D | reg.py | 104 for child in parent.findall('*'): 105 if child.tag == 'remove': 107 parent.remove(child) 109 stack.append(child) 111 supportedList = child.get('supported') 116 child.set('supported', toApiName) 118 if child.get('api'): 123 if child.tag in ['type']: 124 if child.get('name') is not None: 125 definitionName = child [all...] |
| /third_party/ltp/testcases/kernel/mem/vmtests/ |
| H A D | stack_space.c | 139 int child; in runtest() local 144 if ((child = fork()) == 0) { /* child */ in runtest() 148 if (child < 0) { in runtest() 163 while ((child = wait(&status)) > 0) { in runtest() 165 tst_resm(TINFO, "\t%s[%d] exited status = 0x%x\n", prog, child, in runtest() 424 tst_resm(TINFO, "term1 - child - exiting\n"); in term()
|
| H A D | data_space.c | 151 int child; in runtest() local 157 switch (child = fork()) { in runtest() 164 allchild[i] = child; in runtest() 174 while ((child = wait(&status)) > 0) { in runtest() 176 tst_resm(TINFO, "\t%s[%d] exited status = 0x%x\n", prog, child, in runtest() 235 * NOTE: If we run this with a lot of children, the last child 239 * not the first child. 496 "\tThis is not ok for first child - check parameters.");
|
| /third_party/node/deps/v8/src/profiler/ |
| H A D | allocation-tracker.cc | 41 AllocationTraceNode* child = FindChild(function_info_index); in FindOrAddChild() local 42 if (child == nullptr) { in FindOrAddChild() 43 child = new AllocationTraceNode(tree_, function_info_index); in FindOrAddChild() 44 children_.push_back(child); in FindOrAddChild() 46 return child; in FindOrAddChild()
|
| /third_party/protobuf/ |
| H A D | update_version.py | 43 for child in elem.childNodes: 44 if child.nodeName == tagname: 45 return child 267 for child in children: 269 elem.appendChild(child)
|
| /third_party/node/test/internet/ |
| H A D | test-inspector-help-page.js | 12 const child = spawnSync(process.execPath, ['--inspect', '-e', '""']); 13 const stderr = child.stderr.toString();
|
| /third_party/node/test/parallel/ |
| H A D | test-async-hooks-fatal-error.js | 7 if (process.argv[2] === 'child') { 8 child(process.argv[3], process.argv[4]); 13 function child(type, valueType) { function 45 [ __filename, 'child', type, valueType ],
|
| H A D | test-internal-module-require.js | 76 if (process.argv[2] === 'child') { 104 const child = fork(__filename, ['child'], { 111 child.send(message);
|
| H A D | test-domain-nested-throw.js | 28 if (process.argv[2] !== 'child') { 37 const child = spawn(node, [__filename, 'child'], opt); 38 child.on('exit', function(c) {
|
| /third_party/node/test/abort/ |
| H A D | test-abort-uncaught-exception.js | 9 if (process.argv[2] === 'child') { 10 throw new Error('child error'); 16 run('', 'child', null); 17 run('--abort-on-uncaught-exception', 'child', 27 const child = spawn(node, args); 28 child.on('exit', common.mustCall(function(code, sig) {
|
| /third_party/ltp/testcases/kernel/syscalls/ioctl/ |
| H A D | ioctl_ns01.c | 68 static int child(void *arg LTP_ATTRIBUTE_UNUSED) in child() function 78 if (ltp_clone(CLONE_NEWPID | SIGCHLD, &child, 0, in run()
|
| /third_party/typescript/tests/baselines/reference/ |
| H A D | deeplyNestedCheck.js | 5 child(path: string): DataSnapshot; 9 child<U extends Extract<keyof T, string>>(path: U): Snapshot<T[U]>;
|
| /third_party/skia/modules/skottie/src/layers/shapelayer/ |
| H A D | RoundCorners.cpp | 25 sk_sp<sksg::GeometryNode> child) in RoundCornersAdapter() 26 : INHERITED(sksg::RoundEffect::Make(std::move(child))) { in RoundCornersAdapter() 23 RoundCornersAdapter(const skjson::ObjectValue& jround, const AnimationBuilder& abuilder, sk_sp<sksg::GeometryNode> child) RoundCornersAdapter() argument
|
| /third_party/mesa3d/src/freedreno/ir3/ |
| H A D | ir3_sched.c | 323 struct ir3_sched_node *child = in schedule() local 324 container_of(edge->child, struct ir3_sched_node, dag); in schedule() 325 child->earliest_ip = MAX2(child->earliest_ip, ctx->ip + delay); in schedule() 868 struct ir3_sched_node *child = (struct ir3_sched_node *)edge->child; in dump_state() local 870 di(child->instr, " -> (%d parents) ", child->dag.parent_count); in dump_state() 1149 struct ir3_sched_node *child = (struct ir3_sched_node *)edge->child; in sched_dag_max_delay_cb() local [all...] |
| /third_party/FreeBSD/sys/sys/ |
| H A D | tree.h | 579 struct type *child, *parent, *old = elm; \ 582 child = RB_RIGHT(elm, field); \ 584 child = RB_LEFT(elm, field); \ 590 child = RB_RIGHT(elm, field); \ 593 if (child) \ 594 RB_PARENT(child, field) = parent; \ 597 RB_LEFT(parent, field) = child; \ 599 RB_RIGHT(parent, field) = child; \ 602 RB_ROOT(head) = child; \ 627 if (child) \ [all...] |
| /third_party/libuv/include/uv/ |
| H A D | tree.h | 533 struct type *child, *parent, *old = elm; \ 536 child = RB_RIGHT(elm, field); \ 538 child = RB_LEFT(elm, field); \ 544 child = RB_RIGHT(elm, field); \ 547 if (child) \ 548 RB_PARENT(child, field) = parent; \ 551 RB_LEFT(parent, field) = child; \ 553 RB_RIGHT(parent, field) = child; \ 556 RB_ROOT(head) = child; \ 581 if (child) \ [all...] |
| /third_party/node/deps/uv/include/uv/ |
| H A D | tree.h | 533 struct type *child, *parent, *old = elm; \ 536 child = RB_RIGHT(elm, field); \ 538 child = RB_LEFT(elm, field); \ 544 child = RB_RIGHT(elm, field); \ 547 if (child) \ 548 RB_PARENT(child, field) = parent; \ 551 RB_LEFT(parent, field) = child; \ 553 RB_RIGHT(parent, field) = child; \ 556 RB_ROOT(head) = child; \ 581 if (child) \ [all...] |
| /third_party/python/Lib/importlib/metadata/ |
| H A D | __init__.py | 795 def joinpath(self, child): 796 return pathlib.Path(self.root, child) 810 return dict.fromkeys(child.split(posixpath.sep, 1)[0] for child in names) 833 for child in path.children(): 834 low = child.lower() 839 self.infos[normalized].append(path.joinpath(child)) 843 self.eggs[legacy_normalized].append(path.joinpath(child))
|
| /arkcompiler/ets_frontend/ets2panda/ir/visitor/ |
| H A D | IterateAstVisitor.h | 83 node->Iterate([this](ir::AstNode *child) { child->Accept(this); }); in Iterate()
|
| /third_party/musl/src/thread/powerpc64/ |
| H A D | clone.s | 19 # save fn and arg to child stack 40 # we're the child. call fn(arg)
|
| /third_party/ltp/testcases/kernel/sched/cfs-scheduler/ |
| H A D | starvation.c | 74 static void child(void) in child() function 91 child(); in do_test()
|
| /third_party/libabigail/include/ |
| H A D | abg-viz-dot.h | 20 enum type { child, parent }; enumerator 72 : node_base(__id, node_base::child, child_sty) in child_node() 85 - child classes
|