HomeSort by relevance Sort by last modified time
    Searched full:bmap (Results 26 - 50 of 186) sorted by null

12 3 4 5 6 7 8

  /prebuilts/ndk/current/platforms/android-24/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/current/platforms/android-24/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/current/platforms/android-24/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/current/platforms/android-24/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/current/platforms/android-24/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/current/platforms/android-24/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)
  /external/e2fsprogs/lib/ext2fs/
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 \
imager.c 285 ext2fs_generic_bitmap bmap; local
298 bmap = fs->inode_map;
308 bmap = fs->block_map;
320 retval = ext2fs_get_generic_bmap_range(bmap, itr,
360 ext2fs_generic_bitmap bmap; local
373 bmap = fs->inode_map;
383 bmap = fs->block_map;
400 retval = ext2fs_set_generic_bmap_range(bmap, itr,
  /prebuilts/go/darwin-x86/src/runtime/
hashmap_fast.go 19 var b *bmap
22 b = (*bmap)(h.buckets)
26 b = (*bmap)(add(h.buckets, (hash&m)*uintptr(t.bucketsize)))
28 oldb := (*bmap)(add(c, (hash&(m>>1))*uintptr(t.bucketsize)))
61 var b *bmap
64 b = (*bmap)(h.buckets)
68 b = (*bmap)(add(h.buckets, (hash&m)*uintptr(t.bucketsize)))
70 oldb := (*bmap)(add(c, (hash&(m>>1))*uintptr(t.bucketsize)))
103 var b *bmap
106 b = (*bmap)(h.buckets
    [all...]
hashmap.go 75 // data offset should be the size of the bmap struct, but needs to be
79 b bmap
116 // However, bmap.overflow is a pointer. In order to keep overflow buckets
123 overflow *[2]*[]*bmap
127 type bmap struct {
145 bptr *bmap // current bucket
146 overflow [2]*[]*bmap // keeps overflow buckets alive
156 func evacuated(b *bmap) bool {
161 func (b *bmap) overflow(t *maptype) *bmap {
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
hashmap_fast.go 19 var b *bmap
22 b = (*bmap)(h.buckets)
26 b = (*bmap)(add(h.buckets, (hash&m)*uintptr(t.bucketsize)))
28 oldb := (*bmap)(add(c, (hash&(m>>1))*uintptr(t.bucketsize)))
61 var b *bmap
64 b = (*bmap)(h.buckets)
68 b = (*bmap)(add(h.buckets, (hash&m)*uintptr(t.bucketsize)))
70 oldb := (*bmap)(add(c, (hash&(m>>1))*uintptr(t.bucketsize)))
103 var b *bmap
106 b = (*bmap)(h.buckets
    [all...]
hashmap.go 75 // data offset should be the size of the bmap struct, but needs to be
79 b bmap
116 // However, bmap.overflow is a pointer. In order to keep overflow buckets
123 overflow *[2]*[]*bmap
127 type bmap struct {
145 bptr *bmap // current bucket
146 overflow [2]*[]*bmap // keeps overflow buckets alive
156 func evacuated(b *bmap) bool {
161 func (b *bmap) overflow(t *maptype) *bmap {
    [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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/
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,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
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/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);

Completed in 1422 milliseconds

12 3 4 5 6 7 8