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

<<11121314151617181920>>

  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType16HalftoneDictionary_autogen.cpp 59 int64_t SkPdfType16HalftoneDictionary::Height(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("Height", "");
68 return get("Height", "") != NULL;
SkPdfType6HalftoneDictionary_autogen.cpp 59 int64_t SkPdfType6HalftoneDictionary::Height(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("Height", "");
68 return get("Height", "") != NULL;
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
test.cc 64 _inst.height, &psnr);
66 _inst.height, &ssim);
80 _height = _inst.height;
86 _inst.height);
91 CodecTest::CodecSettings(int width, int height,
109 _inst.height = height;
157 image._encodedHeight = videoBuffer.Height();
  /external/chromium_org/third_party/webrtc/tools/barcode_tools/
barcode_decoder.py 34 yuv_frame_height(int): The height of one YUV frame.
244 help='Height of the YUV file\'s frames. Default: %default')
  /external/chromium_org/ui/gfx/
icon_util.cc 65 best->Height() <= IconUtil::kMediumIconSize) {
95 // PNG format and stored in |png_bytes|. Images with width or height larger than
114 DCHECK_GT(image.Height(), 0);
115 DCHECK_LE(image.Height(), IconUtil::kLargeIconSize);
129 image.Height() == IconUtil::kLargeIconSize) {
170 (bitmap.width() <= 0) || (bitmap.height() <= 0) ||
179 InitializeBitmapHeader(&bitmap_header, bitmap.width(), bitmap.height());
192 memcpy(bits, bitmap.getPixels(), bitmap.width() * bitmap.height() * 4);
204 bitmap.width() * bitmap.height());
210 size_t mask_bits_size = bytes_per_line * bitmap.height();
    [all...]
  /external/chromium_org/ui/gfx/image/
image_family_unittest.cc 15 // Tests that |image| != NULL, and has the given width and height.
23 EXPECT_EQ(expected_height, image_->Height()); \
154 // Test adding and looking up images with 0 width and height.
156 // An empty Image. Should be considered to have 0 width and height.
158 // Images with 0 width OR height should be treated the same as an image with 0
159 // width AND height (in fact, the ImageSkias should be indistinguishable).
  /external/chromium_org/win8/metro_driver/
direct3d_helper.cc 109 swap_chain_desc.Height = window_height;
  /external/libvpx/libvpx/vp8/common/
onyx.h 103 int Height;
  /external/libvpx/libvpx/vp8/common/ppc/
systemdependent.c 42 void vp8_plane_add_noise_c(unsigned char *Start, unsigned int Width, unsigned int Height, int Pitch, int q, int a);
  /external/llvm/lib/CodeGen/
ScheduleDAG.cpp 223 /// fact that this node's height just increased.
229 Height = NewHeight;
281 SuccSU->Height + I->getLatency());
290 if (MaxSuccHeight != Cur->Height) {
292 Cur->Height = MaxSuccHeight;
334 dbgs() << " Height : " << getHeight() << "\n";
406 << (isBottomUp ? "Height" : "Depth") << " value!\n";
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10app/
d3d10winmain.cpp 33 static unsigned width, height; variable
46 height = lParam >> 16;
48 swap_chain->ResizeBuffers(buffer_count, width, height, format, 0);
90 height = rc.bottom - rc.top;
95 swap_chain_desc.BufferDesc.Height = height;
167 else if(width && height)
177 app->draw(ctx, rtv, width, height, ctime);
d3d10x11main.cpp 34 unsigned width, height; variable
56 height = 512;
57 Window win = XCreateWindow(dpy, RootWindow(dpy, DefaultScreen(dpy)), 0, 0, width, height, 0, CopyFromParent, InputOutput, visual, CWBorderPixel | CWColormap| CWEventMask, &swa);
65 swap_chain_desc.BufferDesc.Height = height;
129 height = event.xconfigure.height;
130 swap_chain->ResizeBuffers(3, width, height, format, 0);
134 else if(width && height)
143 app->draw(ctx, rtv, width, height, ctime)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11winmain.cpp 33 static unsigned width, height; variable
46 height = lParam >> 16;
48 swap_chain->ResizeBuffers(buffer_count, width, height, format, 0);
90 height = rc.bottom - rc.top;
95 swap_chain_desc.BufferDesc.Height = height;
151 else if(width && height)
161 app->draw(ctx, rtv, width, height, ctime);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_misc_state.c 55 ((ctx->DrawBuffer->Height - 1) << 16));
379 * height.
431 (stencil_irb->Base.Base.Height + tile_y - 1) << 19);
495 (((depth_irb->Base.Base.Height + tile_y) - 1) << 19));
683 OUT_BATCH((32 - (ctx->DrawBuffer->Height & 31)) & 31);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex_copy.c 53 GLint x, GLint y, GLsizei width, GLsizei height)
114 y = ctx->ReadBuffer->Height - (y + height);
134 width, height,
153 GLsizei width, GLsizei height)
158 intel_renderbuffer(rb), x, y, width, height)) {
162 rb, x, y, width, height);
  /external/mesa3d/src/mesa/drivers/dri/swrast/
