HomeSort by relevance Sort by last modified time
    Searched refs:width (Results 301 - 325 of 7601) sorted by null

<<11121314151617181920>>

  /external/deqp/framework/opengl/simplereference/
sglrContext.cpp 37 int width = src.getWidth(); local
39 texImage2D(target, level, internalFormat, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, src.getAccess().getDataPtr());
42 void Context::texImage2D (deUint32 target, int level, deUint32 internalFormat, int width, int height)
67 texImage2D(target, level, internalFormat, width, height, 0, format, dataType, DE_NULL);
72 int width = src.getWidth(); local
74 texSubImage2D(target, level, xoffset, yoffset, width, height, GL_RGBA, GL_UNSIGNED_BYTE, src.getAccess().getDataPtr());
77 void Context::readPixels (tcu::Surface& dst, int x, int y, int width, int height)
79 dst.setSize(width, height);
80 readPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr());
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videoadapter_unittest.cc 103 captured_frame->width, abs(captured_frame->height)));
167 int width,
169 EXPECT_EQ(width, stats.adapted_width);
201 VerifyAdaptedResolution(stats, capture_format_.width, capture_format_.height);
216 VerifyAdaptedResolution(stats, capture_format_.width, capture_format_.height);
233 VerifyAdaptedResolution(stats, capture_format_.width, capture_format_.height);
250 VerifyAdaptedResolution(stats, capture_format_.width, capture_format_.height);
268 VerifyAdaptedResolution(stats, capture_format_.width, capture_format_.height);
299 request_format.width /= 2;
309 VerifyAdaptedResolution(stats, request_format.width, request_format.height)
    [all...]
  /device/generic/goldfish/camera/fake-pipeline2/
Base.h 38 uint32_t width, height; member in struct:android::StreamBuffer
48 uint32_t width, height; member in struct:android::Stream
55 uint32_t width, height; member in struct:android::ReprocessStream
  /external/arduino/hardware/arduino/cores/arduino/
wiring_pulse.c 35 // pulse width measuring loop and achieve finer resolution. calling
40 unsigned long width = 0; // keep initialization out of time critical area local
61 width++;
68 return clockCyclesToMicroseconds(width * 21 + 16);
  /external/chromium_org/cc/quads/
debug_border_draw_quad.h 23 int width);
31 int width);
34 int width; member in class:cc::DebugBorderDrawQuad
  /external/chromium_org/chrome/browser/resources/options/
font_settings.css 19 width: 100%;
27 width: 100%;
33 width: 270px;
38 width: 12em;
46 width: 100%;
53 width: 270px;
  /external/chromium_org/chrome/browser/resources/sync_internals/
sync_node_browser.css 22 /* min-width and max-width are used by the split pane. */
23 max-width: 50%;
24 min-width: 50px;
26 width: 200px;
31 min-width: 100%;
43 width: 5px;
58 width: 100%;
sync_search.css 6 width: 16em;
35 /* min-width and max-width are used by the split pane. */
36 max-width: 50%;
37 min-width: 50px;
40 width: 275px;
50 width: 5px;
58 width: 100%;
  /external/chromium_org/chrome/test/chromedriver/
basic_types.h 21 WebSize(int width, int height);
24 int width; member in struct:WebSize
30 WebRect(int x, int y, int width, int height);
36 int Width() const;
  /external/chromium_org/gpu/gles2_conform_support/native/
