/external/e2fsprogs/lib/ext2fs/ |
D | alloc_stats.c | 18 int inuse, int isdir) in ext2fs_inode_alloc_stats2() argument 29 if (inuse > 0) in ext2fs_inode_alloc_stats2() 33 ext2fs_bg_free_inodes_count_set(fs, group, ext2fs_bg_free_inodes_count(fs, group) - inuse); in ext2fs_inode_alloc_stats2() 35 ext2fs_bg_used_dirs_count_set(fs, group, ext2fs_bg_used_dirs_count(fs, group) + inuse); in ext2fs_inode_alloc_stats2() 51 fs->super->s_free_inodes_count -= inuse; in ext2fs_inode_alloc_stats2() 56 void ext2fs_inode_alloc_stats(ext2_filsys fs, ext2_ino_t ino, int inuse) in ext2fs_inode_alloc_stats() argument 58 ext2fs_inode_alloc_stats2(fs, ino, inuse, 0); in ext2fs_inode_alloc_stats() 61 void ext2fs_block_alloc_stats2(ext2_filsys fs, blk64_t blk, int inuse) in ext2fs_block_alloc_stats2() argument 72 if (inuse > 0) in ext2fs_block_alloc_stats2() 76 ext2fs_bg_free_blocks_count_set(fs, group, ext2fs_bg_free_blocks_count(fs, group) - inuse); in ext2fs_block_alloc_stats2() [all …]
|
D | gen_bitmap64.c | 184 double inuse; in ext2fs_print_bmap_statistics() local 208 inuse = (double) now.tv_sec + \ in ext2fs_print_bmap_statistics() 210 inuse -= (double) stats->created.tv_sec + \ in ext2fs_print_bmap_statistics() 238 stats->mark_back, mark_back_perc, inuse); in ext2fs_print_bmap_statistics()
|
D | ext2fs.h | 263 void (*block_alloc_stats)(ext2_filsys fs, blk64_t blk, int inuse); 675 int inuse), 678 int inuse)); 681 void ext2fs_inode_alloc_stats(ext2_filsys fs, ext2_ino_t ino, int inuse); 683 int inuse, int isdir); 684 void ext2fs_block_alloc_stats(ext2_filsys fs, blk_t blk, int inuse); 685 void ext2fs_block_alloc_stats2(ext2_filsys fs, blk64_t blk, int inuse);
|
/external/zopfli/src/zopfli/ |
D | katajainen.c | 39 char inuse; /* Tracking for garbage collection. */ member 58 node->inuse = 1; in InitNode() 73 pool->nodes[i].inuse = 0; in GetFreeNode() 79 node->inuse = 1; in GetFreeNode() 85 if (!pool->next->inuse) break; /* Found one. */ in GetFreeNode() 231 pool.nodes[i].inuse = 0; in ZopfliLengthLimitedCodeLengths()
|
/external/android-clat/ |
D | config.c | 228 int inuse = connect(s, (struct sockaddr *) &sin, sizeof(sin)) == 0 && in connect_is_ipv4_address_free() local 234 return !inuse; in connect_is_ipv4_address_free()
|
/external/libvncserver/webclients/java-applet/ssl/ |
D | ss_vncviewer | 726 inuse="" 728 inuse=`netstat -ant | egrep 'LISTEN|WAIT|ESTABLISH|CLOSE' | awk '{print $4}' | sed 's/^.*://'` 730 …inuse=`netstat -an -f inet -P tcp | egrep 'LISTEN|WAIT|ESTABLISH|CLOSE' | awk '{print $1}' | sed '… 732 …inuse=`netstat -ant -f inet | egrep 'LISTEN|WAIT|ESTABLISH|CLOSE' | awk '{print $4}' | sed 's/^.*\… 775 if [ "X$inuse" = "X" ]; then 778 if echo "$inuse" | grep -w $try > /dev/null; then
|
/external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ |
D | ss_vncviewer | 723 inuse="" 725 inuse=`netstat -ant | egrep 'LISTEN|WAIT|ESTABLISH|CLOSE' | awk '{print $4}' | sed 's/^.*://'` 727 …inuse=`netstat -an -f inet -P tcp | egrep 'LISTEN|WAIT|ESTABLISH|CLOSE' | awk '{print $1}' | sed '… 729 …inuse=`netstat -ant -f inet | egrep 'LISTEN|WAIT|ESTABLISH|CLOSE' | awk '{print $4}' | sed 's/^.*\… 772 if [ "X$inuse" = "X" ]; then 775 if echo "$inuse" | grep -w $try > /dev/null; then
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_tile_cache.c | 434 int inuse = 0, pos; in sp_flush_tile_cache() local 447 ++inuse; in sp_flush_tile_cache() 457 debug_printf("flushed tiles in use: %d\n", inuse); in sp_flush_tile_cache()
|
/external/valgrind/VEX/priv/ |
D | ir_opt.c | 181 Bool* inuse; member 194 h->inuse = LibVEX_Alloc_inline(h->size * sizeof(Bool)); in newHHW() 208 if (h->inuse[i] && h->key[i] == key) { in lookupHHW() 227 if (h->inuse[i] && h->key[i] == key) { in addToHHW() 240 if (!h->inuse[i]) continue; in addToHHW() 248 h->inuse = inuse2; in addToHHW() 255 h->inuse[h->used] = True; in addToHHW() 600 if (!h->inuse[j]) in invalidateOverlaps() 609 h->inuse[j] = False; in invalidateOverlaps() 692 env->inuse[j] = False; in redundant_get_removal_BB() [all …]
|
/external/e2fsprogs/e2fsck/ |
D | pass1.c | 2859 static void e2fsck_block_alloc_stats(ext2_filsys fs, blk64_t blk, int inuse) in e2fsck_block_alloc_stats() argument 2864 if (inuse > 0) in e2fsck_block_alloc_stats()
|