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

1 2 3 4 5 6 7

  /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 7 #define tcpoptstrip_set_bit(bmap, idx) \
8 (bmap[(idx) >> 5] |= 1U << (idx & 31))
9 #define tcpoptstrip_test_bit(bmap, idx) \
10 (((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...]
gen_bitmap.c 42 #define EXT2FS_IS_32_BITMAP(bmap) \
43 (((bmap)->magic == EXT2_ET_MAGIC_GENERIC_BITMAP) || \
44 ((bmap)->magic == EXT2_ET_MAGIC_BLOCK_BITMAP) || \
45 ((bmap)->magic == EXT2_ET_MAGIC_INODE_BITMAP))
47 #define EXT2FS_IS_64_BITMAP(bmap) \
48 (((bmap)->magic == EXT2_ET_MAGIC_GENERIC_BITMAP64) || \
49 ((bmap)->magic == EXT2_ET_MAGIC_BLOCK_BITMAP64) || \
50 ((bmap)->magic == EXT2_ET_MAGIC_INODE_BITMAP64))
305 ext2fs_generic_bitmap bmap)
311 if (!bmap || (bmap->magic != magic)
    [all...]
alloc_sb.c 46 ext2fs_block_bitmap bmap)
62 ext2fs_mark_block_bitmap2(bmap, super_blk);
65 ext2fs_mark_block_bitmap2(bmap, 0);
72 ext2fs_mark_block_bitmap_range2(bmap, old_desc_blk, num_blocks);
75 ext2fs_mark_block_bitmap2(bmap, new_desc_blk);
blkmap64_ba.c 124 static errcode_t ba_resize_bmap(ext2fs_generic_bitmap bmap,
127 ext2fs_ba_private bp = (ext2fs_ba_private) bmap->private;
136 if (new_end > bmap->end) {
137 bitno = bmap->real_end;
140 for (; bitno > bmap->end; bitno--)
141 ext2fs_clear_bit64(bitno - bmap->start, bp->bitarray);
143 if (new_real_end == bmap->real_end) {
144 bmap->end = new_end;
148 size = ((bmap->real_end - bmap->start) / 8) + 1
    [all...]
ext2fsP.h 140 ext2fs_generic_bitmap *bmap);
142 extern void ext2fs_free_generic_bmap(ext2fs_generic_bitmap bmap);
147 extern errcode_t ext2fs_resize_generic_bmap(ext2fs_generic_bitmap bmap,
Makefile.pq 13 bmap.obj \
imager.c 286 ext2fs_generic_bitmap bmap; local
299 bmap = fs->inode_map;
309 bmap = fs->block_map;
321 retval = ext2fs_get_generic_bmap_range(bmap, itr,
361 ext2fs_generic_bitmap bmap; local
374 bmap = fs->inode_map;
384 bmap = fs->block_map;
401 retval = ext2fs_set_generic_bmap_range(bmap, itr,
  /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.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...]
lp.h 29 enum isl_lp_result isl_basic_map_solve_lp(struct isl_basic_map *bmap, int max,
constraint.h 36 int isl_basic_map_foreach_constraint(__isl_keep isl_basic_map *bmap,
50 __isl_take isl_basic_map *bmap, __isl_take isl_constraint *constraint);
59 __isl_keep isl_basic_map *bmap, enum isl_dim_type type, int pos,
  /external/e2fsprogs/misc/
e2fuzz.c 63 ext2fs_block_bitmap bmap; member in struct:find_block
77 ext2fs_mark_block_bitmap2(fb->bmap, *blocknr);
84 static errcode_t find_metadata_blocks(ext2_filsys fs, ext2fs_block_bitmap bmap,
100 ext2fs_reserve_super_and_bgd(fs, i, bmap);
104 ext2fs_mark_block_bitmap2(bmap, b);
108 ext2fs_mark_block_bitmap2(bmap, b);
112 ext2fs_mark_block_bitmap_range2(bmap, c,
118 fb.bmap = bmap;
134 ext2fs_mark_block_bitmap2(bmap, b)
    [all...]
  /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/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...]
  /external/webrtc/webrtc/modules/video_render/windows/
video_render_direct3d9.cc 1014 BITMAP bmap; local
1018 GetObject((HBITMAP)bitMap, sizeof(bmap), &bmap);
1024 pbi.bmiHeader.biWidth = bmap.bmWidth;
1025 pbi.bmiHeader.biHeight = bmap.bmHeight;
1027 pbi.bmiHeader.biBitCount = bmap.bmBitsPixel;
1029 pbi.bmiHeader.biSizeImage = bmap.bmWidth * bmap.bmHeight * 3;
1030 srcPtr = new unsigned char[bmap.bmWidth * bmap.bmHeight * 4]
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
BitmapUtils.java 42 * @param bmap a {@link Bitmap} to generate the histograms for.
46 public static int[] calcHistograms(RenderScript rs, Bitmap bmap) {
51 Allocation input = Allocation.createFromBitmap(rs, bmap);
  /prebuilts/go/darwin-x86/src/runtime/
hashmap.go 79 // data offset should be the size of the bmap struct, but needs to be
83 b bmap
128 // However, bmap.overflow is a pointer. In order to keep overflow buckets
134 overflow *[]*bmap
135 oldoverflow *[]*bmap
138 nextOverflow *bmap
142 type bmap struct { type
163 bptr *bmap // current bucket
164 overflow *[]*bmap // keeps overflow buckets of hmap.buckets alive
165 oldoverflow *[]*bmap // keeps overflow buckets of hmap.oldbuckets aliv
    [all...]

Completed in 1844 milliseconds

1 2 3 4 5 6 7