HomeSort by relevance Sort by last modified time
    Searched defs:bmap (Results 1 - 22 of 22) sorted by null

  /external/e2fsprogs/lib/ext2fs/
check_desc.c 34 ext2fs_block_bitmap bmap; local
47 retval = ext2fs_allocate_subcluster_bitmap(fs, "check_desc map", &bmap);
52 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...]
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,
bitmaps.c 126 ext2fs_generic_bitmap bmap; local
146 end, real_end, descr, &bmap);
149 bmap->cluster_bits = 0;
150 *ret = bmap;
156 ext2fs_generic_bitmap bmap = bitmap; local
158 if (!EXT2FS_IS_64_BITMAP(bmap))
161 return bmap->cluster_bits;
206 ext2fs_inode_bitmap bmap)
209 new_end, new_real_end, bmap));
213 ext2fs_inode_bitmap bmap)
    [all...]
gen_bitmap64.c 221 fprintf(stderr, "%16lu mark bmap\n%16lu unmark_bmap\n",
243 void ext2fs_free_generic_bmap(ext2fs_generic_bitmap bmap)
245 if (!bmap)
248 if (EXT2FS_IS_32_BITMAP(bmap)) {
249 ext2fs_free_generic_bitmap(bmap);
253 if (!EXT2FS_IS_64_BITMAP(bmap))
258 ext2fs_print_bmap_statistics(bmap);
259 bmap->bitmap_ops->print_stats(bmap);
263 bmap->bitmap_ops->free_bmap(bmap)
759 ext2fs_block_bitmap cmap, bmap; local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
fuse.h 230 int (*bmap)(const char*, size_t blocksize, uint64_t* idx); member in struct:fuse_operations
  /external/e2fsprogs/resize/
resize2fs.h 109 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);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastidct.cpp 1863 Int bmap; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
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...]
  /external/chromium_org/third_party/webrtc/modules/video_render/windows/
video_render_direct3d9.cc 1025 BITMAP bmap; local
1029 GetObject((HBITMAP)bitMap, sizeof(bmap), &bmap);
1035 pbi.bmiHeader.biWidth = bmap.bmWidth;
1036 pbi.bmiHeader.biHeight = bmap.bmHeight;
1038 pbi.bmiHeader.biBitCount = bmap.bmBitsPixel;
1040 pbi.bmiHeader.biSizeImage = bmap.bmWidth * bmap.bmHeight * 3;
1041 srcPtr = new unsigned char[bmap.bmWidth * bmap.bmHeight * 4]
    [all...]
  /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...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropActivity.java 267 Bitmap bmap = ImageLoader.loadConstrainedBitmap(uri, mContext, mBitmapSize, local
270 return 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;
  /external/e2fsprogs/misc/
tune2fs.c 1472 ext2fs_block_bitmap bmap = (ext2fs_block_bitmap) priv_data; variable
1741 ext2fs_block_bitmap bmap; local
    [all...]
  /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...]
  /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...]
  /packages/apps/Launcher3/WallpaperPicker/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/Mms/src/com/android/mms/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...]
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.2.1/
groovy-all-2.2.1.jar 

Completed in 875 milliseconds