Home
last modified time | relevance | path

Searched refs:tmp_ptr (Results 1 – 5 of 5) sorted by relevance

/external/bluetooth/glib/glib/
Dgqsort.c242 char *tmp_ptr = base_ptr; in g_qsort_with_data() local
250 for (run_ptr = tmp_ptr + size; run_ptr <= thresh; run_ptr += size) in g_qsort_with_data()
251 if ((*compare_func) ((void *) run_ptr, (void *) tmp_ptr, user_data) < 0) in g_qsort_with_data()
252 tmp_ptr = run_ptr; in g_qsort_with_data()
254 if (tmp_ptr != base_ptr) in g_qsort_with_data()
255 SWAP (tmp_ptr, base_ptr, size); in g_qsort_with_data()
262 tmp_ptr = run_ptr - size; in g_qsort_with_data()
263 while ((*compare_func) ((void *) run_ptr, (void *) tmp_ptr, user_data) < 0) in g_qsort_with_data()
264 tmp_ptr -= size; in g_qsort_with_data()
266 tmp_ptr += size; in g_qsort_with_data()
[all …]
/external/qemu/slirp/
Dmisc.c118 struct ex_list *tmp_ptr; in add_exec() local
121 for (tmp_ptr = *ex_ptr; tmp_ptr; tmp_ptr = tmp_ptr->ex_next) { in add_exec()
122 if (port == tmp_ptr->ex_fport && addr == tmp_ptr->ex_addr) in add_exec()
126 tmp_ptr = *ex_ptr; in add_exec()
132 (*ex_ptr)->ex_next = tmp_ptr; in add_exec()
/external/qemu/slirp-android/
Dmisc.c98 struct ex_list *tmp_ptr; in add_exec() local
101 for (tmp_ptr = *ex_ptr; tmp_ptr; tmp_ptr = tmp_ptr->ex_next) { in add_exec()
102 if (port == tmp_ptr->ex_fport && addr == tmp_ptr->ex_addr) in add_exec()
106 tmp_ptr = *ex_ptr; in add_exec()
112 (*ex_ptr)->ex_next = tmp_ptr; in add_exec()
/external/libxml2/
Dnanohttp.c532 char * tmp_ptr = ctxt->in; in xmlNanoHTTPRecv() local
535 ctxt->in = (char *) xmlRealloc(tmp_ptr, ctxt->inlen); in xmlNanoHTTPRecv()
538 xmlFree( tmp_ptr ); in xmlNanoHTTPRecv()
DxmlIO.c1452 unsigned char * tmp_ptr = NULL; in xmlZMemBuffExtend() local
1472 tmp_ptr = xmlRealloc( buff->zbuff, new_size ); in xmlZMemBuffExtend()
1473 if ( tmp_ptr != NULL ) { in xmlZMemBuffExtend()
1476 buff->zbuff = tmp_ptr; in xmlZMemBuffExtend()
1477 buff->zctrl.next_out = tmp_ptr + cur_used; in xmlZMemBuffExtend()