Searched refs:width (Results 1 - 25 of 4315) 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/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.setStorage(width * height);
/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/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.cpp10 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) { argument
11 if ((unsigned)width > (unsigned)this->width() ||
16 int32_t area = width * height; // computed here since height will be modified
32 if (!row->canAddWidth(width, this->width())) {
43 SkASSERT(row->canAddWidth(width, this->width()));
45 row->fLoc.fX += width;
47 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/skia/gm/
H A Dthinconcavepaths.cpp14 void draw_thin_stroked_rect(SkCanvas* canvas, const SkPaint& paint, SkScalar width) { argument
16 path.moveTo(10 + width, 10 + width);
17 path.lineTo(40, 10 + width);
19 path.lineTo(10 + width, 20);
21 path.lineTo(10, 20 + width);
22 path.lineTo(40 + width, 20 + width);
23 path.lineTo(40 + width, 10);
27 void draw_thin_right_angle(SkCanvas* canvas, const SkPaint& paint, SkScalar width) { argument
39 draw_golf_club(SkCanvas* canvas, const SkPaint& paint, SkScalar width) argument
52 draw_barbell(SkCanvas* canvas, const SkPaint& paint, SkScalar width) argument
68 draw_thin_rect_and_triangle(SkCanvas* canvas, const SkPaint& paint, SkScalar width) argument
83 draw_hipster_pants(SkCanvas* canvas, const SkPaint& paint, SkScalar width) argument
95 draw_skinny_snake(SkCanvas* canvas, const SkPaint& paint, SkScalar width) argument
109 draw_pointy_golf_club(SkCanvas* canvas, const SkPaint& paint, SkScalar width) argument
[all...]
/external/autotest/client/deps/glbench/src/
H A Dpng_helper.h8 void write_png_file(const char* file_name, char* pixels, int width, int height);
/external/skia/fuzz/
H A DFuzzScaleToSides.cpp19 float radius1, radius2, width; local
20 fuzz->next(&radius1, &radius2, &width);
24 !std::isfinite(width) ||
27 width <= 0.0f)
32 double scale = (double)width / ((double)radius1 + (double)radius2);
36 SkDebugf("%g %g %g %g\n", radius1, radius2, width, scale);
37 SkScaleToSides::AdjustRadii(width, scale, &radius1, &radius2);
/external/vixl/src/
H A Dcompiler-intrinsics-vixl.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 uint8* dst, int dst_stride, 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)
110 uint8* dst, int dst_stride, int width) {
115 "beqz %[width], 2f \n"
123 "srl $AT, %[width],
25 TransposeWx8_DSPR2(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width) argument
109 TransposeWx8_Fast_DSPR2(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width) argument
311 TransposeUVWx8_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.cc29 int width, int height) {
31 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int width) =
34 int width) = ARGBToUV444Row_C;
35 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) {
44 if (src_stride_argb == width * 4 &&
45 dst_stride_y == width &&
46 dst_stride_u == width &&
47 dst_stride_v == width) {
48 width *= height;
55 if (IS_ALIGNED(width, 1
25 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
106 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
186 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
258 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
367 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
476 ARGBToYUY2(const uint8* src_argb, int src_stride_argb, uint8* dst_yuy2, int dst_stride_yuy2, int width, int height) argument
578 ARGBToUYVY(const uint8* src_argb, int src_stride_argb, uint8* dst_uyvy, int dst_stride_uyvy, int width, int height) argument
680 ARGBToI400(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, int width, int height) argument
741 ARGBToRGBA(const uint8* src_argb, int src_stride_argb, uint8* dst_rgba, int dst_stride_rgba, int width, int height) argument
752 ARGBToRGB24(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb24, int dst_stride_rgb24, int width, int height) argument
800 ARGBToRAW(const uint8* src_argb, int src_stride_argb, uint8* dst_raw, int dst_stride_raw, int width, int height) argument
856 ARGBToRGB565Dither(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, const uint8* dither4x4, int width, int height) argument
909 ARGBToRGB565(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
965 ARGBToARGB1555(const uint8* src_argb, int src_stride_argb, uint8* dst_argb1555, int dst_stride_argb1555, int width, int height) argument
1021 ARGBToARGB4444(const uint8* src_argb, int src_stride_argb, uint8* dst_argb4444, int dst_stride_argb4444, int width, int height) argument
1077 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
1151 ARGBToJ422(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
1229 ARGBToJ400(const uint8* src_argb, int src_stride_argb, uint8* dst_yj, int dst_stride_yj, int width, int height) argument
[all...]
/external/libyuv/files/source/
H A Drotate_dspr2.cc28 int width) {
64 "addiu %[width], -1 \n"
67 "bnez %[width], 1b \n"
92 "addiu %[width], -1 \n"
96 "bnez %[width], 11b \n"
100 : [src] "+r"(src), [dst] "+r"(dst), [width] "+r"(width)
109 int width) {
114 "beqz %[width], 2f \n"
122 "srl $AT, %[width],
24 TransposeWx8_DSPR2(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width) argument
105 TransposeWx8_Fast_DSPR2(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width) argument
306 TransposeUVWx8_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 Dplanar_functions.cc33 int width,
36 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C;
44 if (src_stride_y == width && dst_stride_y == width) {
45 width *= height;
55 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2;
60 CopyRow = IS_ALIGNED(width, 64) ? CopyRow_AVX : CopyRow_Any_AVX;
70 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_NEON : CopyRow_Any_NEON;
81 CopyRow(src_y, dst_y, width);
94 int width,
29 CopyPlane(const uint8* src_y, int src_stride_y, uint8* dst_y, int dst_stride_y, int width, int height) argument
90 CopyPlane_16(const uint16* src_y, int src_stride_y, uint16* dst_y, int dst_stride_y, int width, int height) argument
135 I422Copy(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, 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
174 I444Copy(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, 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
212 I400ToI400(const uint8* src_y, int src_stride_y, uint8* dst_y, int dst_stride_y, int width, int height) argument
233 I420ToI400(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_y, int dst_stride_y, int width, int height) argument
264 SplitUVPlane(const uint8* src_uv, int src_stride_uv, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
335 MergeUVPlane(const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
403 MirrorPlane(const uint8* src_y, int src_stride_y, uint8* dst_y, int dst_stride_y, int width, int height) argument
468 YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2, 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
554 UYVYToI422(const uint8* src_uyvy, int src_stride_uyvy, 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
640 YUY2ToY(const uint8* src_yuy2, int src_stride_yuy2, uint8* dst_y, int dst_stride_y, int width, int height) argument
707 I400Mirror(const uint8* src_y, int src_stride_y, uint8* dst_y, int dst_stride_y, int width, int height) argument
729 I420Mirror(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, 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
771 ARGBMirror(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
854 ARGBBlend(const uint8* src_argb0, int src_stride_argb0, const uint8* src_argb1, int src_stride_argb1, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
893 BlendPlane(const uint8* src_y0, int src_stride_y0, const uint8* src_y1, int src_stride_y1, const uint8* alpha, int alpha_stride, uint8* dst_y, int dst_stride_y, int width, int height) argument
955 I420Blend(const uint8* src_y0, int src_stride_y0, const uint8* src_u0, int src_stride_u0, const uint8* src_v0, int src_stride_v0, const uint8* src_y1, int src_stride_y1, const uint8* src_u1, int src_stride_u1, const uint8* src_v1, int src_stride_v1, const uint8* alpha, int alpha_stride, 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
1079 ARGBMultiply(const uint8* src_argb0, int src_stride_argb0, const uint8* src_argb1, int src_stride_argb1, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
1151 ARGBAdd(const uint8* src_argb0, int src_stride_argb0, const uint8* src_argb1, int src_stride_argb1, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
1228 ARGBSubtract(const uint8* src_argb0, int src_stride_argb0, const uint8* src_argb1, int src_stride_argb1, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
1298 I422ToRGBAMatrix(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgba, int dst_stride_rgba, const struct YuvConstants* yuvconstants, int width, int height) argument
1377 I422ToRGBA(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgba, int dst_stride_rgba, int width, int height) argument
1394 I422ToBGRA(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_bgra, int dst_stride_bgra, int width, int height) argument
1413 NV12ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_uv, int src_stride_uv, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
1480 RAWToRGB24(const uint8* src_raw, int src_stride_raw, uint8* dst_rgb24, int dst_stride_rgb24, int width, int height) argument
1538 SetPlane(uint8* dst_y, int dst_stride_y, int width, int height, uint32 value) argument
1587 I420Rect(uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int x, int y, int width, int height, int value_y, int value_u, int value_v) argument
1619 ARGBRect(uint8* dst_argb, int dst_stride_argb, int dst_x, int dst_y, int width, int height, uint32 value) argument
1688 ARGBAttenuate(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
1754 ARGBUnattenuate(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
1805 ARGBGrayTo(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
1854 ARGBGray(uint8* dst_argb, int dst_stride_argb, int dst_x, int dst_y, int width, int height) argument
1898 ARGBSepia(uint8* dst_argb, int dst_stride_argb, int dst_x, int dst_y, int width, int height) argument
1942 ARGBColorMatrix(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, const int8* matrix_argb, int width, int height) argument
1988 RGBColorMatrix(uint8* dst_argb, int dst_stride_argb, const int8* matrix_rgb, int dst_x, int dst_y, int width, int height) argument
2025 ARGBColorTable(uint8* dst_argb, int dst_stride_argb, const uint8* table_argb, int dst_x, int dst_y, int width, int height) argument
2061 RGBColorTable(uint8* dst_argb, int dst_stride_argb, const uint8* table_argb, int dst_x, int dst_y, int width, int height) argument
2104 ARGBQuantize(uint8* dst_argb, int dst_stride_argb, int scale, int interval_size, int interval_offset, int dst_x, int dst_y, int width, int height) argument
2147 ARGBComputeCumulativeSum(const uint8* src_argb, int src_stride_argb, int32* dst_cumsum, int dst_stride32_cumsum, int width, int height) argument
2181 ARGBBlur(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int32* dst_cumsum, int dst_stride32_cumsum, int width, int height, int radius) argument
2291 ARGBShade(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height, uint32 value) argument
2341 InterpolatePlane(const uint8* src0, int src_stride0, const uint8* src1, int src_stride1, uint8* dst, int dst_stride, int width, int height, int interpolation) argument
2421 ARGBInterpolate(const uint8* src_argb0, int src_stride_argb0, const uint8* src_argb1, int src_stride_argb1, uint8* dst_argb, int dst_stride_argb, int width, int height, int interpolation) argument
2437 I420Interpolate(const uint8* src0_y, int src0_stride_y, const uint8* src0_u, int src0_stride_u, const uint8* src0_v, int src0_stride_v, const uint8* src1_y, int src1_stride_y, const uint8* src1_u, int src1_stride_u, const uint8* src1_v, int src1_stride_v, 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, int interpolation) argument
2475 ARGBShuffle(const uint8* src_bgra, int src_stride_bgra, uint8* dst_argb, int dst_stride_argb, const uint8* shuffler, int width, int height) argument
2550 ARGBSobelize(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height, void (*SobelRow)(const uint8* src_sobelx, const uint8* src_sobely, uint8* dst, int width)) argument
2682 ARGBSobel(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
2720 ARGBSobelToPlane(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, int width, int height) argument
2759 ARGBSobelXY(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
2797 ARGBPolynomial(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, const float* poly, int width, int height) argument
2845 HalfFloatPlane(const uint16* src_y, int src_stride_y, uint16* dst_y, int dst_stride_y, float scale, int width, int height) argument
2917 ARGBLumaColorTable(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, const uint8* luma, int width, int height) argument
2959 ARGBCopyAlpha(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
3010 ARGBExtractAlpha(const uint8* src_argb, int src_stride, uint8* dst_a, int dst_stride, int width, int height) argument
3062 ARGBCopyYToAlpha(const uint8* src_y, int src_stride_y, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
3115 YUY2ToNV12(const uint8* src_yuy2, int src_stride_yuy2, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
3223 UYVYToNV12(const uint8* src_uyvy, int src_stride_uyvy, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, 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/pdfium/xfa/fxbarcode/qrcode/
H A DBC_QRCoderMaskUtil.cpp41 int32_t width = matrix->GetWidth(); local
44 for (int32_t x = 0; x < width - 1; x++) {
45 int32_t value = array[y * width + x];
46 if (value == array[y * width + x + 1] &&
47 value == array[(y + 1) * width + x] &&
48 value == array[(y + 1) * width + x + 1]) {
60 int32_t width = matrix->GetWidth(); local
63 for (int32_t x = 0; x < width; ++x) {
68 if (x == width - 7 && (y >= 0 && y <= 6)) {
72 ((x >= 0 && x <= 6) || (x >= width
112 int32_t width = matrix->GetWidth(); local
175 int32_t width = matrix->GetWidth(); local
[all...]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
H A Drow.h568 int width);
574 int width);
581 int width);
587 int width);
593 int width);
599 int width);
605 int width);
611 int width);
617 int width);
623 int width);
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DTexture.java28 public int width; field in class:Texture
40 width = 0;
/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/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/llvm/test/MC/AMDGPU/
H A Dmacro-examples.s7 .macro REG_NUM_EXPR_EXAMPLE width iter iter_end
8 .if \width == 4
15 REG_NUM_EXPR_EXAMPLE \width, (\iter + 1), \iter_end
/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,

Completed in 1291 milliseconds

1234567891011>>