HomeSort by relevance Sort by last modified time
    Searched full:bmap (Results 1 - 25 of 194) sorted by null

1 2 3 4 5 6 7 8

  /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)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/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/e2fsprogs/lib/ext2fs/
bitmaps.c 127 ext2fs_generic_bitmap bmap; local
147 end, real_end, descr, &bmap);
150 bmap->cluster_bits = 0;
151 *ret = bmap;
157 ext2fs_generic_bitmap bmap = bitmap; local
159 if (!EXT2FS_IS_64_BITMAP(bmap))
162 return bmap->cluster_bits;
207 ext2fs_inode_bitmap bmap)
210 new_end, new_real_end, bmap));
214 ext2fs_inode_bitmap bmap)
    [all...]
gen_bitmap64.c 222 fprintf(stderr, "%16lu mark bmap\n%16lu unmark_bmap\n",
244 void ext2fs_free_generic_bmap(ext2fs_generic_bitmap bmap)
246 if (!bmap)
249 if (EXT2FS_IS_32_BITMAP(bmap)) {
250 ext2fs_free_generic_bitmap(bmap);
254 if (!EXT2FS_IS_64_BITMAP(bmap))
259 ext2fs_print_bmap_statistics(bmap);
260 bmap->bitmap_ops->print_stats(bmap);
264 bmap->bitmap_ops->free_bmap(bmap)
761 ext2fs_block_bitmap cmap, bmap; local
    [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...]
check_desc.c 35 ext2fs_block_bitmap bmap; local
48 retval = ext2fs_allocate_subcluster_bitmap(fs, "check_desc map", &bmap);
53 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 39 ext2fs_block_bitmap bmap, int rem_grp,
59 bmap, &first_free) == 0)
70 bmap, &first_free) == 0)
74 bmap, &first_free) == 0)
77 if (ext2fs_get_free_blocks2(fs, 0, last_blk, elem_size, bmap,
85 ext2fs_block_bitmap bmap)
95 if (!bmap)
96 bmap = fs->block_map;
112 1, bmap, &start_blk);
142 start_blk = flexbg_offset(fs, group, prev_block, bmap,
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_TCPOPTSTRIP.h 22 #define tcpoptstrip_set_bit(bmap,idx) (bmap[(idx) >> 5] |= 1U << (idx & 31))
23 #define tcpoptstrip_test_bit(bmap,idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
  /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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-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...]
  /development/ndk/platforms/android-21/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/r10/platforms/android-21/arch-arm/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/r10/platforms/android-21/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/r10/platforms/android-21/arch-mips/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/r10/platforms/android-21/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/r10/platforms/android-21/arch-x86/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/r10/platforms/android-21/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)
  /prebuilts/ndk/r10/platforms/android-23/arch-arm/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/r10/platforms/android-23/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/r10/platforms/android-23/arch-mips/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/r10/platforms/android-23/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/r10/platforms/android-23/arch-x86/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/r10/platforms/android-23/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)

Completed in 562 milliseconds

1 2 3 4 5 6 7 8