Home
last modified time | relevance | path

Searched refs:pnext (Results 1 – 17 of 17) sorted by relevance

/external/opencv/cv/src/
Dcvconvhull.cpp49 int pprev = start, pcur = pprev + incr, pnext = pcur + incr; in icvSklansky_32s() local
62 stack[2] = pnext; in icvSklansky_32s()
66 while( pnext != end ) in icvSklansky_32s()
70 int nexty = array[pnext]->y; in icvSklansky_32s()
76 int bx = array[pnext]->x - array[pcur]->x; in icvSklansky_32s()
83 pcur = pnext; in icvSklansky_32s()
84 pnext += incr; in icvSklansky_32s()
85 stack[stacksize] = pnext; in icvSklansky_32s()
92 pcur = pnext; in icvSklansky_32s()
94 pnext += incr; in icvSklansky_32s()
[all …]
/external/e2fsprogs/lib/blkid/
Dlist.h169 #define list_for_each_safe(pos, pnext, head) \ argument
170 for (pos = (head)->next, pnext = pos->next; pos != (head); \
171 pos = pnext, pnext = pos->next)
Ddevname.c51 struct list_head *p, *pnext; in blkid_get_dev() local
91 list_for_each_safe(p, pnext, &cache->bic_devs) { in blkid_get_dev()
186 struct list_head *p, *pnext; in probe_one() local
191 list_for_each_safe(p, pnext, &cache->bic_devs) { in probe_one()
405 struct list_head *p, *pnext; in probe_all() local
471 list_for_each_safe(p, pnext, &cache->bic_devs) { in probe_all()
Dcache.c156 struct list_head *p, *pnext; in blkid_gc_cache() local
162 list_for_each_safe(p, pnext, &cache->bic_devs) { in blkid_gc_cache()
/external/mksh/src/
Dmisc.c711 const unsigned char *prest, *psub, *pnext; in do_gmatch() local
766 for (psub = p; ; psub = pnext) { in do_gmatch()
767 pnext = pat_scan(psub, pe, true); in do_gmatch()
769 if (do_gmatch(s, srest, psub, pnext - 2) && in do_gmatch()
775 if (pnext == prest) in do_gmatch()
793 for (psub = p; ; psub = pnext) { in do_gmatch()
794 pnext = pat_scan(psub, pe, true); in do_gmatch()
797 if (do_gmatch(s, srest, psub, pnext - 2) && in do_gmatch()
801 if (pnext == prest) in do_gmatch()
814 for (psub = p; ; psub = pnext) { in do_gmatch()
[all …]
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
Dplarena.h173 #define PL_ARENA_DESTROY(pool, a, pnext) \ argument
177 *(pnext) = (a)->next; \
/external/wpa_supplicant_8/wpa_supplicant/
Dconfig_ssid.h68 struct wpa_ssid *pnext; member
Dconfig.c1676 while (prev->pnext) in wpa_config_add_prio_network()
1677 prev = prev->pnext; in wpa_config_add_prio_network()
1678 prev->pnext = ssid; in wpa_config_add_prio_network()
1726 ssid->pnext = NULL; in wpa_config_update_prio_list()
2684 ssid = ssid->pnext; in wpa_config_debug_dump_networks()
Devents.c764 for (ssid = group; ssid; ssid = ssid->pnext) { in wpa_scan_res_match()
1023 for (ssid = wpa_s->conf->pssid[prio]; ssid; ssid = ssid->pnext) in wpa_supplicant_pick_new_network()
/external/qemu/android/
Dconsole.c2521 char* pnext; in do_sensors_set() local
2523 for (i = 0; i < 3; i++, value = pnext + 1) { in do_sensors_set()
2524 pnext=strchr( value, ':' ); in do_sensors_set()
2525 if (pnext) { in do_sensors_set()
2526 *pnext = 0; in do_sensors_set()
2528 pnext = pend; in do_sensors_set()
2531 if (pnext > value) { in do_sensors_set()
/external/kernel-headers/original/asm-mips/sgi/
Dhpc3.h33 u32 pnext; /* paddr of next hpc_dma_desc if any */ member
/external/e2fsprogs/misc/
Dtune2fs.c1432 #define list_for_each_safe(pos, pnext, head) \ argument
1433 for (pos = (head)->next, pnext = pos->next; pos != (head); \
1434 pos = pnext, pnext = pos->next)
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
Dcv8.txt81 4 bytes - pnext
/external/chromium_org/third_party/sqlite/src/src/
Dbtree.c1293 int pnext, psize, x; in freeSpace() local
1296 pnext = get2byte(&data[pbegin]); in freeSpace()
1298 if( pbegin + psize + 3 >= pnext && pnext>0 ){ in freeSpace()
1299 int frag = pnext - (pbegin+psize); in freeSpace()
1304 x = get2byte(&data[pnext]); in freeSpace()
1306 x = pnext + get2byte(&data[pnext+2]) - pbegin; in freeSpace()
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.c48591 int pnext, psize, x;
48594 pnext = get2byte(&data[pbegin]);
48596 if( pbegin + psize + 3 >= pnext && pnext>0 ){
48597 int frag = pnext - (pbegin+psize);
48602 x = get2byte(&data[pnext]);
48604 x = pnext + get2byte(&data[pnext+2]) - pbegin;
/external/sqlite/dist/orig/
Dsqlite3.c50664 int pnext, psize, x;
50667 pnext = get2byte(&data[pbegin]);
50669 if( pbegin + psize + 3 >= pnext && pnext>0 ){
50670 int frag = pnext - (pbegin+psize);
50675 x = get2byte(&data[pnext]);
50677 x = pnext + get2byte(&data[pnext+2]) - pbegin;
/external/sqlite/dist/
Dsqlite3.c50692 int pnext, psize, x;
50695 pnext = get2byte(&data[pbegin]);
50697 if( pbegin + psize + 3 >= pnext && pnext>0 ){
50698 int frag = pnext - (pbegin+psize);
50703 x = get2byte(&data[pnext]);
50705 x = pnext + get2byte(&data[pnext+2]) - pbegin;