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

1 2

  /external/iptables/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/e2fsprogs/lib/ext2fs/
check_desc.c 34 ext2fs_block_bitmap bmap; local
44 retval = ext2fs_allocate_block_bitmap(fs, "check_desc map", &bmap);
49 ext2fs_reserve_super_and_bgd(fs, i, bmap);
65 ext2fs_test_block_bitmap(bmap, blk)) {
69 ext2fs_mark_block_bitmap(bmap, blk);
76 ext2fs_test_block_bitmap(bmap, blk)) {
80 ext2fs_mark_block_bitmap(bmap, blk);
93 if (ext2fs_test_block_bitmap(bmap, b)) {
97 ext2fs_mark_block_bitmap(bmap, b);
101 ext2fs_free_block_bitmap(bmap);
    [all...]
alloc_sb.c 45 ext2fs_block_bitmap bmap)
60 ext2fs_mark_block_bitmap(bmap, super_blk);
63 if (fs->super->s_reserved_gdt_blocks && fs->block_map == bmap)
67 ext2fs_mark_block_bitmap(bmap,
71 ext2fs_mark_block_bitmap(bmap, new_desc_blk);
alloc_tables.c 37 ext2fs_block_bitmap bmap, int offset, int size,
58 if (ext2fs_test_block_bitmap_range(bmap, start_blk + elem_size,
70 if (ext2fs_get_free_blocks(fs, start_blk, last_blk, 1, bmap,
75 bmap, &first_free))
82 ext2fs_block_bitmap bmap)
92 if (!bmap)
93 bmap = fs->block_map;
110 1, bmap, &start_blk);
125 start_blk = flexbg_offset(fs, group, prev_block, bmap,
132 1, bmap, &new_blk)
    [all...]
bitmaps.c 120 ext2fs_inode_bitmap bmap)
123 new_end, new_real_end, bmap));
127 ext2fs_block_bitmap bmap)
130 new_end, new_real_end, bmap));
149 errcode_t ext2fs_set_inode_bitmap_range(ext2fs_inode_bitmap bmap,
153 return (ext2fs_set_generic_bitmap_range(bmap,
158 errcode_t ext2fs_get_inode_bitmap_range(ext2fs_inode_bitmap bmap,
162 return (ext2fs_get_generic_bitmap_range(bmap,
167 errcode_t ext2fs_set_block_bitmap_range(ext2fs_block_bitmap bmap,
171 return (ext2fs_set_generic_bitmap_range(bmap,
    [all...]
gen_bitmap.c 225 ext2fs_generic_bitmap bmap)
231 if (!bmap || (bmap->magic != magic))
238 if (new_end > bmap->end) {
239 bitno = bmap->real_end;
242 for (; bitno > bmap->end; bitno--)
243 ext2fs_clear_bit(bitno - bmap->start, bmap->bitmap);
245 if (new_real_end == bmap->real_end) {
246 bmap->end = new_end
    [all...]
imager.c 280 ext2fs_generic_bitmap bmap; local
293 bmap = fs->inode_map;
304 bmap = fs->block_map;
317 retval = ext2fs_get_generic_bitmap_range(bmap,
357 ext2fs_generic_bitmap bmap; local
370 bmap = fs->inode_map;
381 bmap = fs->block_map;
399 retval = ext2fs_set_generic_bitmap_range(bmap,
Android.mk 14 bmap.c \
ext2fs.h 584 ext2fs_block_bitmap bmap);
602 ext2fs_block_bitmap bmap);
674 ext2fs_inode_bitmap bmap);
676 ext2fs_block_bitmap bmap);
681 extern errcode_t ext2fs_set_inode_bitmap_range(ext2fs_inode_bitmap bmap,
684 extern errcode_t ext2fs_get_inode_bitmap_range(ext2fs_inode_bitmap bmap,
687 extern errcode_t ext2fs_set_block_bitmap_range(ext2fs_block_bitmap bmap,
690 extern errcode_t ext2fs_get_block_bitmap_range(ext2fs_block_bitmap bmap,
717 /* bmap.c */
934 ext2fs_generic_bitmap bmap);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
StyleChooser.java 60 Bitmap bmap = request.getBitmap();
61 if (bmap == null) {
64 button.setImageBitmap(bmap);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ImageLoader.java 449 Bitmap bmap = null; local
456 bmap = BitmapFactory.decodeStream(is, null, options);
464 bmap = null;
471 return bmap;
494 Bitmap bmap = null; local
498 bmap = BitmapFactory.decodeResource(
506 bmap = null;
511 return bmap;
583 public void saveToUri(Bitmap bmap, Uri uri, final String outputFormat,
593 if (bmap == null || out == null)
    [all...]
  /external/e2fsprogs/misc/
tune2fs.c 1015 * Fill in the block bitmap bmap with the information regarding the
1019 ext2fs_block_bitmap bmap)
1048 ext2fs_mark_block_bitmap(bmap, j);
1093 static int move_block(ext2_filsys fs, ext2fs_block_bitmap bmap)
1109 if (!ext2fs_test_block_bitmap(bmap, blk))
1187 ext2fs_block_bitmap bmap = (ext2fs_block_bitmap) priv_data; variable
1189 if (!ext2fs_test_block_bitmap(bmap, *block_nr))
1203 static int inode_scan_and_fix(ext2_filsys fs, ext2fs_block_bitmap bmap)
1239 ext2fs_test_block_bitmap(bmap, inode.i_file_acl)) {
1259 process_block, bmap);
1453 ext2fs_block_bitmap bmap; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageCG.cpp 115 RetainPtr<CGContextRef> bmap(AdoptCF, CGBitmapContextCreate(pixel, 1, 1, 8, sizeof(pixel), deviceRGBColorSpaceRef(),
117 if (!bmap)
119 GraphicsContext(bmap.get()).setCompositeOperation(CompositeCopy);
121 CGContextDrawImage(bmap.get(), dst, image);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropMath.java 231 * @param bmap bitmap whose size to check
234 public static int getBitmapSize(Bitmap bmap) {
235 return bmap.getRowBytes() * bmap.getHeight();
CropActivity.java 264 Bitmap bmap = CropLoader.getConstrainedBitmap(uri, mContext, mBitmapSize, local
267 return bmap;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
FilterIconButton.java 151 Bitmap bmap = request.getBitmap(); local
152 if (bmap == null) {
158 mIconBitmap = bmap;
  /external/e2fsprogs/resize/
resize2fs.c 684 ext2fs_block_bitmap bmap)
699 ext2fs_reserve_super_and_bgd(fs, i, bmap);
707 ext2fs_mark_block_bitmap(bmap, b);
712 ext2fs_mark_block_bitmap(bmap,
718 ext2fs_mark_block_bitmap(bmap,
1124 retval = ext2fs_create_extent_table(&rfs->bmap, 0);
    [all...]
resize2fs.h 93 ext2_extent bmap; member in struct:ext2_resize_struct
  /external/e2fsprogs/debugfs/
debug_cmds.ct 149 bmap;
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/exif/
ExifInterfaceTest.java 379 Bitmap bmap = mInterface.getThumbnailBitmap(); local
380 assertTrue(getImageTitle(), bmap != null);
400 bmap = mInterface.getThumbnailBitmap();
401 assertTrue(getImageTitle(), bmap != null);
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglWindowsApi.cpp 105 explicit SrfcInfo(HBITMAP bmap);
119 SrfcInfo::SrfcInfo(HBITMAP bmap):m_hwnd(NULL),
123 m_bmap = bmap;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifInterface.java 811 * @param bmap a bitmap to compress and write exif into.
816 public void writeExif(Bitmap bmap, OutputStream exifOutStream) throws IOException {
817 if (bmap == null || exifOutStream == null) {
821 bmap.compress(Bitmap.CompressFormat.JPEG, 90, s);
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastidct.cpp 1863 Int bmap; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java     [all...]
  /external/kernel-headers/original/linux/
fs.h 322 #define FIBMAP _IO(0x00,1) /* bmap access */
323 #define FIGETBSZ _IO(0x00,2) /* get the block size used for bmap */
602 sector_t (*bmap)(struct address_space *, sector_t); member in struct:address_space_operations
    [all...]

Completed in 429 milliseconds

1 2