HomeSort by relevance Sort by last modified time
    Searched refs:bmap (Results 1 - 25 of 33) 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)
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
BitmapCaller.java 22 public void available(Bitmap bmap);
StyleChooser.java 62 public void available(Bitmap bmap) {
64 if (bmap == null) {
67 button.setImageBitmap(bmap);
  /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/Camera2/src/com/android/camera/crop/
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...]
CropMath.java 228 * @param bmap bitmap whose size to check
231 public static int getBitmapSize(Bitmap bmap) {
232 return bmap.getRowBytes() * bmap.getHeight();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ImageLoader.java 389 Bitmap bmap = loadConstrainedBitmap(uri, context, maxSideLength, originalBounds, false); local
390 if (bmap != null) {
391 bmap = orientBitmap(bmap, orientation);
392 if (bmap.getConfig()!= Bitmap.Config.ARGB_8888){
393 bmap = bmap.copy( Bitmap.Config.ARGB_8888,true);
396 return bmap;
430 Bitmap bmap = null; local
434 bmap = loadDownsampledBitmap(context, sourceUri, sampleSize)
475 Bitmap bmap = null; local
    [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...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropMath.java 230 * @param bmap bitmap whose size to check
233 public static int getBitmapSize(Bitmap bmap) {
234 return bmap.getRowBytes() * bmap.getHeight();
  /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/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
wgl.c 407 unsigned char *bmap; local
437 /* Unselect our bmap object */
442 bmap = malloc(numBytes);
445 res = GetDIBits(bitDevice, bitObject, 0, bmapHeight, bmap,
454 bmap);
458 /* Destroy the bmap object */
462 free(bmap);
  /external/mesa3d/src/mesa/drivers/windows/gdi/
wgl.c 407 unsigned char *bmap; local
437 /* Unselect our bmap object */
442 bmap = malloc(numBytes);
445 res = GetDIBits(bitDevice, bitObject, 0, bmapHeight, bmap,
454 bmap);
458 /* Destroy the bmap object */
462 free(bmap);
  /external/e2fsprogs/debugfs/
debug_cmds.ct 149 bmap;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMathUtils.java 389 Bitmap bmap = image; local
392 bmap = applyFullGeometryMatrix(bmap, holder);
393 if (bmap != image) {
398 return bmap;
  /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;
  /frameworks/base/packages/WallpaperCropper/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...]
  /packages/apps/Camera2/src/com/android/camera/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...]

Completed in 2178 milliseconds

1 2