Searched defs:width (Results 51 - 75 of 3377) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DInterceptingCanvas.h41 InterceptingCanvas(int width, int height) : SkCanvas(width, height), m_depthCount(0) { }; argument
/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A Dtexture_utils.cpp23 const size_t width = 2; local
25 GLubyte pixels[width * height * 3] =
32 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_RGB, GL_UNSIGNED_BYTE, pixels);
82 const size_t width = 256; local
84 std::array<GLubyte, width * height * 3> pixels;
89 for (GLsizei x = 0; x < width; x++)
119 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_RGB, GL_UNSIGNED_BYTE, pixels.data());
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dnullvideorenderer.h37 virtual bool SetSize(int width, int height, int reserved) { argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dalloccommon.c47 int vp8_alloc_frame_buffers(VP8_COMMON *oci, int width, int height) argument
54 if ((width & 0xf) != 0)
55 width += 16 - (width & 0xf);
65 if (vp8_yv12_alloc_frame_buffer(&oci->yv12_fb[i], width, height, VP8BORDERINPIXELS) < 0)
79 if (vp8_yv12_alloc_frame_buffer(&oci->temp_scale_frame, width, 16, VP8BORDERINPIXELS) < 0)
83 oci->mb_cols = width >> 4;
102 if (vp8_yv12_alloc_frame_buffer(&oci->post_proc_buffer, width, height, VP8BORDERINPIXELS) < 0)
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dy4menc.c14 int y4m_write_file_header(char *buf, size_t len, int width, int height, argument
54 return snprintf(buf, len, "YUV4MPEG2 W%u H%u F%u:%u I%c %s", width, height,
/external/chromium_org/third_party/libyuv/unit_test/
H A Dunit_test.cc34 const char* width = getenv("LIBYUV_WIDTH"); local
35 if (width) {
36 benchmark_width_ = atoi(width); // NOLINT
/external/chromium_org/third_party/mesa/src/src/egl/wayland/wayland-egl/
H A Dwayland-egl.c9 int width, int height,
12 egl_window->width = width;
23 int width, int height)
34 wl_egl_window_resize(egl_window, width, height, 0, 0);
49 int *width, int *height)
51 if (width)
52 *width = egl_window->attached_width;
8 wl_egl_window_resize(struct wl_egl_window *egl_window, int width, int height, int dx, int dy) argument
22 wl_egl_window_create(struct wl_surface *surface, int width, int height) argument
48 wl_egl_window_get_attached_size(struct wl_egl_window *egl_window, int *width, int *height) argument
/external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-null/
H A Dgraw_null.c9 unsigned width,
7 graw_create_window_and_screen( int x, int y, unsigned width, unsigned height, enum pipe_format format, void **handle) argument
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glapi.c76 void apple_glapi_oglfw_viewport_scissor(GLint x, GLint y, GLsizei width, GLsizei height) { argument
78 __ogl_framework_api->Viewport(x, y, width, height);
79 __ogl_framework_api->Scissor(x, y, width, height);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_pixel_draw.c44 GLsizei width, GLsizei height,
51 _swrast_DrawPixels(ctx, x, y, width, height, format, type,
56 _mesa_meta_DrawPixels(ctx, x, y, width, height, format, type,
42 intelDrawPixels(struct gl_context * ctx, GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, const struct gl_pixelstore_attrib *unpack, const GLvoid * pixels) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_pixel_draw.c44 GLsizei width, GLsizei height,
51 _swrast_DrawPixels(ctx, x, y, width, height, format, type,
56 _mesa_meta_DrawPixels(ctx, x, y, width, height, format, type,
42 intelDrawPixels(struct gl_context * ctx, GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, const struct gl_pixelstore_attrib *unpack, const GLvoid * pixels) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_pixel_draw.c44 GLsizei width, GLsizei height,
51 _swrast_DrawPixels(ctx, x, y, width, height, format, type,
56 _mesa_meta_DrawPixels(ctx, x, y, width, height, format, type,
42 intelDrawPixels(struct gl_context * ctx, GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, const struct gl_pixelstore_attrib *unpack, const GLvoid * pixels) argument
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dscissor.c36 _mesa_Scissor( GLint x, GLint y, GLsizei width, GLsizei height ) argument
42 _mesa_debug(ctx, "glScissor %d %d %d %d\n", x, y, width, height);
44 if (width < 0 || height < 0) {
49 _mesa_set_scissor(ctx, x, y, width, height);
57 * \param width width of the scissor box.
68 GLint x, GLint y, GLsizei width, GLsizei height)
72 width == ctx->Scissor.Width &&
79 ctx->Scissor.Width = width;
83 ctx->Driver.Scissor( ctx, x, y, width, heigh
67 _mesa_set_scissor(struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height) argument
[all...]
/external/chromium_org/third_party/npapi/npspy/windows/
H A Dloggerw.h1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
49 int width; member in class:LoggerWin
/external/chromium_org/third_party/skia/dm/
H A DDMSKPTask.cpp8 DEFINE_int32(skpMaxWidth, 1000, "Max SKPTask viewport width.");
22 const int width = SkTMin(SkScalarCeilToInt(fPicture->cullRect().width()), FLAGS_skpMaxWidth), local
25 AllocatePixels(kN32_SkColorType, width, height, &bitmap);
/external/chromium_org/third_party/skia/src/core/
H A DSkBBHFactory.cpp13 SkBBoxHierarchy* SkRTreeFactory::operator()(int width, int height) const { argument
19 SkScalar aspectRatio = SkScalarDiv(SkIntToScalar(width),
27 SkBBoxHierarchy* SkTileGridFactory::operator()(int width, int height) const { argument
28 SkASSERT(fInfo.fMargin.width() >= 0);
34 int xTileCount = (width + fInfo.fTileInterval.width() - 1) / fInfo.fTileInterval.width();
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRectanizer.h17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument
18 SkASSERT(width >= 0);
26 int width() const { return fWidth; } function in class:GrRectanizer
31 virtual bool addRect(int width, int height, SkIPoint16* loc) = 0;
37 static GrRectanizer* Factory(int width, int height);
/external/chromium_org/third_party/skia/src/image/
H A DSkImage_Base.h15 SkImage_Base(int width, int height) : INHERITED(width, height) {} argument
/external/chromium_org/third_party/skia/tests/
H A DBitmapHasherTest.cpp18 static void CreateTestBitmap(SkBitmap* bitmap, int width, int height, argument
20 bitmap->allocN32Pixels(width, height, kOpaque_SkAlphaType);
/external/chromium_org/third_party/webrtc/test/
H A Dvideo_renderer.cc25 size_t width,
27 VideoRenderer* renderer = CreatePlatformRenderer(window_title, width, height);
24 Create(const char* window_title, size_t width, size_t height) argument
/external/chromium_org/third_party/webrtc/tools/converter/
H A Drgba_to_i420_converter.cc26 * --output_file=<output_yuv_file> --width=<width_of_input_frames>
33 " --frames_dir=. --output_file=output.yuv --width=320 --height=240\n"
37 " - width(int): Width in pixels of the frames in the input file."
54 parser.SetFlag("width", "-1");
67 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10); local
70 if (width <= 0 || height <= 0) {
71 fprintf(stderr, "Error: width or height cannot be <= 0!\n");
77 webrtc::test::Converter converter(width, height);
/external/chromium_org/third_party/webrtc/tools/frame_analyzer/
H A Dframe_analyzer.cc39 * --test_file=<name_of_file> --stats_file=<name_of_file> --width=<frame_width>
46 "--reference_file=ref.yuv --test_file=test.yuv --width=320 --height=240\n"
48 " - width(int): The width of the reference and test files. Default: -1\n"
66 parser.SetFlag("width", "-1");
80 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10); local
83 if (width <= 0 || height <= 0) {
84 fprintf(stderr, "Error: width or height cannot be <= 0!\n");
92 parser.GetFlag("stats_file").c_str(), width, heigh
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Dsize_base.h12 // A size has width and height values.
16 Type width() const { return width_; } function in class:gfx::SizeBase
21 void SetSize(Type width, Type height) { argument
22 set_width(width);
26 void Enlarge(Type width, Type height) { argument
27 set_width(width_ + width);
31 void set_width(Type width) { argument
32 width_ = width < 0 ? 0 : width;
53 SizeBase(Type width, Typ
[all...]
/external/chromium_org/ui/views/controls/table/
H A Dtable_utils_unittest.cc29 ui::TableColumn CreateTableColumnWithWidth(int width) { argument
31 column.width = width;
37 // Verifies columns with a specified width is honored.
92 // The same with a slightly larger width passed in.
/external/chromium_org/ui/views/test/
H A Dtest_views.h33 void set_preferred_width(int width) { preferred_width_ = width; } argument
39 // The multiplicative factor between width and height, i.e.
40 // height = width * factor_.
43 // The width used as the preferred size. -1 if not used.

Completed in 9803 milliseconds

1234567891011>>