Searched defs:height (Results 276 - 300 of 2970) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_sad.c24 int width, int height) {
28 for (y = 0; y < height; y++) {
141 int width, int height) {
146 for (y = 0; y < height; y++) {
158 int width, int height) {
162 for (y = 0; y < height; y++) {
22 sad(const uint8_t *a, int a_stride, const uint8_t *b, int b_stride, int width, int height) argument
139 high_sad(const uint8_t *a8, int a_stride, const uint8_t *b8, int b_stride, int width, int height) argument
156 high_sadb(const uint8_t *a8, int a_stride, const uint16_t *b, int b_stride, int width, int height) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_staging.c33 util_staging_resource_template(struct pipe_resource *pt, unsigned width, unsigned height, unsigned depth, struct pipe_resource *template) argument
42 template->height0 = height;
75 util_staging_resource_template(pt, box->width, box->height, box->depth, &staging_resource_template);
93 sbox.height = box->height;
120 sbox.height = tx->base.box.height;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_resource.h14 uint16_t height; member in struct:nv30_surface
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/va/
H A Dva_private.h55 unsigned int height; member in struct:__anon14195
79 VAStatus vlVaCreateSurfaces (VADriverContextP ctx,int width,int height,int format,int num_surfaces,VASurfaceID *surfaces);
109 VAStatus vlVaCreateImage(VADriverContextP ctx,VAImageFormat *format,int width,int height,VAImage *image);
113 VAStatus vlVaGetImage(VADriverContextP ctx,VASurfaceID surface,int x,int y,unsigned int width,unsigned int height,VAImageID image);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
H A Dbitmap.c41 uint32_t width, uint32_t height,
51 if (!(width && height))
75 res_tmpl.height0 = height;
137 uint32_t *width, uint32_t *height,
147 if (!(rgba_format && width && height && frequently_accessed))
153 *height = res->height0;
39 vlVdpBitmapSurfaceCreate(VdpDevice device, VdpRGBAFormat rgba_format, uint32_t width, uint32_t height, VdpBool frequently_accessed, VdpBitmapSurface *surface) argument
135 vlVdpBitmapSurfaceGetParameters(VdpBitmapSurface surface, VdpRGBAFormat *rgba_format, uint32_t *width, uint32_t *height, VdpBool *frequently_accessed) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
H A Dstw_framebuffer.h84 unsigned height; member in struct:stw_framebuffer
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
H A Dtest_blocks.c34 const unsigned int width = 16, height = 16; local
54 height,
74 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, &context) == Success);
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/sw/
H A Di915_sw_buffer.c32 unsigned *stride, unsigned height,
43 buf->ptr = CALLOC(*stride * height, 1);
31 i915_sw_buffer_create_tiled(struct i915_winsys *iws, unsigned *stride, unsigned height, enum i915_winsys_buffer_tile *tiling, enum i915_winsys_buffer_type type) argument
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_xgl_api_read.c99 __applegl_glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, argument
106 __ogl_framework_api->ReadPixels(x, y, width, height, format, type, pixels);
112 __applegl_glCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type) argument
118 __ogl_framework_api->CopyPixels(x, y, width, height, type);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_tex_layout.c98 * | | alignment unit height ("j") |
147 GLuint height = mt->height0; local
183 height, depth);
185 img_height = ALIGN(height, mt->align_h);
204 height = minify(height);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_tex_layout.c88 GLuint height = mt->height0; local
98 pack_y_pitch = (height + 3) / 4;
114 width, height, depth);
131 height = minify(height);
136 pack_y_pitch = (height + 3) / 4;
H A Dintel_tex_layout.c98 * | | alignment unit height ("j") |
147 GLuint height = mt->height0; local
183 height, depth);
185 img_height = ALIGN(height, mt->align_h);
204 height = minify(height);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_tex_layout.c98 * | | alignment unit height ("j") |
147 GLuint height = mt->height0; local
183 height, depth);
185 img_height = ALIGN(height, mt->align_h);
204 height = minify(height);
/external/chromium_org/third_party/skia/experimental/pixman/
H A Djunk.cpp26 int height,
30 bitmap->setConfig(SkBitmap::kARGB_8888_Config, width, height);
37 for (i = 0; i < height; ++i)
49 int width, height; local
54 height = pixman_image_get_height (image);
80 width, height, NULL, -1);
84 width, height);
89 width, height,
24 pixbuf_from_argb32(uint32_t *bits, int width, int height, int stride) argument
/external/chromium_org/third_party/skia/gm/
H A Dblurroundrect.cpp25 BlurRoundRectGM(int width, int height, int radius) argument
28 SkRect r = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
30 fName.appendf("-WH-%ix%i-corner-%i", width, height, radius);
33 BlurRoundRectGM(int width, int height) argument
35 fName.appendf("-WH-%ix%i-unevenCorners", width, height);
41 SkRect r = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
51 SkScalarCeilToInt(fRRect.rect().height()));
120 canvas->translate(0, (r.height() + SkIntToScalar(50)) * i);
/external/chromium_org/third_party/skia/src/core/
H A DSkPictureRecorder.cpp20 SkCanvas* SkPictureRecorder::beginRecording(SkScalar width, SkScalar height, argument
24 return EXPERIMENTAL_beginRecording(width, height, bbhFactory);
26 return DEPRECATED_beginRecording(width, height, bbhFactory, recordFlags);
30 SkCanvas* SkPictureRecorder::DEPRECATED_beginRecording(SkScalar width, SkScalar height, argument
34 fCullHeight = height;
36 const SkISize size = SkISize::Make(width, height);
41 fBBH.reset((*bbhFactory)(width, height));
52 SkCanvas* SkPictureRecorder::EXPERIMENTAL_beginRecording(SkScalar width, SkScalar height, argument
55 fCullHeight = height;
58 fBBH.reset((*bbhFactory)(width, height));
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrPlotMgr.h16 GrPlotMgr(int width, int height) { argument
17 fDim.set(width, height);
18 size_t needed = width * height;
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLRenderTarget.cpp29 int width, int height,
35 temp.fHeight = height;
64 SkASSERT(viewport.fHeight == texture->height());
28 MakeDesc(GrTextureFlags flags, int width, int height, GrPixelConfig config, int sampleCnt, GrSurfaceOrigin origin) argument
/external/chromium_org/third_party/skia/src/images/
H A DSkMovie.cpp41 int SkMovie::height() function in class:SkMovie
/external/chromium_org/third_party/skia/src/utils/
H A DSkPDFRasterizer.cpp48 int width = image.width(), height = image.height(); local
53 if (!bitmap.tryAllocN32Pixels(width, height)) {
60 for (int y = 0; y < height; y++) {
/external/chromium_org/third_party/skia/tools/
H A Dpicture_utils.cpp26 for (int y = 0; y < bitmap.height(); y++) {
49 void setup_bitmap(SkBitmap* bitmap, int width, int height) { argument
50 bitmap->allocN32Pixels(width, height);
/external/chromium_org/third_party/skia/tools/skpdiff/
H A DSkDifferentPixelsMetric_cpu.cpp23 if (baseline->width() != test->width() || baseline->height() != test->height() ||
24 baseline->width() <= 0 || baseline->height() <= 0 ||
27 SkASSERT(baseline->height() == test->height());
29 SkASSERT(baseline->height() > 0);
35 int height = baseline->height(); local
42 result->poiAlphaMask.allocPixels(SkImageInfo::MakeA8(width, height));
46 result->rgbDiffBitmap.allocPixels(SkImageInfo::Make(width, height, baselin
[all...]
H A DSkPMetric.cpp20 int height; member in struct:Image2D
25 height(h) {
39 SkASSERT(y < height);
51 SkASSERT(y < height);
137 int height = bitmap->height();
139 SkASSERT(outImageLAB->height == height);
144 for (int y = 0; y < height; y++) {
204 for (int y = 0; y < imageLAB->height;
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dpacket.h51 int height; member in class:webrtc::VCMPacket
/external/chromium_org/third_party/webrtc/modules/video_processing/main/source/
H A Dspatial_resampler.cc26 int32_t height) {
29 if (width < 1 || height < 1) return VPM_PARAMETER_ERROR;
32 target_height_ = height;
55 (inFrame.height() == target_height_)) {
63 ret_val = scaler_.Set(inFrame.width(), inFrame.height(),
90 int32_t height) {
91 if ((width == target_width_ && height == target_height_) ||
25 SetTargetFrameSize(int32_t width, int32_t height) argument
89 ApplyResample(int32_t width, int32_t height) argument

Completed in 447 milliseconds

<<11121314151617181920>>