HomeSort by relevance Sort by last modified time
    Searched refs:img (Results 251 - 275 of 1146) sorted by null

<<11121314151617181920>>

  /external/libvpx/libvpx/vp8/encoder/
lookahead.c 44 vp8_yv12_de_alloc_frame_buffer(&ctx->buf[i].img);
79 if (vp8_yv12_alloc_frame_buffer(&ctx->buf[i].img, width, height,
129 vp8_copy_and_extend_frame_with_rect(src, &buf->img, row << 4, col << 4,
139 vp8_copy_and_extend_frame(src, &buf->img);
  /external/libvpx/libvpx/vp9/encoder/
vp9_lookahead.h 29 YV12_BUFFER_CONFIG img; member in struct:lookahead_entry
  /external/libvpx/libvpx/
vpxenc.c 98 static int read_frame(struct VpxInputContext *input_ctx, vpx_image_t *img) {
104 if (y4m_input_fetch_frame(y4m, f, img) < 1) return 0;
106 shortread = read_yuv_frame(input_ctx, img);
882 struct vpx_image *img; member in struct:stream_state
    [all...]
y4minput.h 62 int y4m_input_fetch_frame(y4m_input *_y4m, FILE *_fin, vpx_image_t *img);
  /external/markdown/markdown/
inlinepatterns.py 276 """ Return a img element from the given match. """
278 el = markdown.etree.Element("img")
327 """ Match to a stored reference and return img element. """
329 el = markdown.etree.Element("img")
  /external/mesa3d/src/gallium/state_trackers/clover/api/
transfer.cpp 100 validate_object(command_queue &q, image &img,
102 vector_t size = { img.width(), img.height(), img.depth() };
107 if (img.context() != q.context())
487 auto &img = obj<image>(d_mem);
490 auto dst_pitch = pitch(region, {{ img.pixel_size(),
493 auto src_pitch = pitch(region, {{ img.pixel_size(),
494 img.row_pitch(), img.slice_pitch() }})
    [all...]
  /external/mesa3d/src/mesa/main/
texcompress.h 46 _mesa_compressed_image_address(GLint col, GLint row, GLint img,
  /external/syslinux/libinstaller/
syslxmod.c 85 static inline void *ptr(void *img, const uint16_t _slimg *offset_p)
87 return (char *)img + get_16_sl(offset_p);
89 static inline void _slimg *slptr(void _slimg *img,
92 return (char _slimg *)img + get_16_sl(offset_p);
  /frameworks/native/libs/gui/tests/
SurfaceTextureGL_test.cpp 48 uint8_t* img = NULL; local
49 buf->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, (void**)(&img));
50 fillYV12Buffer(img, texWidth, texHeight, buf->getStride());
98 uint8_t* img = NULL; local
99 buf->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, (void**)(&img));
100 fillYV12Buffer(img, texWidth, texHeight, buf->getStride());
162 uint8_t* img = NULL; local
163 buf->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, (void**)(&img));
164 fillYV12BufferRect(img, texWidth, texHeight, buf->getStride(), crop);
251 uint8_t* img = NULL local
    [all...]
  /frameworks/native/services/surfaceflinger/tests/hwc2/
Hwc2TestBuffer.cpp 338 android_pixel_format_t format, uint32_t stride, uint8_t* img, uint8_t r,
343 img[(y * stride + x) * 4 + 0] = r;
344 img[(y * stride + x) * 4 + 1] = g;
345 img[(y * stride + x) * 4 + 2] = b;
346 img[(y * stride + x) * 4 + 3] = a;
414 uint8_t* img; local
416 (void**)(&img));
440 setColor(x, y, mFormat, stride, img, max, min, min, 255);
444 setColor(x, y, mFormat, stride, img, min, max, min, 255);
448 setColor(x, y, mFormat, stride, img, min, min, max, 255)
477 uint8_t* img; local
731 uint8_t* img; local
    [all...]
Hwc2TestPixelComparator.h 48 uint32_t getPixel(int32_t x, int32_t y, uint32_t stride, uint8_t* img) const;
  /hardware/intel/img/hwcomposer/merrifield/test/
nv12_ved_test.cpp 91 uint8_t* img = NULL; local
123 buf->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, (void**) (&img));
124 if (!img) {
129 loadYUVBufferFromFile(img, 640, 480, buf->getStride());
  /external/libjpeg-turbo/java/
TJExample.java 103 BufferedImage img = null; local
290 img = tjd.decompress(width, height, BufferedImage.TYPE_INT_RGB,
296 img = ImageIO.read(file);
297 if (img == null)
299 width = img.getWidth();
300 height = img.getHeight();
302 if (img.getType() == BufferedImage.TYPE_BYTE_GRAY)
314 ImageIcon icon = new ImageIcon(img);
327 if (img != null)
328 tjc.setSourceImage(img, 0, 0, 0, 0)
    [all...]
  /external/libvpx/libvpx/vpx/src/
vpx_encoder.c 196 vpx_codec_err_t vpx_codec_encode(vpx_codec_ctx_t *ctx, const vpx_image_t *img,
202 if (!ctx || (img && !duration))
217 res = ctx->iface->enc.encode(get_alg_priv(ctx), img, pts, duration, flags,
228 if (img) img += num_enc - 1;
231 if ((res = ctx->iface->enc.encode(get_alg_priv(ctx), img, pts, duration,
236 if (img) img--;
314 vpx_image_t *img = NULL; local
324 img = ctx->iface->enc.get_preview(get_alg_priv(ctx))
    [all...]
  /external/skia/tests/
SpecialImageTest.cpp 57 static void test_image(const sk_sp<SkSpecialImage>& img, skiatest::Reporter* reporter,
60 const SkIRect subset = img->subset();
68 REPORTER_ASSERT(reporter, isGPUBacked == img->isTextureBacked());
74 sk_sp<GrTextureProxy> proxy(img->asTextureProxyRef(context));
82 REPORTER_ASSERT(reporter, img->getROPixels(&bitmap));
93 SkImageFilter::OutputProperties outProps(img->getColorSpace());
94 sk_sp<SkSpecialSurface> surf(img->makeSurface(outProps, SkISize::Make(kFullSize, kFullSize),
100 img->draw(canvas, SkIntToScalar(kPad), SkIntToScalar(kPad), nullptr);
121 sk_sp<SkImage> tightImg(img->asImage(&newSubset));
130 SkImageFilter::OutputProperties outProps(img->getColorSpace())
    [all...]
  /external/skqp/tests/
SpecialImageTest.cpp 57 static void test_image(const sk_sp<SkSpecialImage>& img, skiatest::Reporter* reporter,
60 const SkIRect subset = img->subset();
68 REPORTER_ASSERT(reporter, isGPUBacked == img->isTextureBacked());
74 sk_sp<GrTextureProxy> proxy(img->asTextureProxyRef(context));
82 REPORTER_ASSERT(reporter, img->getROPixels(&bitmap));
93 SkImageFilter::OutputProperties outProps(img->getColorSpace());
94 sk_sp<SkSpecialSurface> surf(img->makeSurface(outProps, SkISize::Make(kFullSize, kFullSize),
100 img->draw(canvas, SkIntToScalar(kPad), SkIntToScalar(kPad), nullptr);
121 sk_sp<SkImage> tightImg(img->asImage(&newSubset));
130 SkImageFilter::OutputProperties outProps(img->getColorSpace())
    [all...]
  /external/tensorflow/tensorflow/contrib/gan/python/eval/python/
classifier_metrics_test.py 170 img = array_ops.ones([batch_size, 299, 299, 3])
171 logits = _run_with_mock(classifier_metrics.run_inception, img)
182 img = array_ops.ones([batch_size, 299, 299, 3])
185 img,
197 img = array_ops.ones([batch_size, 299, 299, 3])
200 img,
228 img = array_ops.ones([7, 299, 299, 3])
230 classifier_metrics.frechet_inception_distance, img, img)
241 img = array_ops.ones([batch_size, 299, 299, 3]
    [all...]
  /cts/apps/CameraITS/tools/
validate_scene.py 63 img = its.image.convert_capture_to_rgb_image(cap)
65 its.image.write_image(img, out_path)
  /device/generic/goldfish/tools/
mk_qemu_image.sh 6 echo "$0 path-to-system.img | path-to-vendor.img" >&2
14 target=${dir_name}/$label-qemu.img
  /external/libcap/kdebug/
test-kernel.sh 60 $KBASE/usr/gen_init_cpio fs.conf | gzip -9 > initramfs.img
66 -initrd initramfs.img \
  /external/libvpx/libvpx/test/
tile_independence_test.cc 64 const vpx_image_t *img = dec->GetDxData().Next(); local
65 md5->Add(img);
  /external/mesa3d/src/gallium/state_trackers/dri/
dri_screen.c 326 __DRIimage *img = NULL; local
329 img = screen->lookup_egl_image(screen, egl_image);
332 if (!img)
336 pipe_resource_reference(&stimg->texture, img->texture);
337 switch (img->dri_components) {
345 stimg->format = img->texture->format;
348 stimg->level = img->level;
349 stimg->layer = img->layer;
  /external/skia/src/core/
SkLiteRecorder.cpp 153 void SkLiteRecorder::onDrawImage(const SkImage* img,
156 fDL->drawImage(sk_ref_sp(img), x,y, paint);
158 void SkLiteRecorder::onDrawImageNine(const SkImage* img,
161 fDL->drawImageNine(sk_ref_sp(img), center, dst, paint);
163 void SkLiteRecorder::onDrawImageRect(const SkImage* img,
166 fDL->drawImageRect(sk_ref_sp(img), src, dst, paint, constraint);
168 void SkLiteRecorder::onDrawImageLattice(const SkImage* img,
171 fDL->drawImageLattice(sk_ref_sp(img), lattice, dst, paint);
  /external/skqp/src/core/
SkLiteRecorder.cpp 153 void SkLiteRecorder::onDrawImage(const SkImage* img,
156 fDL->drawImage(sk_ref_sp(img), x,y, paint);
158 void SkLiteRecorder::onDrawImageNine(const SkImage* img,
161 fDL->drawImageNine(sk_ref_sp(img), center, dst, paint);
163 void SkLiteRecorder::onDrawImageRect(const SkImage* img,
166 fDL->drawImageRect(sk_ref_sp(img), src, dst, paint, constraint);
168 void SkLiteRecorder::onDrawImageLattice(const SkImage* img,
171 fDL->drawImageLattice(sk_ref_sp(img), lattice, dst, paint);
  /cts/apps/CameraITS/tests/scene1/
test_reprocess_noise_reduction.py 80 img = its.image.decompress_jpeg_to_rgb_image(cap["data"])
81 its.image.write_image(img, "%s_low_gain_fmt=jpg.jpg" % (NAME))
82 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
103 img = its.image.decompress_jpeg_to_rgb_image(cap["data"])
106 img,
112 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)

Completed in 2966 milliseconds

<<11121314151617181920>>