HomeSort by relevance Sort by last modified time
    Searched refs:tmp_ptr (Results 1 - 8 of 8) sorted by null

  /external/bluetooth/glib/glib/
gqsort.c 242 char *tmp_ptr = base_ptr; local
250 for (run_ptr = tmp_ptr + size; run_ptr <= thresh; run_ptr += size)
251 if ((*compare_func) ((void *) run_ptr, (void *) tmp_ptr, user_data) < 0)
252 tmp_ptr = run_ptr;
254 if (tmp_ptr != base_ptr)
255 SWAP (tmp_ptr, base_ptr, size);
262 tmp_ptr = run_ptr - size;
263 while ((*compare_func) ((void *) run_ptr, (void *) tmp_ptr, user_data) < 0)
264 tmp_ptr -= size;
266 tmp_ptr += size
    [all...]
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_video_config_parser.cpp 119 uint8* tmp_ptr = tp; local
126 tmp_ptr += length;
127 length = GetNAL_Config(&tmp_ptr, &initbufsize);
130 oscl_memcpy(buffer_begin + 2, tmp_ptr, length);
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
pred_intra.cpp 369 uint8 *tmp_ptr, tmp_byte; local
398 tmp_ptr = video->intra_pred_top + (mb_x << 4);
399 *((uint32*)tmp_ptr) = *((uint32*)pred);
400 *((uint32*)(tmp_ptr + 4)) = *((uint32*)(pred + 4));
401 *((uint32*)(tmp_ptr + 8)) = *((uint32*)(pred + 8));
402 *((uint32*)(tmp_ptr + 12)) = *((uint32*)(pred + 12));
403 tmp_ptr = video->intra_pred_top_cb + (mb_x << 3);
404 *((uint32*)tmp_ptr) = *((uint32*)predCb);
405 *((uint32*)(tmp_ptr + 4)) = *((uint32*)(predCb + 4));
406 tmp_ptr = video->intra_pred_top_cr + (mb_x << 3)
    [all...]
  /external/qemu/slirp/
misc.c 118 struct ex_list *tmp_ptr; local
121 for (tmp_ptr = *ex_ptr; tmp_ptr; tmp_ptr = tmp_ptr->ex_next) {
122 if (port == tmp_ptr->ex_fport && addr == tmp_ptr->ex_addr)
126 tmp_ptr = *ex_ptr;
132 (*ex_ptr)->ex_next = tmp_ptr;
  /external/qemu/slirp-android/
misc.c 98 struct ex_list *tmp_ptr; local
101 for (tmp_ptr = *ex_ptr; tmp_ptr; tmp_ptr = tmp_ptr->ex_next) {
102 if (port == tmp_ptr->ex_fport && addr == tmp_ptr->ex_addr)
106 tmp_ptr = *ex_ptr;
112 (*ex_ptr)->ex_next = tmp_ptr;
  /hardware/broadcom/wlan/bcm4329/src/bcmsdio/sys/
bcmsdh.c 319 uint8 *tmp_buf, *tmp_ptr; local
340 for (tmp_ptr = tmp_buf, ptr = cis; ptr < (cis + length - 4); tmp_ptr++) {
341 ptr += sprintf((char*)ptr, "%.2x ", *tmp_ptr & 0xff);
342 if ((((tmp_ptr - tmp_buf) + 1) & 0xf) == 0)
  /external/libxml2/
nanohttp.c 532 char * tmp_ptr = ctxt->in; local
535 ctxt->in = (char *) xmlRealloc(tmp_ptr, ctxt->inlen);
538 xmlFree( tmp_ptr );
    [all...]
xmlIO.c 1452 unsigned char * tmp_ptr = NULL; local
    [all...]

Completed in 378 milliseconds