HomeSort by relevance Sort by last modified time
    Searched refs:width (Results 51 - 75 of 12474) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/lge/mako/camera/hdr/include/
morpho_get_image_size.h 22 * @param width ??
30 morpho_getImageSize(int width, int height, const char *p_format);
35 * @param width ??
43 morpho_getImageSizeY(int width, int height, const char *p_format);
48 * @param width ??
56 morpho_getImageSizeU(int width, int height, const char *p_format);
61 * @param width ??
69 morpho_getImageSizeV(int width, int height, const char *p_format);
74 * @param width ??
82 morpho_getImageSizeUV(int width, int height, const char *p_format);
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ColorSpace.java 31 * The input data is expected to be laid out in 3 planes. The width x height Y plane, followed
38 * @param width the width of the image (must be a multiple of 2)
42 ByteBuffer input, ByteBuffer output, int width, int height) {
43 expectInputSize(input, (3 * width * height) / 2);
44 expectOutputSize(output, width * height * 4);
45 nativeYuv420pToRgba8888(input, output, width, height);
57 * @param width the width of the image
61 ByteBuffer input, ByteBuffer output, int width, int height)
    [all...]
  /hardware/samsung_slsi/exynos5/include/
swconverter.h 115 * real width of yuv420[in]
126 unsigned int width,
141 * real width of yuv420s[in]
150 unsigned int width,
168 * real width of yuv420p[in]
177 unsigned int width,
192 * real width of yuv420[in]
203 unsigned int width,
221 * real width of yuv420[in]
231 unsigned int width,
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/
power.css 9 border-width: 0;
13 width: 1000px;
17 border-bottom-width: 2px;
19 border-left-width: 0;
20 border-right-width: 0;
22 border-top-width: 2px;
23 width: 100%;
27 border-width: 0;
30 width: 15%;
39 border-bottom-width: 0
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
rotate_mips.cc 26 int width) {
62 "addiu %[width], -1 \n"
65 "bnez %[width], 1b \n"
90 "addiu %[width], -1 \n"
94 "bnez %[width], 11b \n"
100 [width] "+r" (width)
111 int width) {
116 "beqz %[width], 2f \n"
124 "srl $AT, %[width], 0x2 \n
    [all...]
convert_from_argb.cc 30 int width, int height) {
36 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) {
45 if (src_stride_argb == width * 4 &&
46 dst_stride_y == width &&
47 dst_stride_u == width &&
48 dst_stride_v == width) {
49 width *= height;
54 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
56 if (IS_ALIGNED(width, 16)) {
64 if (TestCpuFlag(kCpuHasNEON) && width >= 8)
    [all...]
  /external/chromium_org/third_party/libyuv/source/
rotate_mips.cc 26 int width) {
62 "addiu %[width], -1 \n"
65 "bnez %[width], 1b \n"
90 "addiu %[width], -1 \n"
94 "bnez %[width], 11b \n"
100 [width] "+r" (width)
111 int width) {
116 "beqz %[width], 2f \n"
124 "srl $AT, %[width], 0x2 \n
    [all...]
convert_from_argb.cc 30 int width, int height) {
36 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) {
45 if (src_stride_argb == width * 4 &&
46 dst_stride_y == width &&
47 dst_stride_u == width &&
48 dst_stride_v == width) {
49 width *= height;
54 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
56 if (IS_ALIGNED(width, 16)) {
65 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16)
    [all...]
  /external/skia/src/core/
SkBBHFactory.cpp 15 SkBBoxHierarchy* SkQuadTreeFactory::operator()(int width, int height) const {
16 return SkNEW_ARGS(SkQuadTree, (SkIRect::MakeWH(width, height)));
19 SkBBoxHierarchy* SkRTreeFactory::operator()(int width, int height) const {
25 SkScalar aspectRatio = SkScalarDiv(SkIntToScalar(width),
33 SkBBoxHierarchy* SkTileGridFactory::operator()(int width, int height) const {
34 SkASSERT(fInfo.fMargin.width() >= 0);
40 int xTileCount = (width + fInfo.fTileInterval.width() - 1) / fInfo.fTileInterval.width();
  /external/chromium_org/third_party/WebKit/public/platform/
WebFloatRect.h 49 float width; member in struct:blink::WebFloatRect
52 bool isEmpty() const { return width <= 0 || height <= 0; }
57 , width(0)
62 WebFloatRect(float x, float y, float width, float height)
65 , width(width)
74 , width(r.width())
83 width = r.width();
    [all...]
WebRect.h 49 int width; member in struct:blink::WebRect
52 bool isEmpty() const { return width <= 0 || height <= 0; }
57 , width(0)
62 WebRect(int x, int y, int width, int height)
65 , width(width)
74 , width(r.width())
83 width = r.width();
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mb_utils.cpp 25 void PutSKIPPED_MB(uint8 *comp, uint8 *prev, int width)
42 comp += width;
43 prev += width;
53 comp += width;
54 prev += width;
64 comp += width;
65 prev += width;
74 comp += width;
75 prev += width;
86 void PutSKIPPED_B(uint8 *comp, uint8 *prev, int width)
    [all...]
  /external/chromium_org/chrome/browser/ui/panels/
docked_panel_browsertest.cc 24 DCHECK(primary_display_area.width() == 800);
46 EXPECT_EQ(panel1->GetBounds().width(), panel1->GetRestoredBounds().width());
47 EXPECT_EQ(panel2->GetBounds().width(), panel2->GetRestoredBounds().width());
48 EXPECT_EQ(panel3->GetBounds().width(), panel3->GetRestoredBounds().width());
60 // The active panel should be at full width.
61 EXPECT_EQ(panel7->GetBounds().width(), panel7->GetRestoredBounds().width());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
ImageData.idl 32 Constructor(unsigned long width, unsigned long height),
33 Constructor(Uint8ClampedArray data, unsigned long width, [Default=Undefined] optional unsigned long height),
38 readonly attribute long width;
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
PlanarYUVLuminanceSource.java 42 int width, int height, boolean reverseHorizontal) {
43 super(width, height);
45 if (left + width > dataWidth || top + height > dataHeight) {
55 reverseHorizontal(width, height);
64 int width = getWidth(); local
65 if (row == null || row.length < width) {
66 row = new byte[width];
69 System.arraycopy(yuvData, offset, row, 0, width);
75 int width = getWidth(); local
80 if (width == dataWidth && height == dataHeight)
110 int width = getWidth(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutSize.h 48 LayoutSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { }
49 LayoutSize(LayoutUnit width, LayoutUnit height) : m_width(width), m_height(height) { }
51 explicit LayoutSize(const FloatSize& size) : m_width(size.width()), m_height(size.height()) { }
53 LayoutUnit width() const { return m_width; } function in class:blink::LayoutSize
56 void setWidth(LayoutUnit width) { m_width = width; }
64 void expand(LayoutUnit width, LayoutUnit height)
66 m_width += width;
70 void shrink(LayoutUnit width, LayoutUnit height
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
lsearch.c 44 lsearch(const void *key, void *base, size_t *nelp, size_t width,
48 return(linear_base(key, base, nelp, width, compar, 1));
52 lfind(const void *key, const void *base, size_t *nelp, size_t width,
55 return(linear_base(key, base, nelp, width, compar, 0));
59 linear_base(const void *key, const void *base, size_t *nelp, size_t width,
64 end = (const char *)base + *nelp * width;
65 for (element = base; element < end; element += width)
82 memcpy((void *)end, key, width);
  /dalvik/dx/tests/028-class-attrib-EnclosingMethod/
run 17 dx --debug --dump --width=200 small-class-1.txt small-class-2.txt
  /external/chromium_org/chrome/browser/resources/
about_nacl.css 7 width: 200px;
  /external/chromium_org/chrome/browser/resources/options/
easy_unlock_turn_off_overlay.css 6 max-width: 480px;
  /external/chromium_org/chrome/browser/resources/sync_internals/
types.css 11 max-width: 80px;
12 width: 80px;
16 max-width: 200px;
17 width: 200px;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/mappy/
popup.css 13 width: 512px;
  /external/chromium_org/chrome/test/chromedriver/chrome/
device_metrics.h 9 DeviceMetrics(int width, int height, double device_scale_factor);
12 int width; member in struct:DeviceMetrics
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
WordMeasurement.h 38 , width(0)
45 float width; member in class:blink::WordMeasurement
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/
bilinearfilter_arm.h 25 unsigned int width,
35 unsigned int width,

Completed in 6090 milliseconds

1 23 4 5 6 7 8 91011>>