HomeSort by relevance Sort by last modified time
    Searched refs:refcount (Results 51 - 75 of 212) sorted by null

1 23 4 5 6 7 8 9

  /external/mesa3d/src/mesa/drivers/dri/common/
dri_util.c 566 * __DRIdrawableRec::refcount which must be non-zero for a successful
599 if (pdp->refcount == 0) {
607 if (prp->refcount == 0) {
626 pdp->refcount++;
632 pdp->refcount--;
633 if (pdp->refcount)
658 pdraw->refcount = 0;
dri_util.h 257 int refcount; member in struct:__DRIdrawableRec
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_mipmap_tree.c 189 mt->refcount = 1;
213 mt->refcount++;
214 assert(mt->refcount > 0);
225 assert(mt->refcount > 0);
227 mt->refcount--;
228 if (!mt->refcount) {
  /external/mesa3d/src/mesa/tnl/
t_vb_light.c 138 if (s->refcount == 0)
165 tnl->_ShineTable[side]->refcount--;
169 s->refcount++;
  /external/e2fsprogs/lib/ext2fs/
dupfs.c 49 fs->icache->refcount++;
inode_io.c 151 io->refcount = 1;
183 if (--channel->refcount > 0)
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_screen.h 26 int refcount; member in struct:nouveau_screen
  /external/opencv/cxcore/include/
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...]
  /toolchain/binutils/binutils-2.27/bfd/
elfxx-sparc.h 55 bfd_signed_vma refcount; member in union:_bfd_sparc_elf_link_hash_table::__anon4074
elf32-cris.c 771 /* The root.got.refcount is the sum of the regular reference counts
799 refcount for GOT itself, see code), with the summary / group offset
    [all...]
elf32-s390.c 686 bfd_signed_vma refcount; member in union:plt_entry::__anon4022
745 bfd_signed_vma refcount; member in union:elf_s390_link_hash_table::__anon4023
    [all...]
elf64-s390.c 599 bfd_signed_vma refcount; member in union:plt_entry::__anon4057
657 bfd_signed_vma refcount; member in union:elf_s390_link_hash_table::__anon4058
832 && dir->got.refcount <= 0)
    [all...]
elf32-sh.c 2384 bfd_signed_vma refcount; member in union:gotref
2397 bfd_signed_vma refcount; member in union:elf_sh_link_hash_entry::__anon4029
2490 bfd_signed_vma refcount; member in union:elf_sh_link_hash_table::__anon4030
    [all...]
  /external/cmockery/cmockery_0_1_2/src/
cmockery.c 53 int refcount; member in struct:ListNode
314 node->refcount = 1;
322 const int refcount) {
327 new_node->refcount = refcount;
454 const void* value, const int refcount) {
476 value, refcount);
480 refcount);
487 * node's old refcount value if a value is found, 0 otherwise.
517 return_value = value_node->refcount;
    [all...]
  /external/e2fsprogs/misc/
e2image.c 844 ref = &(img->refcount);
847 * One refcount block addresses 2048 clusters, one refcount table
848 * addresses cluster/sizeof(__u64) refcount blocks, and we need
862 /* Allocate refcount table */
868 /* Allocate refcount block */
924 ext2fs_cpu_to_be32(image->refcount.refcount_table_clusters);
926 offset += image->refcount.refcount_table_clusters <<
933 /* Make space for first refcount block */
934 image->refcount.refcount_block_offset = offset
    [all...]
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_pixels.h 268 int refcount; member in struct:SDL_Palette
293 int refcount; member in struct:SDL_PixelFormat
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_pixels.h 268 int refcount; member in struct:SDL_Palette
293 int refcount; member in struct:SDL_PixelFormat
  /prebuilts/misc/windows/sdl2/include/
SDL_pixels.h 268 int refcount; member in struct:SDL_Palette
293 int refcount; member in struct:SDL_PixelFormat
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_pixels.h 268 int refcount; member in struct:SDL_Palette
293 int refcount; member in struct:SDL_PixelFormat
  /external/tensorflow/tensorflow/compiler/xla/service/
heap_simulator.cc 313 // by maintaining a refcount; the Free call on the last buffer in the group
320 --group->refcount;
321 if (group->refcount > 0) {
324 CHECK_EQ(group->refcount, 0)
325 << "Free caused negative refcount on shared buffer: " << *buffer;
365 ++group->refcount;
375 group->refcount = 2;
  /external/dnsmasq/src/
forward.c 920 if (daemon->randomsocks[i].refcount == 0)
925 daemon->randomsocks[i].refcount = 1;
934 if (daemon->randomsocks[j].refcount != 0 &&
936 daemon->randomsocks[j].refcount != 0xffff)
939 daemon->randomsocks[j].refcount++;
949 if (f->rfd4 && --(f->rfd4->refcount) == 0)
956 if (f->rfd6 && --(f->rfd6->refcount) == 0)
  /external/compiler-rt/lib/BlocksRuntime/
runtime.c 246 _Byref_flag_initial_value = BLOCK_IS_GC; // no refcount
284 /* Copy, or bump refcount, of a block. If really copying, call the copy helper if present. */
303 // Tell collector to hang on this - it will bump the GC refcount version
317 // reset refcount
328 // Under GC want allocation with refcount 1 so we ask for "true" if wantsOne
335 // reset refcount
416 int refcount; local
427 refcount = shared_struct->flags & BLOCK_REFCOUNT_MASK;
428 if (refcount <= 0) {
467 // Tell GC we no longer have our own refcounts. GC will decr its refcount
    [all...]
  /external/honggfuzz/third_party/android/libBlocksRuntime/
runtime.c 246 _Byref_flag_initial_value = BLOCK_IS_GC; // no refcount
284 /* Copy, or bump refcount, of a block. If really copying, call the copy helper if present. */
303 // Tell collector to hang on this - it will bump the GC refcount version
317 // reset refcount
328 // Under GC want allocation with refcount 1 so we ask for "true" if wantsOne
335 // reset refcount
416 int refcount; local
427 refcount = shared_struct->flags & BLOCK_REFCOUNT_MASK;
428 if (refcount <= 0) {
467 // Tell GC we no longer have our own refcounts. GC will decr its refcount
    [all...]
  /external/libdrm/radeon/
bof.c 58 object->refcount = 1;
374 bof->refcount++;
383 if (--bof->refcount > 0)
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_tracker.c 373 srf->refcount = 1;
519 srf->refcount++;
526 if (srf == NULL || --srf->refcount) {

Completed in 979 milliseconds

1 23 4 5 6 7 8 9