HomeSort by relevance Sort by last modified time
    Searched refs:img (Results 101 - 125 of 633) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/libvpx/source/libvpx/test/
encode_test_driver.cc 21 if (video->img())
40 const vpx_image_t *img = video.img(); local
44 cfg_.g_w = img->d_w;
45 cfg_.g_h = img->d_h;
54 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
55 cfg_.g_w = img->d_w;
56 cfg_.g_h = img->d_h;
64 video.img(), video.pts(), video.duration()
    [all...]
  /external/libvpx/libvpx/test/
encode_test_driver.cc 21 if (video->img())
40 const vpx_image_t *img = video.img(); local
44 cfg_.g_w = img->d_w;
45 cfg_.g_h = img->d_h;
54 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
55 cfg_.g_w = img->d_w;
56 cfg_.g_h = img->d_h;
64 video.img(), video.pts(), video.duration()
    [all...]
  /external/opencv/cv/src/
cvfeatureselect.cpp 80 CvMat stub, *img = (CvMat*)image; local
91 CV_CALL( img = cvGetMat( img, &stub, &coi1 ));
98 CV_CALL( _eigImg = cvCreateMat( img->rows, img->cols, CV_32FC1 ));
108 CV_CALL( _tmpImg = cvCreateMat( img->rows, img->cols, CV_32FC1 ));
124 if( CV_MAT_CN(img->type) != 1 ||
144 CV_CALL( cvCornerHarris( img, eig, block_size, 3, harris_k ));
148 CV_CALL( cvCornerMinEigenVal( img, eig, block_size, 3 ))
    [all...]
  /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/libvpx/libvpx/vp8/
vp8_dx_iface.c 69 vpx_image_t img; member in struct:vpx_codec_alg_priv
283 static void yuvconfig2image(vpx_image_t *img,
291 img->fmt = VPX_IMG_FMT_I420;
292 img->w = yv12->y_stride;
293 img->h = (yv12->y_height + 2 * VP8BORDERINPIXELS + 15) & ~15;
294 img->d_w = yv12->y_width;
295 img->d_h = yv12->y_height;
296 img->x_chroma_shift = 1;
297 img->y_chroma_shift = 1;
298 img->planes[VPX_PLANE_Y] = yv12->y_buffer
576 vpx_image_t *img = NULL; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texgetimage.c 82 GLint img, row; local
90 for (img = 0; img < depth; img++) {
95 ctx->Driver.MapTextureImage(ctx, texImage, img,
103 img, row, 0);
109 ctx->Driver.UnmapTextureImage(ctx, texImage, img);
132 GLint img, row; local
134 for (img = 0; img < depth; img++)
177 GLint img, row; local
330 GLuint img, row; local
    [all...]
  /external/mesa3d/src/mesa/main/
texgetimage.c 82 GLint img, row; local
90 for (img = 0; img < depth; img++) {
95 ctx->Driver.MapTextureImage(ctx, texImage, img,
103 img, row, 0);
109 ctx->Driver.UnmapTextureImage(ctx, texImage, img);
132 GLint img, row; local
134 for (img = 0; img < depth; img++)
177 GLint img, row; local
330 GLuint img, row; local
    [all...]
  /build/tools/releasetools/
add_img_to_target_files 55 prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "system.img")
57 print "system.img already exists in %s, no need to rebuild..." % (prefix,)
74 common.ZipWriteStr(output_zip, prefix + "system.img", f.read())
89 prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "vendor.img")
91 print "vendor.img already exists in %s, no need to rebuild..." % (prefix,)
98 common.ZipWriteStr(output_zip, prefix + "vendor.img", f.read())
110 print "creating " + what + ".img..."
112 img = common.MakeTempFile(prefix=what + "-", suffix=".img")
146 image_props, img,
    [all...]
add_img_to_target_files.py 55 prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "system.img")
57 print "system.img already exists in %s, no need to rebuild..." % (prefix,)
74 common.ZipWriteStr(output_zip, prefix + "system.img", f.read())
89 prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "vendor.img")
91 print "vendor.img already exists in %s, no need to rebuild..." % (prefix,)
98 common.ZipWriteStr(output_zip, prefix + "vendor.img", f.read())
110 print "creating " + what + ".img..."
112 img = common.MakeTempFile(prefix=what + "-", suffix=".img")
146 image_props, img,
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg2000.cpp 179 jas_image_t *img = jas_image_chclrspc( m_image, clrprof, JAS_CMXFORM_INTENT_RELCLR ); local
180 if( img )
183 m_image = img;
420 jas_image_t *img = jas_image_create( channels, component_info, (channels == 1) ? JAS_CLRSPC_SGRAY : JAS_CLRSPC_SRGB ); local
421 if( !img )
425 jas_image_setcmpttype( img, 0, JAS_IMAGE_CT_GRAY_Y );
428 jas_image_setcmpttype( img, 0, JAS_IMAGE_CT_RGB_B );
429 jas_image_setcmpttype( img, 1, JAS_IMAGE_CT_RGB_G );
430 jas_image_setcmpttype( img, 2, JAS_IMAGE_CT_RGB_R );
435 result = WriteComponent8u( img, data, step, channels, width, height )
    [all...]
  /external/opencv/cxcore/src/
