/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/netfilter/ |
xt_TCPOPTSTRIP.h | 4 #define tcpoptstrip_set_bit(bmap, idx) \ 5 (bmap[(idx) >> 5] |= 1U << (idx & 31)) 6 #define tcpoptstrip_test_bit(bmap, idx) \ 7 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter/ |
xt_TCPOPTSTRIP.h | 4 #define tcpoptstrip_set_bit(bmap, idx) \ 5 (bmap[(idx) >> 5] |= 1U << (idx & 31)) 6 #define tcpoptstrip_test_bit(bmap, idx) \ 7 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
|
/external/iptables/include/linux/netfilter/ |
xt_TCPOPTSTRIP.h | 6 #define tcpoptstrip_set_bit(bmap, idx) \ 7 (bmap[(idx) >> 5] |= 1U << (idx & 31)) 8 #define tcpoptstrip_test_bit(bmap, idx) \ 9 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
xt_TCPOPTSTRIP.h | 6 #define tcpoptstrip_set_bit(bmap, idx) \ 7 (bmap[(idx) >> 5] |= 1U << (idx & 31)) 8 #define tcpoptstrip_test_bit(bmap, idx) \ 9 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
|
/external/e2fsprogs/lib/ext2fs/ |
bitmaps.c | 126 ext2fs_generic_bitmap bmap; local 146 end, real_end, descr, &bmap); 149 bmap->cluster_bits = 0; 150 *ret = bmap; 156 ext2fs_generic_bitmap bmap = bitmap; local 158 if (!EXT2FS_IS_64_BITMAP(bmap)) 161 return bmap->cluster_bits; 206 ext2fs_inode_bitmap bmap) 209 new_end, new_real_end, bmap)); 213 ext2fs_inode_bitmap bmap) [all...] |
bmap64.h | 56 #define EXT2FS_IS_32_BITMAP(bmap) \ 57 (((bmap)->magic == EXT2_ET_MAGIC_GENERIC_BITMAP) || \ 58 ((bmap)->magic == EXT2_ET_MAGIC_BLOCK_BITMAP) || \ 59 ((bmap)->magic == EXT2_ET_MAGIC_INODE_BITMAP)) 61 #define EXT2FS_IS_64_BITMAP(bmap) \ 62 (((bmap)->magic == EXT2_ET_MAGIC_GENERIC_BITMAP64) || \ 63 ((bmap)->magic == EXT2_ET_MAGIC_BLOCK_BITMAP64) || \ 64 ((bmap)->magic == EXT2_ET_MAGIC_INODE_BITMAP64)) 68 /* Generic bmap operators */ 69 errcode_t (*new_bmap)(ext2_filsys fs, ext2fs_generic_bitmap bmap); [all...] |
gen_bitmap64.c | 221 fprintf(stderr, "%16lu mark bmap\n%16lu unmark_bmap\n", 243 void ext2fs_free_generic_bmap(ext2fs_generic_bitmap bmap) 245 if (!bmap) 248 if (EXT2FS_IS_32_BITMAP(bmap)) { 249 ext2fs_free_generic_bitmap(bmap); 253 if (!EXT2FS_IS_64_BITMAP(bmap)) 258 ext2fs_print_bmap_statistics(bmap); 259 bmap->bitmap_ops->print_stats(bmap); 263 bmap->bitmap_ops->free_bmap(bmap) 759 ext2fs_block_bitmap cmap, bmap; local [all...] |
check_desc.c | 34 ext2fs_block_bitmap bmap; local 47 retval = ext2fs_allocate_subcluster_bitmap(fs, "check_desc map", &bmap); 52 ext2fs_reserve_super_and_bgd(fs, i, bmap); 66 ext2fs_test_block_bitmap2(bmap, blk)) { 70 ext2fs_mark_block_bitmap2(bmap, blk); 77 ext2fs_test_block_bitmap2(bmap, blk)) { 81 ext2fs_mark_block_bitmap2(bmap, blk); 94 if (ext2fs_test_block_bitmap2(bmap, b)) { 98 ext2fs_mark_block_bitmap2(bmap, b); 102 ext2fs_free_block_bitmap(bmap); [all...] |
alloc_tables.c | 38 ext2fs_block_bitmap bmap, int rem_grp, 56 if (start_blk && ext2fs_test_block_bitmap_range2(bmap, start_blk, 68 bmap, &first_free) == 0) 72 bmap, &first_free) == 0) 75 if (ext2fs_get_free_blocks2(fs, 0, last_blk, elem_size, bmap, 83 ext2fs_block_bitmap bmap) 94 if (!bmap) 95 bmap = fs->block_map; 112 1, bmap, &start_blk); 128 start_blk = flexbg_offset(fs, group, prev_block, bmap, [all...] |
gen_bitmap.c | 41 #define EXT2FS_IS_32_BITMAP(bmap) \ 42 (((bmap)->magic == EXT2_ET_MAGIC_GENERIC_BITMAP) || \ 43 ((bmap)->magic == EXT2_ET_MAGIC_BLOCK_BITMAP) || \ 44 ((bmap)->magic == EXT2_ET_MAGIC_INODE_BITMAP)) 46 #define EXT2FS_IS_64_BITMAP(bmap) \ 47 (((bmap)->magic == EXT2_ET_MAGIC_GENERIC_BITMAP64) || \ 48 ((bmap)->magic == EXT2_ET_MAGIC_BLOCK_BITMAP64) || \ 49 ((bmap)->magic == EXT2_ET_MAGIC_INODE_BITMAP64)) 304 ext2fs_generic_bitmap bmap) 310 if (!bmap || (bmap->magic != magic) [all...] |
alloc_sb.c | 45 ext2fs_block_bitmap bmap) 61 ext2fs_mark_block_bitmap2(bmap, super_blk); 64 ext2fs_mark_block_bitmap2(bmap, 0); 67 if (fs->super->s_reserved_gdt_blocks && fs->block_map == bmap) 73 ext2fs_mark_block_bitmap_range2(bmap, old_desc_blk, num_blocks); 76 ext2fs_mark_block_bitmap2(bmap, new_desc_blk);
|
blkmap64_ba.c | 123 static errcode_t ba_resize_bmap(ext2fs_generic_bitmap bmap, 126 ext2fs_ba_private bp = (ext2fs_ba_private) bmap->private; 135 if (new_end > bmap->end) { 136 bitno = bmap->real_end; 139 for (; bitno > bmap->end; bitno--) 140 ext2fs_clear_bit64(bitno - bmap->start, bp->bitarray); 142 if (new_real_end == bmap->real_end) { 143 bmap->end = new_end; 147 size = ((bmap->real_end - bmap->start) / 8) + 1 [all...] |
ext2fsP.h | 116 ext2fs_generic_bitmap *bmap); 118 extern void ext2fs_free_generic_bmap(ext2fs_generic_bitmap bmap); 123 extern errcode_t ext2fs_resize_generic_bmap(ext2fs_generic_bitmap bmap,
|
Makefile.pq | 13 bmap.obj \
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/include/isl/ |
map.h | 45 unsigned isl_basic_map_n_in(const struct isl_basic_map *bmap); 46 unsigned isl_basic_map_n_out(const struct isl_basic_map *bmap); 47 unsigned isl_basic_map_n_param(const struct isl_basic_map *bmap); 48 unsigned isl_basic_map_n_div(const struct isl_basic_map *bmap); 49 unsigned isl_basic_map_total_dim(const struct isl_basic_map *bmap); 50 unsigned isl_basic_map_dim(__isl_keep isl_basic_map *bmap, 58 isl_ctx *isl_basic_map_get_ctx(__isl_keep isl_basic_map *bmap); 60 __isl_give isl_space *isl_basic_map_get_space(__isl_keep isl_basic_map *bmap); 63 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap, 67 __isl_keep isl_basic_map *bmap); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/ |
map.h | 45 unsigned isl_basic_map_n_in(const struct isl_basic_map *bmap); 46 unsigned isl_basic_map_n_out(const struct isl_basic_map *bmap); 47 unsigned isl_basic_map_n_param(const struct isl_basic_map *bmap); 48 unsigned isl_basic_map_n_div(const struct isl_basic_map *bmap); 49 unsigned isl_basic_map_total_dim(const struct isl_basic_map *bmap); 50 unsigned isl_basic_map_dim(__isl_keep isl_basic_map *bmap, 58 isl_ctx *isl_basic_map_get_ctx(__isl_keep isl_basic_map *bmap); 60 __isl_give isl_space *isl_basic_map_get_space(__isl_keep isl_basic_map *bmap); 63 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap, 67 __isl_keep isl_basic_map *bmap); [all...] |
/bionic/libc/kernel/uapi/linux/netfilter/ |
xt_TCPOPTSTRIP.h | 22 #define tcpoptstrip_set_bit(bmap, idx) (bmap[(idx) >> 5] |= 1U << (idx & 31)) 24 #define tcpoptstrip_test_bit(bmap, idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
|
/development/ndk/platforms/android-L/include/linux/netfilter/ |
xt_TCPOPTSTRIP.h | 22 #define tcpoptstrip_set_bit(bmap, idx) (bmap[(idx) >> 5] |= 1U << (idx & 31)) 24 #define tcpoptstrip_test_bit(bmap, idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
|
/prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/linux/netfilter/ |
xt_TCPOPTSTRIP.h | 22 #define tcpoptstrip_set_bit(bmap, idx) (bmap[(idx) >> 5] |= 1U << (idx & 31)) 24 #define tcpoptstrip_test_bit(bmap, idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
|
/prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/netfilter/ |
xt_TCPOPTSTRIP.h | 22 #define tcpoptstrip_set_bit(bmap, idx) (bmap[(idx) >> 5] |= 1U << (idx & 31)) 24 #define tcpoptstrip_test_bit(bmap, idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
|
/prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/netfilter/ |
xt_TCPOPTSTRIP.h | 22 #define tcpoptstrip_set_bit(bmap, idx) (bmap[(idx) >> 5] |= 1U << (idx & 31)) 24 #define tcpoptstrip_test_bit(bmap, idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/ |
StyleChooser.java | 62 public void available(Bitmap bmap) { 64 if (bmap == null) { 67 button.setImageBitmap(bmap);
|
BitmapCaller.java | 22 public void available(Bitmap bmap);
|
/packages/apps/Camera2/src/com/android/camera/util/ |
ImageLoader.java | 328 Bitmap bmap = loadConstrainedBitmap(uri, context, maxSideLength, originalBounds, false); local 329 if (bmap != null) { 330 bmap = orientBitmap(bmap, orientation); 331 if (bmap.getConfig()!= Bitmap.Config.ARGB_8888){ 332 bmap = bmap.copy( Bitmap.Config.ARGB_8888,true); 335 return bmap; 348 Bitmap bmap = null; local 352 bmap = loadDownsampledBitmap(context, sourceUri, sampleSize) 393 Bitmap bmap = null; local [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/ |
ImageLoader.java | 405 Bitmap bmap = loadConstrainedBitmap(uri, context, maxSideLength, originalBounds, false); local 406 if (bmap != null) { 407 bmap = orientBitmap(bmap, orientation); 408 if (bmap.getConfig()!= Bitmap.Config.ARGB_8888){ 409 bmap = bmap.copy( Bitmap.Config.ARGB_8888,true); 412 return bmap; 446 Bitmap bmap = null; local 450 bmap = loadDownsampledBitmap(context, sourceUri, sampleSize) 491 Bitmap bmap = null; local [all...] |