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

1 2 3 4 5 6

  /device/samsung/toro/recovery/
recovery_updater.c 29 Value* img; local
35 if (ReadValueArgs(state, argv, 1, &img) < 0) {
39 if(img->type != VAL_BLOB) {
40 FreeValue(img);
44 result = update_cdma_modem(img->data, img->size);
45 FreeValue(img);
  /device/samsung/toroplus/recovery/
recovery_updater.c 29 Value* img; local
35 if (ReadValueArgs(state, argv, 1, &img) < 0) {
39 if(img->type != VAL_BLOB) {
40 FreeValue(img);
44 result = update_cdma_modem(img->data, img->size);
45 FreeValue(img);
  /external/clang/test/CodeGen/
2009-08-14-vararray-crash.c 5 typedef imgrow img[rb]; typedef
7 const img *br;
  /external/webkit/Source/WebCore/platform/graphics/win/
ImageWin.cpp 48 RefPtr<BitmapImage> img = BitmapImage::create(); local
49 img->setData(buffer.release(), true);
50 return img.release();
  /external/libvpx/libvpx/test/
decode_test_driver.cc 38 const vpx_image_t *img = NULL; local
41 while ((img = dec_iter.Next()))
42 DecompressedFrameHook(*img, video->frame_number());
encode_test_driver.cc 20 if (video->img())
39 const vpx_image_t *img = video.img(); local
43 cfg_.g_w = img->d_w;
44 cfg_.g_h = img->d_h;
53 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
54 cfg_.g_w = img->d_w;
55 cfg_.g_h = img->d_h;
62 video.img(), video.pts(), video.duration()
    [all...]
i420_video_source.h 38 // This initializes raw_sz_, width_, height_ and allocates an img.
67 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } function in class:libvpx_test::I420VideoSource
  /external/libvpx/libvpx/vp8/encoder/
lookahead.h 17 YV12_BUFFER_CONFIG img; member in struct:lookahead_entry
  /external/webkit/Source/WebCore/platform/graphics/efl/
ImageEfl.cpp 63 RefPtr<BitmapImage> img = BitmapImage::create(); local
65 img->setData(buffer.release(), true);
66 return img.release();
  /device/generic/goldfish/camera/fake-pipeline2/
Base.h 42 uint8_t *img; member in struct:android::StreamBuffer
  /device/samsung/tuna/recovery/
recovery_updater.c 34 Value* img; local
42 if (ReadValueArgs(state, argv, 3, &img, &xloader_loc, &sbl_loc) < 0) {
46 if(img->type != VAL_BLOB ||
49 FreeValue(img);
55 result = update_bootloader(img->data, img->size,
57 FreeValue(img);
  /external/libvpx/libvpx/vpx/src/
vpx_decoder.c 147 vpx_image_t *img; local
150 img = NULL;
152 img = ctx->iface->dec.get_frame(ctx->priv->alg_priv, iter);
154 return img;
vpx_encoder.c 218 const vpx_image_t *img,
226 if (!ctx || (img && !duration))
242 res = ctx->iface->enc.encode(ctx->priv->alg_priv, img, pts,
254 if (img) img += num_enc - 1;
258 if ((res = ctx->iface->enc.encode(ctx->priv->alg_priv, img, pts,
263 if (img) img--;
357 vpx_image_t *img = NULL; local
368 img = ctx->iface->enc.get_preview(ctx->priv->alg_priv)
    [all...]
  /device/generic/goldfish/camera/
PreviewWindow.cpp 159 void* img = NULL; local
162 res = grbuffer_mapper.lock(*buffer, GRALLOC_USAGE_SW_WRITE_OFTEN, rect, &img);
172 res = camera_dev->getCurrentPreviewFrame(img);
  /device/samsung/manta/recovery/
recovery_updater.c 97 fprintf(stderr, "expected bootloader.img of length %d; got %d\n",
161 Value* img; local
169 if (ReadValueArgs(state, argv, 3, &img, &block_loc, &force_ro_loc) < 0) {
173 if(img->type != VAL_BLOB ||
176 FreeValue(img);
182 result = update_bootloader(img->data, img->size,
184 FreeValue(img);
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
ImagesManager.cpp 58 SkBitmap* img = 0; local
74 img = ImageTexture::convertBitmap(bitmap);
75 image = new ImageTexture(img, crc);
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities.cpp 26 float **img; local
28 img=new float* [h];
31 img[i]=im+w*i;
33 return(img);
39 unsigned char **img; local
43 img=new unsigned char* [h];
46 img[i]=im+w*i;
48 return(img);
52 float **img,*im; local
55 img=db_SetupImageReferences_f(im,w,h)
62 unsigned char **img,*im; local
    [all...]
  /packages/apps/Gallery2/jni_mosaic/feature_stab/db_vlvm/
db_utilities.cpp 26 float **img; local
28 img=new float* [h];
31 img[i]=im+w*i;
33 return(img);
39 unsigned char **img; local
43 img=new unsigned char* [h];
46 img[i]=im+w*i;
48 return(img);
52 float **img,*im; local
55 img=db_SetupImageReferences_f(im,w,h)
62 unsigned char **img,*im; local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities.cpp 26 float **img; local
28 img=new float* [h];
31 img[i]=im+w*i;
33 return(img);
39 unsigned char **img; local
43 img=new unsigned char* [h];
46 img[i]=im+w*i;
48 return(img);
52 float **img,*im; local
55 img=db_SetupImageReferences_f(im,w,h)
62 unsigned char **img,*im; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
OutlineLabelProvider.java 54 Image img = factory.getIcon(tagName, null); local
55 if (img != null) {
56 return img;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiModelTreeLabelProvider.java 56 Image img = desc.getCustomizedIcon(); local
57 if (img != null) {
59 return IconFactory.getInstance().addErrorIcon(img);
61 return img;
  /external/chromium/chrome/browser/history/
top_sites_cache.cc 30 Images& img = images_[GetCanonicalURL(url)]; local
31 img.thumbnail = thumbnail;
32 img.thumbnail_score = score;
  /external/libvpx/libvpx/examples/
decoder_tmpl.c 78 vpx_image_t *img; local
  /external/opencv/cxcore/src/
cximage.cpp 77 IplImage* img = 0; local
84 img = (IplImage*)obj;
88 CV_CALL( img = cvCreateImageHeader( cvSize(m->cols,m->rows),
90 cvSetData( img, m->data.ptr, m->step );
91 img->imageDataOrigin = (char*)m->refcount;
103 return img;
109 IplImage* img = 0; local
117 img = icvRetrieveImage(cvLoad(filename,0,imgname));
118 if( (img->nChannels > 1) != (color == 0) )
123 CV_CALL( temp_img = cvCreateImage( cvGetSize(img), img->depth, color > 0 ? 3 : 1 ))
150 IplImage* img = 0; local
170 IplImage* img = 0; local
240 IplImage* img = (IplImage*)obj; local
    [all...]
  /external/opencv/otherlibs/highgui/
image.cpp 99 IplImage* img = image.GetImage(); local
100 if( img )
102 CopyOf( img, desired_color );
107 #define HG_IS_IMAGE(img) \
108 ((img) != 0 && ((const IplImage*)(img))->nSize == sizeof(IplImage) && \
109 ((IplImage*)img)->imageData != 0)
112 void CvvImage::CopyOf( IplImage* img, int desired_color )
114 if( HG_IS_IMAGE(img) )
117 CvSize size = cvGetSize( img );
134 IplImage* img = cvLoadImage( filename, desired_color ); local
    [all...]

Completed in 940 milliseconds

1 2 3 4 5 6