swrast.c 285 GLenum internalFormat, GLuint width, GLuint height)
296 rb->Height = height;
304 GLenum internalFormat, GLuint width, GLuint height)
312 swrast_alloc_front_storage(ctx, rb, internalFormat, width, height);
314 xrb->Base.Buffer = malloc(height * xrb->pitch);
417 map += (rb->Height - 1) * stride;
563 frontrb->Base.Base.Height,
588 GLsizei width, height; local
590 get_window_size(fb, &width, &height);
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_renderbuffer.c 58 GLuint width, GLuint height)
129 if (width > 0 && height > 0) {
131 srb->Buffer = malloc(srb->RowStride * height);
135 rb->Height = 0;
138 width, height, bpp);
144 rb->Height = height;
573 0, 0, texImage->Width, texImage->Height,
581 0, 0, rb->Width, rb->Height,
s_stencil.c 297 const GLint w = rb->Width, h = rb->Height;
330 const GLint w = rb->Width, h = rb->Height;
458 if (y < 0 || y >= (GLint) rb->Height ||
503 if (y < 0 || y >= (GLint) rb->Height ||
556 GLint x, y, width, height; local
568 height = ctx->DrawBuffer->_Ymax - ctx->DrawBuffer->_Ymin;
580 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height,
594 for (i = 0; i < height; i++) {
604 memset(map, clear, width * height);
608 for (i = 0; i < height; i++)
    [all...]
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusBrush.h 199 // and height values matter for metafiles.
212 dstRect.Height,
222 // and height values matter for metafiles.
236 dstRect.Height,
256 dstRect.Height,
268 // and height values matter for metafiles.
289 dstRect.Height,
299 // and height values matter for metafiles.
325 // and height values matter for metafiles.
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType16HalftoneDictionary_autogen.cpp 59 int64_t SkPdfType16HalftoneDictionary::Height(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("Height", "");
68 return get("Height", "") != NULL;
SkPdfType6HalftoneDictionary_autogen.cpp 59 int64_t SkPdfType6HalftoneDictionary::Height(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("Height", "");
68 return get("Height", "") != NULL;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
onyx.h 103 int Height;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ppc/
systemdependent.c 42 void vp8_plane_add_noise_c(unsigned char *Start, unsigned int Width, unsigned int Height, int Pitch, int q, int a);
  /hardware/intel/img/psb_video/src/
pnw_jpeg.c 92 /* No pure limitation on an image's width or height seperately,
201 jpeg_ctx_p->ui8ScanNum = JPEG_SCANNING_COUNT(ctx->Width, ctx->Height, ctx->NumCores, jpeg_ctx_p->eFormat);
304 pnw_cmdbuf_insert_command_param((ctx->Width << 16) | ctx->Height);
358 /* Get the width and height of encode destination */
363 ASSERT(ctx->Height >= jpeg_ctx->ui32OutputHeight);
366 if ((ctx->Width!=jpeg_ctx->ui32OutputWidth) || (ctx->Height!=jpeg_ctx->ui32OutputHeight)) {
  /packages/apps/Camera2/jni/
tinyplanet.cc 30 ImageRGBA(unsigned char* image, int width, int height)
31 : image_(image), width_(width), height_(height) {
39 int Height() const {
133 JNIEXPORT void JNICALL Java_com_android_camera_tinyplanet_TinyPlanetNative_process(JNIEnv* env, jobject obj, jobject bitmap_in, jint width, jint height, jobject bitmap_out, jint output_size, jfloat scale, jfloat angle)
142 StereographicProjection(scale, angle, rgb_in, width, height, rgb_out, output_size, output_size);

Completed in 584 milliseconds

<<11121314151617181920>>