HomeSort by relevance Sort by last modified time
    Searched refs:refcount (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/e2fsprogs/e2fsck/
ea_refcount.c 22 * reference counts. Once the refcount has dropped to zero, it is
38 void ea_refcount_free(ext2_refcount_t refcount)
40 if (!refcount)
43 if (refcount->list)
44 ext2fs_free_mem(&refcount->list);
45 ext2fs_free_mem(&refcount);
50 ext2_refcount_t refcount; local
54 retval = ext2fs_get_mem(sizeof(struct ea_refcount), &refcount);
57 memset(refcount, 0, sizeof(struct ea_refcount));
61 refcount->size = size
396 ext2_refcount_t refcount; local
    [all...]
e2fsck.h 195 * Define the extended attribute refcount structure
246 ext2_refcount_t refcount; member in struct:e2fsck_struct
418 extern void ea_refcount_free(ext2_refcount_t refcount);
419 extern errcode_t ea_refcount_fetch(ext2_refcount_t refcount, blk_t blk,
421 extern errcode_t ea_refcount_increment(ext2_refcount_t refcount,
423 extern errcode_t ea_refcount_decrement(ext2_refcount_t refcount,
425 extern errcode_t ea_refcount_store(ext2_refcount_t refcount,
427 extern blk_t ext2fs_get_refcount_size(ext2_refcount_t refcount);
428 extern void ea_refcount_intr_begin(ext2_refcount_t refcount);
429 extern blk_t ea_refcount_intr_next(ext2_refcount_t refcount, int *ret)
    [all...]
e2fsck.c 94 if (ctx->refcount) {
95 ea_refcount_free(ctx->refcount);
96 ctx->refcount = 0;
  /ndk/tests/device/test-stlport_shared-exception/jni/
ref9.cpp 5 int refcount; member in struct:basic
7 basic() : refcount(0) {}
23 inline ex::~ex() { if (--bp->refcount == 0) delete bp; }
27 bp->refcount++;
  /ndk/tests/device/test-stlport_static-exception/jni/
ref9.cpp 5 int refcount; member in struct:basic
7 basic() : refcount(0) {}
23 inline ex::~ex() { if (--bp->refcount == 0) delete bp; }
27 bp->refcount++;
  /external/opencv/cxcore/include/
cxcore.hpp 49 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(0
206 int* refcount; member in class:CvImage
    [all...]
cxcore.h 157 if( mat->refcount != NULL && --*mat->refcount == 0 )
158 cvFree( &mat->refcount );
159 mat->refcount = NULL;
165 if( mat->refcount != NULL && --*mat->refcount == 0 )
166 cvFree( &mat->refcount );
167 mat->refcount = NULL;
174 int refcount = 0; local
178 if( mat->refcount != NULL
    [all...]
  /external/kernel-headers/original/linux/
kref.h 24 atomic_t refcount; member in struct:kref
dmaengine.h 69 * @refcount: local_t used for open-coded "bigref" counting
75 local_t refcount; member in struct:dma_chan_percpu
88 * @refcount: kref, used in "bigref" slow-mode
104 struct kref refcount; member in struct:dma_chan
118 kref_get(&chan->refcount);
120 local_inc(&(per_cpu_ptr(chan->local, get_cpu())->refcount));
128 kref_put(&chan->refcount, dma_chan_cleanup);
130 local_dec(&(per_cpu_ptr(chan->local, get_cpu())->refcount));
165 * @refcount: reference count
183 struct kref refcount; member in struct:dma_device
    [all...]
  /external/qemu/block/
qcow2-refcount.c 57 /* refcount handling */
114 * Returns the refcount of the cluster given by its index. Any non-negative
115 * return value is the refcount of the cluster, negative values are -errno
144 * Rounds the refcount table size up to avoid growing the table for each single
145 * refcount block that is allocated.
162 /* Checks if two offsets are described by the same refcount block */
173 * Loads a refcount block. If it doesn't exist yet, it is allocated first
174 * (including growing the refcount table if needed).
176 * Returns the offset of the refcount block on success or -errno in error case
186 /* Find the refcount block for the given cluster *
483 int block_index, refcount; local
590 int i, nb_clusters, refcount; local
729 int refcount; local
751 int l2_size, i, j, l1_modified, l2_modified, nb_csectors, refcount; local
940 int i, l2_size, nb_csectors, refcount; local
1028 int i, refcount, ret; local
    [all...]
  /frameworks/av/media/libstagefright/
MediaBufferGroup.cpp 37 CHECK_EQ(buffer->refcount(), 0);
64 if (buffer->refcount() == 0) {
  /external/srec/srec/crec/
srec_tokens.c 278 awtoken->refcount = 0;
309 awtoken->refcount = 1;
318 ASSERT(old_token->refcount >= 1);
319 if (--old_token->refcount <= 0)
326 return old_token->refcount; /* return zero if truly freed */
332 ASSERT(old_token->refcount >= 1);
333 if (--old_token->refcount <= 0)
339 /* *(ddp++) = '0' + awtoken->refcount; */
  /external/e2fsprogs/lib/ext2fs/
ext2fsP.h 70 int refcount; member in struct:ext2_inode_cache
ext2_io.h 52 int refcount; member in struct:struct_io_channel
101 #define io_channel_bumpcount(c) ((c)->refcount++)
dupfs.c 45 fs->icache->refcount++;
freefs.c 66 if (--icache->refcount)
inode_io.c 152 io->refcount = 1;
183 if (--channel->refcount > 0)
  /external/opencv/cvaux/src/
cvmat.cpp 226 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 = 0
    [all...]
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_ndis.c 54 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) {
459 l2_ndisuio_global->refcount--;
460 l2_ndisuio_global->l2[l2_ndisuio_global->refcount] = NULL;
461 if (l2_ndisuio_global->refcount) {
  /frameworks/av/include/media/stagefright/
MediaBuffer.h 86 int refcount() const;
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
UT_refcount.java 27 super(rstc, "Refcount", ctx);
43 ScriptC_refcount s = new ScriptC_refcount(pRS, mRes, R.raw.refcount);
  /external/mdnsresponder/mDNSShared/
dnsextd.h 86 int refcount; member in struct:AnswerListElem
  /external/srec/srec/include/
astar.h 81 short refcount; member in struct:partial_path_t
  /external/openssh/
ssh-pkcs11.c 58 int refcount; member in struct:pkcs11_provider
95 debug("pkcs11_provider_finalize: %p refcount %d valid %d",
96 p, p->refcount, p->valid);
119 debug("pkcs11_provider_unref: %p refcount %d", p, p->refcount);
120 if (--p->refcount <= 0) {
313 provider->refcount++; /* provider referenced by RSA key */
573 p->refcount++; /* add to provider list */
  /sdk/emulator/opengl/host/libs/libOpenglRender/
FrameBuffer.h 31 uint32_t refcount; // number of client-side references member in struct:ColorBufferRef

Completed in 478 milliseconds

1 2 3 4 5