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

1 2 3 4 5

  /external/libvpx/vpx/src/
vpx_image.c 16 static vpx_image_t *img_alloc_helper(vpx_image_t *img,
104 if (!img)
106 img = (vpx_image_t *)calloc(1, sizeof(vpx_image_t));
108 if (!img)
111 img->self_allocd = 1;
115 memset(img, 0, sizeof(vpx_image_t));
118 img->img_data = img_data;
122 img->img_data = malloc((fmt & VPX_IMG_FMT_PLANAR) ? h * w * bps / 8 : h * s);
123 img->img_data_owner = 1;
126 if (!img->img_data
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
ImageWin.cpp 48 RefPtr<BitmapImage> img = BitmapImage::create(); local
49 img->setData(buffer.release(), true);
50 return img.release();
  /development/simulator/app/
LoadableImage.cpp 57 wxImage img(mName);
72 wxImage img(astr);
75 mWidth = img.GetWidth();
76 mHeight = img.GetHeight();
80 //delete img;
84 mpBitmap = new wxBitmap(img);
86 //delete img;
  /bootable/diskinstaller/
installer.conf 10 filename /data/boot.img
16 filename /data/system.img
23 filename /data/userdata.img
installer.c 197 process_image_node(cnode *img, struct disk_info *dinfo, int test)
209 filename = config_str(img, "filename", NULL);
212 if ((tmp = config_str(img, "offset", NULL)) != NULL)
216 if ((tmp = config_str(img, "partition", NULL)) != NULL) {
219 img->name);
225 tmp, img->name);
231 " processing image %s", pinfo->name, img->name);
238 if ((tmp = config_str(img, "mkfs", NULL)) != NULL) {
243 LOGE("Target partition required for mkfs for '%s'", img->name);
280 LOGE("Filename is required for image %s", img->name)
377 cnode *img; local
    [all...]
  /external/genext2fs/
test-gen.lib 23 ./genext2fs -N 17 -b $blocks -d test -f -q ext2.img
34 ./genext2fs -N 92 -b $blocks -D test/$fname -f ext2.img
40 rm -rf ext2.img test
46 digest=`md5sum ext2.img 2>/dev/null | cut -f 1 -d " "`
50 digest=`md5 ext2.img 2>/dev/null | cut -f 4 -d " "`
test-mount.sh 39 /sbin/e2fsck -fn ext2.img || fail
41 mount -t ext2 -o ro,loop ext2.img mnt || fail
59 /sbin/e2fsck -fn ext2.img || fail
61 mount -t ext2 -o ro,loop ext2.img mnt || fail
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiModelTreeLabelProvider.java 46 Image img = ((ElementDescriptor) element).getIcon(); local
47 if (img != null) {
48 return img;
54 Image img = desc.getIcon(); local
55 if (img != null) {
58 return new ErrorImageComposite(img).createImage();
60 return img;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ImageLoader.java 136 Image img = mLoadedImages.get(filename); local
137 if (img == null) {
142 img = new Image(display, imageStream);
143 if (img == null) {
147 mLoadedImages.put(filename, img);
149 return img;
153 return img;
177 Image img = loadImage(fileName, display); local
179 if (img == null) {
193 return img;
201 Image img = new Image(display, width, height); local
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/dec/
VPXDecoder.cpp 205 vpx_image_t *img = vpx_codec_get_frame((vpx_codec_ctx_t *)mCtx, &iter); local
207 if (img == NULL) {
214 CHECK_EQ(img->fmt, IMG_FMT_I420);
216 int32_t width = img->d_w;
217 int32_t height = img->d_h;
240 const uint8_t *srcLine = (const uint8_t *)img->planes[PLANE_Y];
242 for (size_t i = 0; i < img->d_h; ++i) {
243 memcpy(dst, srcLine, img->d_w);
245 srcLine += img->stride[PLANE_Y];
246 dst += img->d_w
    [all...]
  /build/tools/releasetools/
img_from_target_files 53 print "creating userdata.img..."
61 img = tempfile.NamedTemporaryFile()
66 user_dir, img.name,
76 build_command.append(img.name)
80 assert p.returncode == 0, "build userdata.img image failed"
82 common.CheckSize(img.name, "userdata.img", OPTIONS.info_dict)
83 output_zip.write(img.name, "userdata.img")
84 img.close(
    [all...]
  /external/webkit/WebKit/qt/tests/hybridPixmap/
widget.cpp 68 void Widget::setImage(const QImage& img)
70 ui->lbl4->setPixmap(QPixmap::fromImage(img));
75 QImage img(ui->lbl2->size(), QImage::Format_ARGB32);
77 QPainter p(&img);
80 return img;
104 void Widget::imageSlot(const QImage& img)
106 QCOMPARE(img.size(), ui->lbl3->size());
107 emit pixmapSignal(QPixmap::fromImage(img));
  /external/webkit/WebCore/css/
quirks.css 25 img[align="left"] {
28 img[align="right"] {
  /external/libvpx/vpx/
vpx_image.h 157 * \param[in] img Pointer to storage for descriptor. If this parameter
165 * \return Returns a pointer to the initialized image descriptor. If the img
166 * parameter is non-null, the value of the img parameter will be
169 vpx_image_t *vpx_img_alloc(vpx_image_t *img,
181 * \param[in] img Pointer to storage for descriptor. If this parameter
190 * \return Returns a pointer to the initialized image descriptor. If the img
191 * parameter is non-null, the value of the img parameter will be
194 vpx_image_t *vpx_img_wrap(vpx_image_t *img,
207 * \param[in] img Image descriptor
215 int vpx_img_set_rect(vpx_image_t *img,
    [all...]
vp8.h 92 vpx_image_t img; /**< reference frame data in image format */ member in struct:vpx_ref_frame
vpx_decoder.h 240 const vpx_image_t *img);
280 const vpx_image_t *img,
  /external/webkit/WebCore/platform/chromium/
DragImageChromium.cpp 61 DragImageRef createDragImageFromImage(Image* img)
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/icons/
ImageFactory.java 127 Image img = it.next(); local
128 if (img != null && img.isDisposed() == false) {
129 img.dispose();
  /sdk/eclipse/scripts/
gen_icon.py 49 img = Image.new("RGBA", (sz4, sz4), (255,255,255,0))
50 draw = ImageDraw.Draw(img)
66 img = img.resize((sz, sz), Image.BICUBIC)
67 img.save(data.dest_name, "PNG")
  /external/libvpx/
ivfdec.c 454 prefix = strdup("img");
539 vpx_image_t *img; local
563 if ((img = vpx_codec_get_frame(&decoder, &iter)))
568 if (img)
578 prefix, img->d_w, img->d_h, frame_in, sfx);
584 buf = img->planes[VPX_PLANE_Y];
586 for (y = 0; y < img->d_h; y++)
588 out_put(out, buf, img->d_w, do_md5);
589 buf += img->stride[VPX_PLANE_Y]
    [all...]
y4minput.h 58 int y4m_input_fetch_frame(y4m_input *_y4m,FILE *_fin,vpx_image_t *img);
  /sdk/draw9patch/src/com/android/draw9patch/graphics/
GraphicsUtilities.java 76 public static int[] getPixels(BufferedImage img, int x, int y, int w, int h, int[] pixels) {
87 int imageType = img.getType();
89 Raster raster = img.getRaster();
94 return img.getRGB(x, y, w, h, pixels, 0, w);
  /sdk/ninepatch/src/com/android/ninepatch/
GraphicsUtilities.java 82 public static int[] getPixels(BufferedImage img, int x, int y, int w, int h, int[] pixels) {
93 int imageType = img.getType();
95 Raster raster = img.getRaster();
100 return img.getRGB(x, y, w, h, pixels, 0, w);
  /external/libvpx/vp8/
vp8_dx_iface.c 74 vpx_image_t img; member in struct:vpx_codec_alg_priv
436 vpx_img_wrap(&ctx->img, VPX_IMG_FMT_I420,
441 vpx_img_set_rect(&ctx->img,
455 vpx_image_t *img = NULL; local
464 img = &ctx->img;
465 *iter = img;
469 return img;
555 static vpx_codec_err_t image2yuvconfig(const vpx_image_t *img,
559 yv12->y_buffer = img->planes[VPX_PLANE_Y]
    [all...]
  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 294 public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer)
296 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, bgcolor, observer);
299 public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer)
301 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, observer);
304 public boolean drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer)
306 return graphics.drawImage(img, x, y, width, height, bgcolor, observer);
309 public boolean drawImage(Image img, int x, int y, int width, int height, ImageObserver observer)
311 return graphics.drawImage(img, x, y, width, height, observer);
314 public boolean drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer)
316 return graphics.drawImage(img, x, y, bgcolor, observer)
    [all...]

Completed in 343 milliseconds

1 2 3 4 5