| /third_party/ltp/testcases/kernel/syscalls/flock/ |
| H A D | flock04.c | 28 static void child(int opt, int should_pass, char *lock) in child() function 65 child(LOCK_SH | LOCK_NB, tc->operation & LOCK_SH, "shared lock"); in verify_flock() 71 child(LOCK_EX | LOCK_NB, 0, "exclusive lock"); in verify_flock()
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/ |
| H A D | 1-2.c | 107 pthread_t child; in main() local 123 pthread_create(&child, &scenarii[i].ta, threaded, in main() 154 ret = pthread_join(child, &rval); in main()
|
| H A D | 4-1.c | 124 pthread_t child; in main() local 140 pthread_create(&child, &scenarii[i].ta, threaded, in main() 171 ret = pthread_join(child, &rval); in main()
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setschedparam/ |
| H A D | 4-1.c | 158 pthread_t child; in main() local 164 ret = pthread_create(&child, NULL, threaded, NULL); in main() 170 ret = pthread_join(child, NULL); in main()
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/ |
| H A D | 9-1.c | 109 pthread_t child; in main() local 127 /* Create the child */ in main() 128 ret = pthread_create(&child, NULL, threaded, sem); in main() 134 /* Wait for the child to be waiting. */ in main() 161 ret = pthread_join(child, NULL); in main()
|
| /third_party/skia/experimental/skrive/src/ |
| H A D | Shape.cpp | 37 for (const auto& child : this->children()) { in onRevalidate() 38 if (const Paint* paint = *child) { in onRevalidate() 44 } else if (const Geometry* geo = *child) { in onRevalidate()
|
| /third_party/rust/crates/rustix/tests/ |
| H A D | backends.rs | 118 let child = command.output().unwrap(); in has_dependency() 125 child.status.success() && !child.stdout.is_empty() in has_dependency()
|
| /third_party/cJSON/tests/ |
| H A D | common.h | 30 if ((item != NULL) && (item->child != NULL)) in reset() 32 cJSON_Delete(item->child); in reset() 113 #define assert_has_child(item) TEST_ASSERT_NOT_NULL_MESSAGE(item->child, "Item doesn't have a child.") 114 #define assert_has_no_child(item) TEST_ASSERT_NULL_MESSAGE(item->child, "Item has a child.")
|
| /third_party/FreeBSD/sys/arm/arm/ |
| H A D | nexus.c | 154 nexus_print_child(device_t bus, device_t child) in nexus_print_child() argument 158 retval += bus_print_child_header(bus, child); in nexus_print_child() 165 * Allocate a resource on behalf of child. NB: child is usually going to be a 166 * child of one of our descendants, not a direct child of nexus0. 170 nexus_alloc_resource(device_t bus, device_t child, int type, int *rid, in nexus_alloc_resource() argument 173 devclass_t dc = device_get_devclass(child); in nexus_alloc_resource()
|
| /third_party/mesa3d/src/freedreno/drm/virtio/ |
| H A D | msm_proto.h | 60 #define DEFINE_CAST(parent, child) \ 61 static inline struct child *to_##child(const struct parent *x) \ 63 return (struct child *)x; \
|
| /third_party/node/test/parallel/ |
| H A D | test-child-process-exec-maxbuf.js | 116 const child = cp.exec( 124 child.stdout.setEncoding('utf-8'); 130 const child = cp.exec( 138 child.stderr.setEncoding('utf-8');
|
| /third_party/node/test/sequential/ |
| H A D | test-diagnostic-dir-heap-prof.js | 19 (child) => child.callFrame.functionName === func 24 for (const child of root.children) { 25 const first = findFirstFrameInNode(child, func);
|
| /third_party/ltp/testcases/kernel/syscalls/mmap/ |
| H A D | mmap16.c | 84 * has been fixed, usually child process will killed by SIGBUS signal, in do_child() 102 pid_t child; in run_single() local 106 child = SAFE_FORK(); in run_single() 107 if (!child) { in run_single() 132 SAFE_WAITPID(child, &status, 0); in run_single() 137 * If child process was killed by SIGBUS, bug is not reproduced. in run_single() 140 tst_brk(TBROK | TERRNO, "child process terminate unexpectedly with status %s", in run_single()
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/ |
| H A D | 16-1.c | 150 pthread_t child; in test_sig() local 163 errno = pthread_create(&child, NULL, threaded, s); in test_sig() 168 * sync on the ready flag. Since the child is running in in test_sig() 179 errno = pthread_kill(child, s->sig); in test_sig() 192 errno = pthread_join(child, &thread_status); in test_sig()
|
| /third_party/python/Tools/c-analyzer/ |
| H A D | table-file.py | 78 child, secrows, totalrows = parent[name] 80 child = {} 83 parent[name] = (child, secrows, totalrows) 84 parent = child
|
| /third_party/protobuf/src/google/protobuf/compiler/ |
| H A D | scc.h | 145 const SCC* child = GetSCC(child_msg); in AddChildren() local 146 if (child == scc) continue; in AddChildren() 147 if (seen.insert(child).second) { in AddChildren() 148 scc->children.push_back(child); in AddChildren()
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
| H A D | cord_rep_consume.cc | 30 // Unrefs the provided `substring`, and returns `substring->child` 31 // Adds or assumes a reference on `substring->child` 33 CordRep* child = substring->child; in ClipSubstring() local 37 CordRep::Ref(child); in ClipSubstring() 40 return child; in ClipSubstring()
|
| /third_party/skia/modules/sksg/include/ |
| H A D | SkSGColorFilter.h | 50 static sk_sp<ExternalColorFilter> Make(sk_sp<RenderNode> child); 74 static sk_sp<ModeColorFilter> Make(sk_sp<RenderNode> child, 99 static sk_sp<GradientColorFilter> Make(sk_sp<RenderNode> child, 101 static sk_sp<GradientColorFilter> Make(sk_sp<RenderNode> child,
|
| /third_party/mesa3d/src/gallium/drivers/vc4/ |
| H A D | vc4_qpu_schedule.c | 694 struct schedule_node *child = in dump_state() local 695 (struct schedule_node *)edge->child; in dump_state() 696 if (!child) in dump_state() 700 vc4_qpu_disasm(&child->inst->inst, 1); in dump_state() 702 child->dag.parent_count, in dump_state() 777 struct schedule_node *child = in compute_delay() local 778 (struct schedule_node *)edge->child; in compute_delay() 779 n->delay = MAX2(n->delay, (child->delay + in compute_delay() 780 instruction_latency(n, child))); in compute_delay() 807 struct schedule_node *child in mark_instruction_scheduled() local [all...] |
| /third_party/protobuf/python/google/protobuf/internal/ |
| H A D | well_known_types_test.py | 589 nested_src.child.payload.optional_int32 = 1234 590 nested_src.child.child.payload.optional_int32 = 5678 592 mask.FromJsonString('child.payload') 594 self.assertEqual(1234, nested_dst.child.payload.optional_int32) 595 self.assertEqual(0, nested_dst.child.child.payload.optional_int32) 597 mask.FromJsonString('child.child.payload') 599 self.assertEqual(1234, nested_dst.child [all...] |
| /third_party/node/deps/v8/src/base/platform/ |
| H A D | platform-fuchsia.cc | 186 OS::MemoryPermission max_permission, zx::vmar* child, in CreateAddressSpaceReservationInternal() 212 vmar.allocate(options, vmar_offset, size, child, child_addr); in CreateAddressSpaceReservationInternal() 218 status = vmar.allocate(options, 0, size, child, child_addr); in CreateAddressSpaceReservationInternal() 310 zx::vmar child; in CreateAddressSpaceReservation() local 316 placement, size, alignment, max_permission, &child, &child_addr); in CreateAddressSpaceReservation() 319 child.release()); in CreateAddressSpaceReservation() 388 zx::vmar child; in CreateSubReservation() local 393 &child, &child_addr); in CreateSubReservation() 397 child.release()); in CreateSubReservation() 183 CreateAddressSpaceReservationInternal( const zx::vmar& vmar, void* vmar_base, size_t page_size, void* address, PlacementMode placement, size_t size, size_t alignment, OS::MemoryPermission max_permission, zx::vmar* child, zx_vaddr_t* child_addr) CreateAddressSpaceReservationInternal() argument
|
| /third_party/mesa3d/src/freedreno/ir3/ |
| H A D | ir3_postsched.c | 131 struct ir3_postsched_node *child = in schedule() local 132 container_of(edge->child, struct ir3_postsched_node, dag); in schedule() 133 child->earliest_ip = MAX2(child->earliest_ip, ctx->ip + delay); in schedule() 170 struct ir3_postsched_node *child = in dump_state() local 171 (struct ir3_postsched_node *)edge->child; in dump_state() 173 di(child->instr, " -> (%d parents) ", child->dag.parent_count); in dump_state() 544 struct ir3_postsched_node *child = in sched_dag_max_delay_cb() local 545 (struct ir3_postsched_node *)edge->child; in sched_dag_max_delay_cb() [all...] |
| /third_party/mesa3d/src/gallium/drivers/lima/ir/gp/ |
| H A D | nir.c | 80 store->child = node; in register_node_ssa() 95 store->child = node; in register_node_reg() 180 gpir_node *child = gpir_node_find(block, &instr->src[0].src, in gpir_emit_alu() local 182 register_node(block, child, &instr->dest.dest); in gpir_emit_alu() 205 gpir_node *child = gpir_node_find(block, &src->src, src->swizzle[0]); in gpir_emit_alu() local 206 node->children[i] = child; in gpir_emit_alu() 208 gpir_node_add_dep(&node->node, child, GPIR_DEP_INPUT); in gpir_emit_alu() 279 gpir_node *child = gpir_node_find(block, instr->src, 0); in gpir_emit_intrinsic() 280 store->child = child; in gpir_emit_intrinsic() [all...] |
| /third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
| H A D | vkBinaryRegistry.cpp | 254 SparseIndexNode* child = DE_NULL; in addToSparseIndex() local 260 child = group->children[childNdx]; in addToSparseIndex() 265 DE_ASSERT(numWords > 1 || !child); in addToSparseIndex() 267 if (!child) in addToSparseIndex() 272 child = group->children.back(); in addToSparseIndex() 276 addToSparseIndex(child, words+1, numWords-1, index); in addToSparseIndex() 281 // Prepares sparse index for finalization. Ensures that child with word = 0 is moved 282 // to the end, or one is added if there is no such child already. 300 // Move child with word = 0 to last in normalizeSparseIndex() 336 const SparseIndexNode* child in addAndCountNodes() local [all...] |
| /third_party/elfutils/libelf/ |
| H A D | elf_end.c | 82 the child but here we already have the child lock. We in elf_end() 83 solve this problem by giving free the child lock. The in elf_end() 94 struct Elf *child = parent->state.ar.children; in elf_end() local 96 while (child->next != elf) in elf_end() 97 child = child->next; in elf_end() 99 child->next = elf->next; in elf_end()
|