Searched refs:refcount (Results 1 - 25 of 123) sorted by relevance

12345

/external/e2fsprogs/e2fsck/
H A Dea_refcount.c23 * reference counts. Once the refcount has dropped to zero, it is
39 void ea_refcount_free(ext2_refcount_t refcount) argument
41 if (!refcount)
44 if (refcount->list)
45 ext2fs_free_mem(&refcount->list);
46 ext2fs_free_mem(&refcount);
51 ext2_refcount_t refcount; local
55 retval = ext2fs_get_mem(sizeof(struct ea_refcount), &refcount);
58 memset(refcount, 0, sizeof(struct ea_refcount));
62 refcount
88 refcount_collapse(ext2_refcount_t refcount) argument
113 insert_refcount_el(ext2_refcount_t refcount, blk64_t blk, int pos) argument
155 get_refcount_el(ext2_refcount_t refcount, blk64_t blk, int create) argument
209 ea_refcount_fetch(ext2_refcount_t refcount, blk64_t blk, int *ret) argument
223 ea_refcount_increment(ext2_refcount_t refcount, blk64_t blk, int *ret) argument
237 ea_refcount_decrement(ext2_refcount_t refcount, blk64_t blk, int *ret) argument
252 ea_refcount_store(ext2_refcount_t refcount, blk64_t blk, int count) argument
266 ext2fs_get_refcount_size(ext2_refcount_t refcount) argument
274 ea_refcount_intr_begin(ext2_refcount_t refcount) argument
280 ea_refcount_intr_next(ext2_refcount_t refcount, int *ret) argument
301 ea_refcount_validate(ext2_refcount_t refcount, FILE *out) argument
372 ext2_refcount_t refcount; local
[all...]
/external/opencv/cxcore/include/
H A Dcxcore.hpp49 CvImage() : image(0), refcount(0) {}
53 refcount = image ? new int(1) : 0;
58 refcount = image ? new int(1) : 0;
61 CvImage( const CvImage& img ) : image(img.image), refcount(img.refcount)
63 if( refcount ) ++(*refcount);
66 CvImage( const char* filename, const char* imgname=0, int color=-1 ) : image(0), refcount(0)
69 CvImage( CvFileStorage* fs, const char* mapname, const char* imgname ) : image(0), refcount(0)
72 CvImage( CvFileStorage* fs, const char* seqname, int idx ) : image(0), refcount(
206 int* refcount; member in class:CvImage
[all...]
/external/python/cpython2/Doc/tools/extensions/
H A Dc_annotations.py9 refcount.py and anno-api.py in the old Python documentation tools.
50 function, type, arg, refcount, comment = parts
56 if not refcount or refcount == "null":
57 refcount = None
59 refcount = int(refcount)
63 entry.args.append((arg, type, refcount))
66 entry.result_refs = refcount
98 node.insert(0, nodes.emphasis(rc, rc, classes=['refcount']))
[all...]
/external/python/cpython3/Doc/tools/extensions/
H A Dc_annotations.py9 refcount.py and anno-api.py in the old Python documentation tools.
50 function, type, arg, refcount, comment = parts
56 if not refcount or refcount == "null":
57 refcount = None
59 refcount = int(refcount)
63 entry.args.append((arg, type, refcount))
66 entry.result_refs = refcount
98 node.insert(0, nodes.emphasis(rc, rc, classes=['refcount']))
[all...]
/external/libdrm/tests/radeon/
H A Drbo.h34 unsigned refcount; member in struct:rbo
H A Drbo.c50 bo->refcount = 1;
135 bo->refcount++;
145 if (--bo->refcount > 0) {
/external/libdrm/amdgpu/
H A Damdgpu_internal.h73 atomic_t refcount; member in struct:amdgpu_device
94 atomic_t refcount; member in struct:amdgpu_bo
129 atomic_t refcount; member in struct:amdgpu_semaphore
199 if (update_references(&(*dst)->refcount, &src->refcount))
/external/mesa3d/src/gallium/winsys/nouveau/drm/
H A Dnouveau_drm_winsys.c27 if (screen->refcount == -1)
31 ret = --screen->refcount;
81 screen->refcount++;
145 screen->refcount = 1;
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
H A DGraph.java52 while (refcount > 0) {
148 private int refcount = 0; field in class:Graph
164 Graph.this.refcount++;
175 if (--Graph.this.refcount == 0) {
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_regions.c123 region->refcount = 1;
245 *dst, *dst ? (*dst)->refcount : 0, src, src ? src->refcount : 0);
252 src->refcount++;
267 _DBG("%s %p %d\n", __func__, region, region->refcount - 1);
269 assert(region->refcount > 0);
270 region->refcount--;
272 if (region->refcount == 0) {
/external/squashfs-tools/kernel/fs/squashfs/
H A Dsquashfs_fs_sb.h44 int refcount; member in struct:squashfs_cache_entry
H A Dcache.c100 if (cache->entry[i].refcount == 0)
114 entry->refcount = 1;
146 * Block already in cache. Increment refcount so it doesn't
152 if (entry->refcount == 0)
154 entry->refcount++;
171 TRACE("Got %s %d, start block %lld, refcount %d, error %d\n",
172 cache->name, i, entry->block, entry->refcount, entry->error);
189 entry->refcount--;
190 if (entry->refcount == 0) {
/external/mesa3d/src/mesa/vbo/
H A Dvbo_save.c86 if ( --save->prim_store->refcount == 0 ) {
90 if ( --save->vertex_store->refcount == 0 ) {
H A Dvbo_save.h113 GLuint refcount; member in struct:vbo_save_vertex_store
119 GLuint refcount; member in struct:vbo_save_primitive_store
/external/mesa3d/src/gallium/state_trackers/nine/
H A Dnine_buffer_upload.c46 unsigned refcount; /* How many sub-buffers live inside the buffer */ member in struct:nine_buffer_group
92 group->refcount = 0;
117 assert(group->refcount == 0);
249 group->refcount += 1;
262 buf->parent->refcount--;
263 if (buf->parent->refcount == 0) {
/external/opencv/cvaux/src/
H A Dcvmat.cpp226 refcount = 0;
235 refcount = 0;
244 refcount = 0;
253 refcount = 0;
262 refcount = 0;
271 refcount = 0;
280 refcount = 0;
289 refcount = 0;
298 refcount = 0;
307 refcount
[all...]
/external/wpa_supplicant_8/hostapd/src/l2_packet/
H A Dl2_packet_ndis.c54 int refcount; member in struct:l2_packet_ndisuio_global
309 l2 = l2_ndisuio_global->l2[l2_ndisuio_global->refcount - 1];
362 if (l2_ndisuio_global->refcount >= 2) {
367 l2_ndisuio_global->refcount++;
372 l2_ndisuio_global->l2[l2_ndisuio_global->refcount - 1] = l2;
387 if (l2_ndisuio_global->refcount > 1) {
471 l2_ndisuio_global->refcount--;
472 l2_ndisuio_global->l2[l2_ndisuio_global->refcount] = NULL;
473 if (l2_ndisuio_global->refcount) {
/external/wpa_supplicant_8/src/l2_packet/
H A Dl2_packet_ndis.c54 int refcount; member in struct:l2_packet_ndisuio_global
309 l2 = l2_ndisuio_global->l2[l2_ndisuio_global->refcount - 1];
362 if (l2_ndisuio_global->refcount >= 2) {
367 l2_ndisuio_global->refcount++;
372 l2_ndisuio_global->l2[l2_ndisuio_global->refcount - 1] = l2;
387 if (l2_ndisuio_global->refcount > 1) {
471 l2_ndisuio_global->refcount--;
472 l2_ndisuio_global->l2[l2_ndisuio_global->refcount] = NULL;
473 if (l2_ndisuio_global->refcount) {
/external/wpa_supplicant_8/wpa_supplicant/src/l2_packet/
H A Dl2_packet_ndis.c54 int refcount; member in struct:l2_packet_ndisuio_global
309 l2 = l2_ndisuio_global->l2[l2_ndisuio_global->refcount - 1];
362 if (l2_ndisuio_global->refcount >= 2) {
367 l2_ndisuio_global->refcount++;
372 l2_ndisuio_global->l2[l2_ndisuio_global->refcount - 1] = l2;
387 if (l2_ndisuio_global->refcount > 1) {
471 l2_ndisuio_global->refcount--;
472 l2_ndisuio_global->l2[l2_ndisuio_global->refcount] = NULL;
473 if (l2_ndisuio_global->refcount) {
/external/drm_gralloc/
H A Dgralloc_drm_priv.h88 unsigned int refcount; member in struct:gralloc_drm_bo_t
/external/e2fsprogs/lib/ext2fs/
H A Dqcow2.h94 struct ext2_qcow2_refcount refcount; member in struct:ext2_qcow2_image
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_fence.c56 int32_t refcount; member in struct:vmw_fence
191 p_atomic_set(&fence->refcount, 1);
227 if (p_atomic_dec_zero(&vfence->refcount)) {
243 p_atomic_inc(&vfence->refcount);
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_mipmap_tree.h64 GLuint refcount; member in struct:_radeon_mipmap_tree
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_mipmap_tree.h64 GLuint refcount; member in struct:_radeon_mipmap_tree
/external/wayland/src/
H A Dwayland-client.c63 int refcount; member in struct:wl_proxy
245 proxy->refcount--;
246 if (!proxy->refcount)
273 proxy->refcount--;
274 if (proxy_destroyed && !proxy->refcount)
341 proxy->refcount = 1;
397 proxy->refcount = 1;
420 proxy->refcount--;
421 if (!proxy->refcount)
951 display->proxy.refcount
[all...]

Completed in 618 milliseconds

12345