cxarray.cpp 977 IplImage* img = (IplImage*)arr; local
979 if( img->imageData != 0 )
984 CV_CALL( img->imageData = img->imageDataOrigin =
985 (char*)cvAlloc( (size_t)img->imageSize ));
989 int depth = img->depth;
990 int width = img->width;
992 if( img->depth == IPL_DEPTH_32F || img->nChannels == 64 )
994 img->width *= img->depth == IPL_DEPTH_32F ? sizeof(float) : sizeof(double)
1082 IplImage* img = (IplImage*)arr; local
1156 IplImage* img = (IplImage*)arr; local
1201 IplImage* img = (IplImage*)arr; local
1275 IplImage* img = (IplImage*)arr; local
1309 IplImage* img = (IplImage*)arr; local
1376 IplImage* img = (IplImage*)arr; local
1438 IplImage* img = (IplImage*)arr; local
1936 IplImage* img = (IplImage*)arr; local
2034 IplImage* img = (IplImage*)arr; local
2792 const IplImage* img = (const IplImage*)src; local
3284 IplImage *img = 0; local
3321 IplImage *img = 0; local
3417 IplImage* img = *image; local
3446 IplImage* img = *image; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
vpxdec.c 274 static void update_image_md5(const vpx_image_t *img, const int planes[3],
280 const unsigned char *buf = img->planes[plane];
281 const int stride = img->stride[plane];
282 const int w = vpx_img_plane_width(img, plane);
283 const int h = vpx_img_plane_height(img, plane);
292 static void write_image_file(const vpx_image_t *img, const int planes[3],
296 const int bytes_per_sample = ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1);
303 const unsigned char *buf = img->planes[plane];
304 const int stride = img->stride[plane];
305 const int w = vpx_img_plane_width(img, plane)
1033 vpx_image_t *img; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-swing.jar 
  /build/core/tasks/
factory_bundle.mk 63 $(eval $(call copy-one-file,$(PRODUCT_OUT)/factory_ramdisk.img,$(root_dir)/factory_ramdisk.img))
64 copied_files += $(root_dir)/factory_ramdisk.img
  /cts/apps/CameraITS/tests/scene1/
test_param_exposure_time.py 44 img = its.image.convert_capture_to_rgb_image(cap)
46 img, "%s_frame%d.jpg" % (NAME, i))
47 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
test_param_sensitivity.py 50 img = its.image.convert_capture_to_rgb_image(cap)
52 img, "%s_iso=%04d.jpg" % (NAME, s))
53 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
test_param_noise_reduction.py 60 img = planes[j]
61 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
78 img = planes[j]
79 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
  /external/chromium_org/chrome/browser/resources/ntp4/
apps_page.css 36 .app-img-container {
43 .app-img-container > * {
62 .app-icon-div .app-img-container {
95 .app-img-container > img:first-child {
159 #app-launcher-promo > img {
  /external/chromium_org/chrome/common/extensions/docs/examples/tutorials/getstarted/
popup.js 47 * 'requestKittens', by generating 'img' elements, and stuffing them into
56 var img = document.createElement('img');
57 img.src = this.constructKittenURL_(kittens[i]);
58 img.setAttribute('alt', kittens[i].getAttribute('title'));
59 document.body.appendChild(img);
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
decode_with_drops.c 116 vpx_image_t *img = NULL; local
132 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL)
133 vpx_img_write(img, outfile);
postproc.c 99 vpx_image_t *img = NULL; local
122 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {
123 vpx_img_write(img, outfile);
  /external/libvpx/libvpx/examples/
decode_with_drops.c 118 vpx_image_t *img = NULL; local
134 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL)
135 vpx_img_write(img, outfile);
postproc.c 101 vpx_image_t *img = NULL; local
124 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {
125 vpx_img_write(img, outfile);
  /cts/apps/CameraITS/tests/inprog/
test_blc_lsc.py 75 img = its.image.convert_capture_to_rgb_image(cap)
76 its.image.write_image(img, "%s_i=%d.jpg"%(NAME, i))
78 tile_center = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
84 tile_corner = its.image.get_image_patch(img, 0.0, 0.0, 0.1, 0.1)
  /device/generic/goldfish/camera/fake-pipeline2/
Base.h 42 uint8_t *img; member in struct:android::StreamBuffer

Completed in 2051 milliseconds

1 2 3 45 6 7 8 91011>>