egl_native_windowless.cc 25 const char* title, int width, int height,
28 display->SetCreateOffscreen(width, height);
36 EGLImageKHR GTFCreateEGLImage(int width, int height,
  /external/chromium_org/skia/ext/
bitmap_platform_device_mac.cc 24 static CGContextRef CGContextForData(void* data, int width, int height) {
32 // CGBitmapContextCreate returns NULL if width/height are 0. However, our
35 width = SkMax32(1, width);
38 CGBitmapContextCreate(data, width, height, 8, width * 4,
97 int width,
100 if (RasterDeviceTooBigToAllocate(width, height))
106 bitmap.setInfo(SkImageInfo::MakeN32(width, height, is_opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType));
128 context = CGContextForData(data, width, height)
    [all...]
bitmap_platform_device_skia.h 26 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque);
30 static BitmapPlatformDevice* CreateAndClear(int width, int height,
35 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque,
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMRectReadOnly.h 15 static DOMRectReadOnly* create(double x, double y, double width, double height);
19 double width() const { return m_width; } function in class:blink::DOMRectReadOnly
30 DOMRectReadOnly(double x, double y, double width, double height);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ScrollAlignment.cpp 63 LayoutRect exposeRectX(exposeRect.x(), visibleRect.y(), exposeRect.width(), visibleRect.height());
64 LayoutUnit intersectWidth = intersection(visibleRect, exposeRectX).width();
65 if (intersectWidth == exposeRect.width() || intersectWidth >= MIN_INTERSECT_FOR_REVEAL) {
70 } else if (intersectWidth == visibleRect.width()) {
86 if ((exposeRect.maxX() > visibleRect.maxX() && exposeRect.width() < visibleRect.width())
87 || (exposeRect.maxX() < visibleRect.maxX() && exposeRect.width() > visibleRect.width())) {
97 x = exposeRect.maxX() - visibleRect.width();
99 x = exposeRect.x() + (exposeRect.width() - visibleRect.width()) / 2
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatSize.cpp 39 : m_width(size.width().toFloat())
59 FloatSize FloatSize::narrowPrecision(double width, double height)
61 return FloatSize(narrowPrecisionToFloat(width), narrowPrecisionToFloat(height));
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeNonMacCommon.cpp 51 return IntRect(scrollbar->x(), scrollbar->y(), size.width(), size.height());
63 x = scrollbar->x() + scrollbar->width() - size.width();
69 return IntRect(x, y, size.width(), size.height());
79 if (scrollbar->width() <= 2 * bs.width() + 1)
81 return IntRect(scrollbar->x() + bs.width(), scrollbar->y(), scrollbar->width() - 2 * bs.width(), thickness);
100 if (rect.height() <= 0 || rect.width() <= 0
    [all...]
  /external/chromium_org/third_party/libwebp/utils/
filters.h 34 typedef void (*WebPFilterFunc)(const uint8_t* in, int width, int height,
36 typedef void (*WebPUnfilterFunc)(int width, int height, int stride,
53 int width, int height, int stride);
  /external/chromium_org/third_party/skia/dm/
DMSKPTask.cpp 8 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/include/images/
SkPageFlipper.h 27 SkPageFlipper(int width, int height);
29 int width() const { return fWidth; } function in class:SkPageFlipper
32 void resize(int width, int height);
  /external/chromium_org/third_party/skia/src/opts/
SkMorphology_opts_SSE2.cpp 26 int width, int height, int srcStride, int dstStride)
32 radius = SkMin32(radius, width - 1);
34 for (int x = 0; x < width; ++x) {
52 if (x + radius < width - 1) {
60 int width, int height, int srcStride, int dstStride)
62 SkMorph_SSE2<kDilate, kX>(src, dst, radius, width, height, srcStride, dstStride);
66 int width, int height, int srcStride, int dstStride)
68 SkMorph_SSE2<kErode, kX>(src, dst, radius, width, height, srcStride, dstStride);
72 int width, int height, int srcStride, int dstStride)
74 SkMorph_SSE2<kDilate, kY>(src, dst, radius, width, height, srcStride, dstStride)
    [all...]
SkMorphology_opts_neon.cpp 29 int width, int height, int srcStride, int dstStride)
35 radius = SkMin32(radius, width - 1);
37 for (int x = 0; x < width; ++x) {
53 if (x + radius < width - 1) upperSrc += srcStrideX;
59 int width, int height, int srcStride, int dstStride)
61 SkMorph_neon<kDilate, kX>(src, dst, radius, width, height, srcStride, dstStride);
65 int width, int height, int srcStride, int dstStride)
67 SkMorph_neon<kErode, kX>(src, dst, radius, width, height, srcStride, dstStride);
71 int width, int height, int srcStride, int dstStride)
73 SkMorph_neon<kDilate, kY>(src, dst, radius, width, height, srcStride, dstStride)
    [all...]
  /external/chromium_org/third_party/webrtc/common_video/libyuv/
webrtc_libyuv.cc 64 void Calc16ByteAlignedStride(int width, int* stride_y, int* stride_uv) {
65 *stride_y = AlignInt(width, k16ByteAlignment);
66 *stride_uv = AlignInt((width + 1) / 2, k16ByteAlignment);
69 int CalcBufferSize(VideoType type, int width, int height) {
77 int half_width = (width + 1) >> 1;
79 buffer_size = width * height + half_width * half_height * 2;
87 buffer_size = width * height * 2;
90 buffer_size = width * height * 3;
94 buffer_size = width * height * 4;
109 int width = (planeNum ? (frame.width() + 1) / 2 : frame.width()) local
138 int width = (plane ? (input_frame.width() + 1) \/ 2 : local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
differ.h 31 // Create a differ that operates on bitmaps with the specified width, height
33 Differ(int width, int height, int bytes_per_pixel, int stride);
36 int width() { return width_; } function in class:webrtc::Differ
59 // to check is specified by the |width| and |height| values.
60 // Note that if we force the capturer to always return images whose width and
65 int width, int height);
  /external/chromium_org/third_party/webrtc/test/linux/
glx_renderer.h 25 static GlxRenderer* Create(const char* window_title, size_t width,
32 GlxRenderer(size_t width, size_t height);
35 void Resize(size_t width, size_t height);
  /external/chromium_org/third_party/webrtc/test/testsupport/metrics/
video_metrics.h 68 int width,
93 int width,
114 int width,

Completed in 510 milliseconds

<<11121314151617181920>>