Searched refs:width (Results 1 - 25 of 2975) sorted by relevance

1234567891011>>

/external/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DSimpleTarget.java5 * of non essential methods that allows the caller to specify an exact width/height. Typicaly use cases look something
27 private final int width; field in class:SimpleTarget
47 * @param width The width in pixels of the desired resource.
50 public SimpleTarget(int width, int height) { argument
51 this.width = width;
62 if (width <= 0 || height <= 0) {
63 throw new IllegalArgumentException("Width and height must both be > 0, but given width: " + width
[all...]
H A DSizeReadyCallback.java11 * @param width The width in pixels of the target.
14 void onSizeReady(int width, int height); argument
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/tests/yui/
H A Dconcat-charset.css4 border-width:1px;
14 border-width:10px;
/external/deqp/framework/common/
H A DtcuSurface.cpp34 Surface::Surface(int width, int height) argument
35 : m_width (width)
37 , m_pixels (width*height)
49 * \param width New width.
52 void Surface::setSize (int width, int height) argument
54 m_width = width;
56 m_pixels.resize(width*height);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DQuad.java42 * side is located at the width/height coordinates (width, height, 0).
48 private float width; field in class:Quad
58 * Create a quad with the given width and height. The quad
61 * @param width The X extent or width
62 * @param height The Y extent or width
64 public Quad(float width, float height){ argument
65 updateGeometry(width, height);
69 * Create a quad with the given width an
77 Quad(float width, float height, boolean flipCoords) argument
89 updateGeometry(float width, float height) argument
93 updateGeometry(float width, float height, boolean flipCoords) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DFixedPointPreCompInfo.java15 * The width used for the precomputation. If a larger width precomputation
17 * code should refer to the actual width.
19 protected int width = -1; field in class:FixedPointPreCompInfo
33 return width;
36 public void setWidth(int width) argument
38 this.width = width;
/external/lldb/examples/customization/bin-utils/
H A Dbinutils.py5 def binary(n, width=None):
8 If you specify a width, it must be > 0, otherwise it is ignored. The list
9 could be padded with 0 bits if width is specified.
12 if width and width <= 0:
13 width = None
18 if width:
19 for i in range(width - len(l)):
25 def twos_complement(n, width):
27 Return a list of (0|1)'s for the binary representation of a width
[all...]
/external/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);
H A DGrRectanizer_pow2.cpp11 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) { argument
12 if ((unsigned)width > (unsigned)this->width() ||
17 int32_t area = width * height; // computed here since height will be modified
33 if (!row->canAddWidth(width, this->width())) {
44 SkASSERT(row->canAddWidth(width, this->width()));
46 row->fLoc.fX += width;
48 SkASSERT(row->fLoc.fX <= this->width());
[all...]
/external/v8/src/arm64/
H A Dutils-arm64.cc16 int CountLeadingZeros(uint64_t value, int width) { argument
18 DCHECK((width == 32) || (width == 64));
20 uint64_t bit_test = 1UL << (width - 1);
21 while ((count < width) && ((bit_test & value) == 0)) {
29 int CountLeadingSignBits(int64_t value, int width) { argument
31 DCHECK((width == 32) || (width == 64));
33 return CountLeadingZeros(value, width) - 1;
35 return CountLeadingZeros(~value, width)
40 CountTrailingZeros(uint64_t value, int width) argument
51 CountSetBits(uint64_t value, int width) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DRectangle.java41 public final float x, y, width, height; field in class:Rectangle
47 * @param width the width of the rectangle
50 public Rectangle(float x, float y, float width, float height) { argument
53 this.width = width;
/external/vixl/src/vixl/
H A Dcompiler-intrinsics.cc32 int CountLeadingSignBitsFallBack(int64_t value, int width) { argument
33 VIXL_ASSERT(IsPowerOf2(width) && (width <= 64));
35 return CountLeadingZeros(value, width) - 1;
37 return CountLeadingZeros(~value, width) - 1;
42 int CountLeadingZerosFallBack(uint64_t value, int width) { argument
43 VIXL_ASSERT(IsPowerOf2(width) && (width <= 64));
45 return width;
48 value = value << (64 - width);
77 CountSetBitsFallBack(uint64_t value, int width) argument
112 CountTrailingZerosFallBack(uint64_t value, int width) argument
[all...]
/external/libvpx/libvpx/third_party/libyuv/source/
H A Drotate_mips.cc26 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],
24 TransposeWx8_MIPS_DSPR2(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width) argument
109 TransposeWx8_FAST_MIPS_DSPR2(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width) argument
312 TransposeUVWx8_MIPS_DSPR2(const uint8* src, int src_stride, uint8* dst_a, int dst_stride_a, uint8* dst_b, int dst_stride_b, int width) argument
[all...]
H A Dconvert_from_argb.cc30 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 >
26 ARGBToI444(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
100 ARGBToI422(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
178 ARGBToI411(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
252 ARGBToNV12(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
355 ARGBToNV21(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
458 ARGBToYUY2(const uint8* src_argb, int src_stride_argb, uint8* dst_yuy2, int dst_stride_yuy2, int width, int height) argument
559 ARGBToUYVY(const uint8* src_argb, int src_stride_argb, uint8* dst_uyvy, int dst_stride_uyvy, int width, int height) argument
660 ARGBToI400(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, int width, int height) argument
725 ARGBToRGBA(const uint8* src_argb, int src_stride_argb, uint8* dst_rgba, int dst_stride_rgba, int width, int height) argument
736 ARGBToRGB24(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb24, int dst_stride_rgb24, int width, int height) argument
783 ARGBToRAW(const uint8* src_argb, int src_stride_argb, uint8* dst_raw, int dst_stride_raw, int width, int height) argument
830 ARGBToRGB565(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
878 ARGBToARGB1555(const uint8* src_argb, int src_stride_argb, uint8* dst_argb1555, int dst_stride_argb1555, int width, int height) argument
926 ARGBToARGB4444(const uint8* src_argb, int src_stride_argb, uint8* dst_argb4444, int dst_stride_argb4444, int width, int height) argument
974 ARGBToJ420(const uint8* src_argb, int src_stride_argb, uint8* dst_yj, int dst_stride_yj, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
1052 ARGBToJ400(const uint8* src_argb, int src_stride_argb, uint8* dst_yj, int dst_stride_yj, int width, int height) argument
[all...]
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DPlanarYUVLuminanceSource.java42 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();
65 if (row == null || row.length < width) {
66 row = new byte[width];
69 System.arraycopy(yuvData, offset, row, 0, width);
75 int width = getWidth();
80 if (width
41 PlanarYUVLuminanceSource(byte[] yuvData, int dataWidth, int dataHeight, int left, int top, int width, int height, boolean reverseHorizontal) argument
130 reverseHorizontal(int width, int height) argument
[all...]
/external/libvpx/libvpx/vp8/common/arm/
H A Dbilinearfilter_arm.h25 unsigned int width,
35 unsigned int width,
/external/replicaisland/src/com/replica/replicaisland/
H A DTexture.java28 public int width; field in class:Texture
40 width = 0;
/external/skia/src/opts/
H A DSkMorphology_opts_neon.h9 int width, int height, int srcStride, int dstStride);
11 int width, int height, int srcStride, int dstStride);
13 int width, int height, int srcStride, int dstStride);
15 int width, int height, int srcStride, int dstStride);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
H A DMemoryFlyoutPreferences.java29 public MemoryFlyoutPreferences(int dockLocation, int state, int width) { argument
32 m_width = width;
60 public void setWidth(int width) { argument
61 m_width = width;
/external/harfbuzz_ng/util/
H A Dansi-print.hh34 unsigned int width,
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_other.h39 unsigned width, unsigned height);
44 unsigned width, unsigned height);
53 unsigned width, unsigned height);
58 unsigned width, unsigned height);
64 unsigned width, unsigned height);
69 unsigned width, unsigned height);
78 unsigned width, unsigned height);
83 unsigned width, unsigned height);
89 unsigned width, unsigned height);
94 unsigned width, unsigne
[all...]
/external/webp/src/utils/
H A Dquant_levels_dec.h23 // Apply post-processing to input 'data' of size 'width'x'height' assuming that
28 int WebPDequantizeLevels(uint8_t* const data, int width, int height,
/external/libcxx/test/std/input.output/iostreams.base/ios.base/fmtflags.state/
H A Dwidth_streamsize.pass.cpp14 // streamsize width(streamsize wide);
32 assert(t.width() == 0);
33 std::streamsize w = t.width(4);
35 assert(t.width() == 4);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_tile_image.h35 unsigned width, unsigned height,
44 unsigned width, unsigned height,
53 unsigned width, unsigned height,
/external/skia/src/core/
H A DSkMatrixUtils.h20 * Given a matrix and width/height, return true if the computed dst-rect would
25 * The src-rect is defined to be { 0, 0, width, height }
31 bool SkTreatAsSprite(const SkMatrix&, int width, int height,
39 int width, int height) {
40 return SkTreatAsSprite(matrix, width, height, kSkSubPixelBitsForBilerp);
38 SkTreatAsSpriteFilter(const SkMatrix& matrix, int width, int height) argument

Completed in 3334 milliseconds

1234567891011>>