Home
last modified time | relevance | path

Searched refs:current_element (Results 1 – 7 of 7) sorted by relevance

/external/curl/lib/
Dhash.c285 iter->current_element = NULL; in Curl_hash_start_iterate()
294 if(iter->current_element) in Curl_hash_next_element()
295 iter->current_element = iter->current_element->next; in Curl_hash_next_element()
298 if(!iter->current_element) { in Curl_hash_next_element()
302 iter->current_element = h->table[i].head; in Curl_hash_next_element()
309 if(iter->current_element) { in Curl_hash_next_element()
310 struct curl_hash_element *he = iter->current_element->ptr; in Curl_hash_next_element()
313 iter->current_element = NULL; in Curl_hash_next_element()
Dhash.h69 struct curl_llist_element *current_element; member
/external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/util/
DTemplateGroupTheory.h166 typename current_element,
176 typename Multiply<current_element, g>::type,
177 typename concat<elements, type_list<current_element>>::type,
178 Equality<typename Multiply<current_element, g>::type, id>::value
186 typename current_element,
189 struct dimino_first_step_elements_helper<Multiply, Equality, id, g, current_element, elements, true>
192 constexpr static int global_flags = Equality<current_element, id>::global_flags;
/external/iperf3/src/
Dcjson.c1383 cJSON *current_element = item->child; in print_array() local
1402 while (current_element != NULL) in print_array()
1404 if (!print_value(current_element, output_buffer)) in print_array()
1409 if (current_element->next) in print_array()
1425 current_element = current_element->next; in print_array()
1710 cJSON *current_element = NULL; in get_object_item() local
1717 current_element = object->child; in get_object_item()
1720 while ((current_element != NULL) && (strcmp(name, current_element->string) != 0)) in get_object_item()
1722 current_element = current_element->next; in get_object_item()
1727 …while ((current_element != NULL) && (case_insensitive_strcmp((const unsigned char*)name, (const un… in get_object_item()
[all …]
/external/llvm/test/Transforms/RewriteStatepointsForGC/
Dbase-pointers-8.ll20 %current_element = load i64 addrspace(1)*, i64 addrspace(1)* addrspace(1)* %current_element_ptr
21 %is_null = icmp eq i64 addrspace(1)* %current_element, null
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/RewriteStatepointsForGC/
Dbase-pointers-8.ll21 %current_element = load i64 addrspace(1)*, i64 addrspace(1)* addrspace(1)* %current_element_ptr
22 %is_null = icmp eq i64 addrspace(1)* %current_element, null
/external/v8/third_party/v8/builtins/
Darray-sort.tq772 const current_element: Object =
775 CallCompareFn(context, sortState, current_element, previous_element)
785 previous_element = current_element;