Searched refs:child_index (Results 1 - 7 of 7) sorted by relevance
/third_party/mesa3d/src/mapi/glapi/gen/ |
H A D | glX_server_table.py | 180 child_index = base_entry 221 print ' %u,' % (child_index) 222 child_index += child[2] 228 child_index = base_entry 231 self.dump_tree(child, base_opcode, remaining_bits - M, child_index, depth + 1) 232 child_index += child[2]
|
/third_party/node/deps/v8/src/parsing/ |
H A D | preparse-data-impl.h | 152 virtual ProducedPreparseData* GetChildData(Zone* zone, int child_index) = 0; 188 ProducedPreparseData* GetChildData(Zone* zone, int child_index) final; 238 ProducedPreparseData* GetChildData(Zone* zone, int child_index) final;
|
H A D | preparse-data.cc | 830 int child_index) { in GetChildData() 831 CHECK_GT(data_->children_length(), child_index); in GetChildData() 832 ZonePreparseData* child_data = data_->get_child(child_index); in GetChildData() 829 GetChildData(Zone* zone, int child_index) GetChildData() argument
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_rt_common.c | 107 nir_ssa_def *child_index = in intersect_ray_amd_software_box() local 154 nir_ssa_def *new_child_indices[4] = {child_index, child_index, child_index, child_index}; in intersect_ray_amd_software_box()
|
/third_party/cJSON/ |
H A D | cJSON_Utils.c | 200 size_t child_index = 0; in cJSONUtils_FindPointerFromObjectTo() local 215 for (current_child = object->child; current_child != NULL; (void)(current_child = current_child->next), child_index++) in cJSONUtils_FindPointerFromObjectTo() 228 if (child_index > ULONG_MAX) in cJSONUtils_FindPointerFromObjectTo() 234 sprintf((char*)full_pointer, "/%lu%s", (unsigned long)child_index, target_pointer); /* /<array_index><path> */ in cJSONUtils_FindPointerFromObjectTo()
|
/third_party/python/Modules/ |
H A D | _elementtree.c | 2062 Py_ssize_t child_index; member 2124 item->child_index = 0; in parent_stack_push_new() 2165 Py_ssize_t child_index = item->child_index; in elementiter_next() local 2169 if (!extra || child_index >= extra->length) { in elementiter_next() 2183 assert(Element_Check(extra->children[child_index])); in elementiter_next() 2184 elem = (ElementObject *)extra->children[child_index]; in elementiter_next() 2185 item->child_index++; in elementiter_next()
|
/third_party/node/deps/v8/src/objects/ |
H A D | objects.cc | 4475 int child_index = 2 * parent_index + 1; in Sort() local 4476 uint32_t child_hash = GetSortedKey(child_index).hash(); in Sort() 4477 if (child_index + 1 < len) { in Sort() 4478 uint32_t right_child_hash = GetSortedKey(child_index + 1).hash(); in Sort() 4480 child_index++; in Sort() 4485 SwapSortedKeys(parent_index, child_index); in Sort() 4486 // Now element at child_index could be < its children. in Sort() 4487 parent_index = child_index; // parent_hash remains correct. in Sort() 4500 int child_index = parent_index * 2 + 1; in Sort() local 4501 uint32_t child_hash = GetSortedKey(child_index) in Sort() [all...] |
Completed in 22 milliseconds