Home
last modified time | relevance | path

Searched full:width (Results 1 – 25 of 6348) sorted by relevance

12345678910>>...254

/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/
Dint128_stream_test.cc27 std::streamsize width; member
34 std::streamsize width) { in StreamFormatToString() argument
67 msg << "\n StreamFormatToString(test_case.flags, test_case.width)\n " in StreamFormatToString()
75 msg << "\n width: " << width << "\n fill: '" << kFill << "'"; in StreamFormatToString()
82 os.width(test_case.width); in CheckUint128Case()
85 SCOPED_TRACE(StreamFormatToString(test_case.flags, test_case.width)); in CheckUint128Case()
100 CheckUint128Case({1, kDec, /*width = */ 0, "1"}); in TEST()
101 CheckUint128Case({1, kOct, /*width = */ 0, "1"}); in TEST()
102 CheckUint128Case({1, kHex, /*width = */ 0, "1"}); in TEST()
103 CheckUint128Case({9, kDec, /*width = */ 0, "9"}); in TEST()
[all …]
/third_party/skia/gm/
Dthinconcavepaths.cpp16 void draw_thin_stroked_rect(SkCanvas* canvas, const SkPaint& paint, SkScalar width) { in draw_thin_stroked_rect() argument
18 path.moveTo(10 + width, 10 + width); in draw_thin_stroked_rect()
19 path.lineTo(40, 10 + width); in draw_thin_stroked_rect()
21 path.lineTo(10 + width, 20); in draw_thin_stroked_rect()
23 path.lineTo(10, 20 + width); in draw_thin_stroked_rect()
24 path.lineTo(40 + width, 20 + width); in draw_thin_stroked_rect()
25 path.lineTo(40 + width, 10); in draw_thin_stroked_rect()
29 void draw_thin_right_angle(SkCanvas* canvas, const SkPaint& paint, SkScalar width) { in draw_thin_right_angle() argument
31 path.moveTo(10 + width, 10 + width); in draw_thin_right_angle()
32 path.lineTo(40, 10 + width); in draw_thin_right_angle()
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcCompressedFormatTests_data.inl26 GLsizei width; member
37 240, // GLsizei width
42 120, // GLsizei width
47 240, // GLsizei width
57 240, // GLsizei width
62 120, // GLsizei width
67 240, // GLsizei width
77 240, // GLsizei width
82 120, // GLsizei width
87 240, // GLsizei width
[all …]
/third_party/skia/src/images/
DSkImageEncoderFns.h17 typedef void (*transform_scanline_proc)(char* dst, const char* src, int width, int bpp);
19 static inline void transform_scanline_memcpy(char* dst, const char* src, int width, int bpp) { in transform_scanline_memcpy() argument
20 memcpy(dst, src, width * bpp); in transform_scanline_memcpy()
23 static inline void transform_scanline_A8_to_GrayAlpha(char* dst, const char* src, int width, int) { in transform_scanline_A8_to_GrayAlpha() argument
24 for (int i = 0; i < width; i++) { in transform_scanline_A8_to_GrayAlpha()
38 static inline void transform_scanline_gray(char* dst, const char* src, int width, int) { in transform_scanline_gray() argument
39 skcms(dst, src, width, in transform_scanline_gray()
44 static inline void transform_scanline_565(char* dst, const char* src, int width, int) { in transform_scanline_565() argument
45 skcms(dst, src, width, in transform_scanline_565()
50 static inline void transform_scanline_RGBX(char* dst, const char* src, int width, int) { in transform_scanline_RGBX() argument
[all …]
/third_party/mesa3d/src/util/format/
Du_format_bptc.c38 unsigned width, unsigned height) in util_format_bptc_rgba_unorm_unpack_rgba_8unorm() argument
40 decompress_rgba_unorm(width, height, in util_format_bptc_rgba_unorm_unpack_rgba_8unorm()
48 unsigned width, unsigned height) in util_format_bptc_rgba_unorm_pack_rgba_8unorm() argument
50 compress_rgba_unorm(width, height, in util_format_bptc_rgba_unorm_pack_rgba_8unorm()
58 unsigned width, unsigned height) in util_format_bptc_rgba_unorm_unpack_rgba_float() argument
61 temp_block = malloc(width * height * 4 * sizeof(uint8_t)); in util_format_bptc_rgba_unorm_unpack_rgba_float()
62 decompress_rgba_unorm(width, height, in util_format_bptc_rgba_unorm_unpack_rgba_float()
64 temp_block, width * 4 * sizeof(uint8_t)); in util_format_bptc_rgba_unorm_unpack_rgba_float()
70 temp_block + 4 * width * y, in util_format_bptc_rgba_unorm_unpack_rgba_float()
71 width); in util_format_bptc_rgba_unorm_unpack_rgba_float()
[all …]
Du_format_zs.h42 …dst_stride, const uint8_t *restrict src_row, unsigned src_stride, unsigned width, unsigned height);
46 …dst_stride, const uint8_t *restrict src_row, unsigned src_stride, unsigned width, unsigned height);
50 …dst_stride, const uint8_t *restrict src_row, unsigned src_stride, unsigned width, unsigned height);
54 …d dst_stride, const float *restrict src_row, unsigned src_stride, unsigned width, unsigned height);
58 …dst_stride, const uint8_t *restrict src_row, unsigned src_stride, unsigned width, unsigned height);
62 …st_stride, const uint32_t *restrict src_row, unsigned src_stride, unsigned width, unsigned height);
66 …dst_stride, const uint8_t *restrict src_row, unsigned src_stride, unsigned width, unsigned height);
70 …d dst_stride, const float *restrict src_row, unsigned src_stride, unsigned width, unsigned height);
74 …dst_stride, const uint8_t *restrict src_row, unsigned src_stride, unsigned width, unsigned height);
78 …st_stride, const uint32_t *restrict src_row, unsigned src_stride, unsigned width, unsigned height);
[all …]
/third_party/skia/third_party/externals/angle2/src/image_util/
Dloadimage.h18 void LoadA8ToRGBA8(size_t width,
28 void LoadA8ToBGRA8(size_t width,
38 void LoadA32FToRGBA32F(size_t width,
48 void LoadA16FToRGBA16F(size_t width,
58 void LoadL8ToRGBA8(size_t width,
68 void LoadL8ToBGRA8(size_t width,
78 void LoadL32FToRGBA32F(size_t width,
88 void LoadL16FToRGBA16F(size_t width,
98 void LoadLA8ToRGBA8(size_t width,
108 void LoadLA8ToBGRA8(size_t width,
[all …]
/third_party/python/Tools/msi/bundle/
DDefault.thm3 <Window Width="670" Height="412" HexStyle="100a0000" FontId="0">#(loc.Caption)</Window>
12 …<Text X="185" Y="11" Width="-11" Height="36" FontId="1" DisablePrefix="yes">#(loc.HelpHeader)</Tex…
13 <Image X="0" Y="0" Width="178" Height="382" ImageFile="SideBar.png"/>
15 …<Hypertext X="185" Y="50" Width="-11" Height="-35" FontId="3" DisablePrefix="yes">#(loc.HelpText)<…
16 …<Button Name="SuccessCancelButton" X="-11" Y="-11" Width="85" Height="27" TabStop="yes" FontId="0"…
19 …<Text X="185" Y="11" Width="-11" Height="36" FontId="1" DisablePrefix="yes">#(loc.InstallHeader)</…
20 <Image X="0" Y="0" Width="178" Height="382" ImageFile="SideBar.png"/>
22 … <Text X="185" Y="50" Width="-11" Height="50" FontId="3" TabStop="yes">#(loc.InstallMessage)</Text>
24 …<Button Name="InstallButton" X="185" Y="101" Width="-11" Height="109" TabStop="yes" FontId="3" Hex…
25 …<Button Name="InstallCustomButton" X="185" Y="221" Width="-11" Height="59" TabStop="yes" FontId="3…
[all …]
/third_party/ffmpeg/tests/checkasm/
Dllviddsp.c39 #define init_buffer(a0, a1, type, width)\ argument
42 randomize_buffers(a0, width * sizeof(type));\
43 memcpy(a1, a0, width*sizeof(type));\
45 static void check_add_bytes(LLVidDSPContext c, int width) in check_add_bytes() argument
47 uint8_t *dst0 = av_mallocz(width); in check_add_bytes()
48 uint8_t *dst1 = av_mallocz(width); in check_add_bytes()
49 uint8_t *src0 = av_calloc(width, sizeof(*src0)); in check_add_bytes()
50 uint8_t *src1 = av_calloc(width, sizeof(*src1)); in check_add_bytes()
53 init_buffer(src0, src1, uint8_t, width); in check_add_bytes()
60 call_ref(dst0, src0, width); in check_add_bytes()
[all …]
/third_party/alsa-lib/doc/pictures/
Ducm-seq-verb.svg1width:583px;height:584px;background:#FFFFFF;" version="1.1" viewBox="0 0 583 584" width="583px" zo…
Ducm-seq-device.svg1width:462px;height:598px;background:#FFFFFF;" version="1.1" viewBox="0 0 462 598" width="462px" zo…
Ducm-seq-boot.svg1width:500px;height:508px;background:#FFFFFF;" version="1.1" viewBox="0 0 500 508" width="500px" zo…
/third_party/elfio/doc/images/colorsvg/
Dimportant.svg7 <svg version="1.1" id="Caution" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" v…
10 …<path stroke="#FFFFFF" stroke-width="6.6112" d="M42.35,35.841L27.248,9.941c-0.602-1-1.699-1.7-2.89…
14 …<path fill="#FFFFFF" stroke="#009900" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin…
16 …<polygon fill="#FFFFFF" stroke="#009A00" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
18 …<polygon fill="#FFFFFF" stroke="#009B01" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
20 …<polygon fill="#FFFFFF" stroke="#009C01" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
22 …<polygon fill="#FFFFFF" stroke="#009D02" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
24 …<polygon fill="#FFFFFF" stroke="#009E02" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
26 …<polygon fill="#FFFFFF" stroke="#009F03" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
28 …<polygon fill="#FFFFFF" stroke="#00A003" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
[all …]
Dcaution.svg7 <svg version="1.1" id="caution" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" v…
12 …<path stroke="#FFFFFF" stroke-width="6.6112" d="M41.629,36.303L26.527,10.403c-0.602-1-1.698-1.7-2.…
16 …<path fill="#FFFFFF" stroke="#FFCC00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin…
18 …<polygon fill="#FFFFFF" stroke="#FFCD00" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
20 …<polygon fill="#FFFFFF" stroke="#FFCE00" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
22 …<polygon fill="#FFFFFF" stroke="#FFCF00" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
24 …<polygon fill="#FFFFFF" stroke="#FFD000" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
26 …<polygon fill="#FFFFFF" stroke="#FFD100" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
28 …<polygon fill="#FFFFFF" stroke="#FFD200" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
30 …<polygon fill="#FFFFFF" stroke="#FFD300" stroke-width="6.6112" stroke-linecap="round" stroke-linej…
[all …]
/third_party/skia/third_party/externals/libwebp/swig/
Dlibwebp.py104 """WebPGetInfo(uint8_t data) -> (width, height)"""
108 """WebPDecodeRGB(uint8_t data) -> (rgb, width, height)"""
112 """WebPDecodeRGBA(uint8_t data) -> (rgb, width, height)"""
116 """WebPDecodeARGB(uint8_t data) -> (rgb, width, height)"""
120 """WebPDecodeBGR(uint8_t data) -> (rgb, width, height)"""
124 """WebPDecodeBGRA(uint8_t data) -> (rgb, width, height)"""
131 def wrap_WebPEncodeRGB(rgb, unused1, unused2, width, height, stride, quality_factor): argument
133 return _libwebp.wrap_WebPEncodeRGB(rgb, unused1, unused2, width, height, stride, quality_factor)
135 def wrap_WebPEncodeBGR(rgb, unused1, unused2, width, height, stride, quality_factor): argument
137 return _libwebp.wrap_WebPEncodeBGR(rgb, unused1, unused2, width, height, stride, quality_factor)
[all …]
/third_party/typescript/tests/baselines/reference/
DdestructuringAssignmentWithDefault.types21 function f1(options?: { color?: string, width?: number }) {
22 >f1 : (options?: { color?: string | undefined; width?: number | undefined; } | undefined) => void
23 >options : { color?: string | undefined; width?: number | undefined; } | undefined
25 >width : number | undefined
27 let { color, width } = options || {};
29 >width : number | undefined
30 >options || {} : { color?: string | undefined; width?: number | undefined; }
31 >options : { color?: string | undefined; width?: number | undefined; } | undefined
34 ({ color, width } = options || {});
35 >({ color, width } = options || {}) : { color?: string | undefined; width?: number | undefined; }
[all …]
/third_party/libdrm/tests/util/
Dpattern.c189 unsigned char *v_mem, unsigned int width, in fill_smpte_yuv_planar() argument
228 for (x = 0; x < width; ++x) in fill_smpte_yuv_planar()
229 y_mem[x] = colors_top[x * 7 / width].y; in fill_smpte_yuv_planar()
234 for (x = 0; x < width; ++x) in fill_smpte_yuv_planar()
235 y_mem[x] = colors_middle[x * 7 / width].y; in fill_smpte_yuv_planar()
240 for (x = 0; x < width * 5 / 7; ++x) in fill_smpte_yuv_planar()
241 y_mem[x] = colors_bottom[x * 4 / (width * 5 / 7)].y; in fill_smpte_yuv_planar()
242 for (; x < width * 6 / 7; ++x) in fill_smpte_yuv_planar()
243 y_mem[x] = colors_bottom[(x - width * 5 / 7) * 3 in fill_smpte_yuv_planar()
244 / (width / 7) + 4].y; in fill_smpte_yuv_planar()
[all …]
/third_party/ffmpeg/libavfilter/x86/
Dvf_gradfun_init.c44 int width, int thresh, in gradfun_filter_line_mmxext() argument
48 if (width & 3) { in gradfun_filter_line_mmxext()
49 x = width & ~3; in gradfun_filter_line_mmxext()
51 width - x, thresh, dithers); in gradfun_filter_line_mmxext()
52 width = x; in gradfun_filter_line_mmxext()
54 x = -width; in gradfun_filter_line_mmxext()
55 ff_gradfun_filter_line_mmxext(x, dst + width, src + width, dc + width / 2, in gradfun_filter_line_mmxext()
60 int width, int thresh, in gradfun_filter_line_ssse3() argument
64 if (width & 7) { in gradfun_filter_line_ssse3()
66 x = width & ~7; in gradfun_filter_line_ssse3()
[all …]
/third_party/musl/src/stdlib/liteos_a/
Dqsort.c46 void __qsort_r(void *base, size_t nel, size_t width, cmpfun cmp, void *arg) in __qsort_r() argument
50 char temp[width]; in __qsort_r()
52 if (width == 0 || base == NULL || nel == 0) { in __qsort_r()
57 end = start + (nel - 1) * width; in __qsort_r()
61 for (l = start + width; l <= end; l += width) { in __qsort_r()
62 memcpy(temp, l, width); in __qsort_r()
63 for (m = l - width; m >= start; m -= width) { in __qsort_r()
65 memcpy((m + width), m, width); in __qsort_r()
70 memcpy((m + width), temp, width); in __qsort_r()
76 m = start + (nel >> 1) * width; in __qsort_r()
[all …]
/third_party/musl/porting/liteos_a/user/src/stdlib/
Dqsort.c46 void __qsort_r(void *base, size_t nel, size_t width, cmpfun cmp, void *arg) in __qsort_r() argument
50 char temp[width]; in __qsort_r()
52 if (width == 0 || base == NULL || nel == 0) { in __qsort_r()
57 end = start + (nel - 1) * width; in __qsort_r()
61 for (l = start + width; l <= end; l += width) { in __qsort_r()
62 memcpy(temp, l, width); in __qsort_r()
63 for (m = l - width; m >= start; m -= width) { in __qsort_r()
65 memcpy((m + width), m, width); in __qsort_r()
70 memcpy((m + width), temp, width); in __qsort_r()
76 m = start + (nel >> 1) * width; in __qsort_r()
[all …]
/third_party/python/Modules/clinic/
Daudioop.c.h6 "getsample($module, fragment, width, index, /)\n"
15 audioop_getsample_impl(PyObject *module, Py_buffer *fragment, int width,
23 int width; in audioop_getsample() local
36 width = _PyLong_AsInt(args[1]); in audioop_getsample()
37 if (width == -1 && PyErr_Occurred()) { in audioop_getsample()
52 return_value = audioop_getsample_impl(module, &fragment, width, index); in audioop_getsample()
64 "max($module, fragment, width, /)\n"
73 audioop_max_impl(PyObject *module, Py_buffer *fragment, int width);
80 int width; in audioop_max() local
92 width = _PyLong_AsInt(args[1]); in audioop_max()
[all …]
/third_party/ffmpeg/libavcodec/tests/
Dsnowenc.c31 #define width 256 in main() macro
33 int buffer[2][width*height]; in main()
34 short obuffer[width*height]; in main()
42 s.temp_dwt_buffer = av_calloc(width, sizeof(*s.temp_dwt_buffer)); in main()
43 s.temp_idwt_buffer = av_calloc(width, sizeof(*s.temp_idwt_buffer)); in main()
53 for(i=0; i<width*height; i++) in main()
56 …ff_spatial_dwt(buffer[0], s.temp_dwt_buffer, width, height, width, s.spatial_decomposition_type, s… in main()
57 for(i=0; i<width*height; i++) in main()
59 …ff_spatial_idwt(obuffer, s.temp_idwt_buffer, width, height, width, s.spatial_decomposition_type, s… in main()
61 for(i=0; i<width*height; i++) in main()
[all …]
/third_party/skia/tests/
DPathOpsBuilderTest.cpp163 <rect x="10" y="30" width="0" height="60" /> in DEF_TEST()
164 <rect x="10" y="30" width="0" height="60" /> in DEF_TEST()
165 <rect x="10" y="30" width="100" height="60" /> in DEF_TEST()
166 <rect x="10" y="30" width="32668" /> in DEF_TEST()
167 <rect x="10" y="30" width="100" height="18446744073709551615" /> in DEF_TEST()
168 <rect x="10" y="255" width="100" height="60" /> in DEF_TEST()
169 <rect width="100" height="60" /> in DEF_TEST()
170 <rect x="10" y="30" width="100" height="60" /> in DEF_TEST()
171 <rect x="10" y="30" width="100" height="4294967236" /> in DEF_TEST()
172 <rect x="10" y="30" width="100" height="60" /> in DEF_TEST()
[all …]
/third_party/mesa3d/src/gallium/auxiliary/util/
Du_box.h14 box->width = w; in u_box_1d()
25 box->width = w; in u_box_2d()
36 box->width = w; in u_box_origin_2d()
48 box->width = w; in u_box_2d_zslice()
61 box->width = w; in u_box_3d()
66 /* Clips @dst to width @w and height @h.
69 * 1 if width has been reduced.
71 * 3 if both width and height have been reduced.
83 if (!box->width || !box->height) in u_box_clip_2d()
89 b[0] = box->x + box->width; in u_box_clip_2d()
[all …]
/third_party/libwebsockets/doc-assets/
Dlwsac.svg2 <svg width="187.8mm" height="80.752mm" version="1.1" viewBox="0 0 187.79663 80.752144" xmlns="http:…
4 …<filter id="a" x="-.014418" y="-.034864" width="1.0288" height="1.0697" color-interpolation-filter…
11 …09 167.83 -486.38)" x="-5.0609" y="468.46" width="257.45" height="106.47" ry="0" filter="url(#a)" …
12 …<rect x="163.71" y="-154.85" width="182.53" height="75.489" ry="0" fill="#f2f2f2" stroke-width=".1…
13 … <rect x="171.7" y="-140.36" width="30.952" height="50.082" fill="#808080" stroke-width=".40058"/>
14 <rect x="172.68" y="-139.06" width="28.784" height="6.4996" fill="#a00" stroke-width=".11698"/>
15 … <rect x="172.74" y="-131.83" width="28.784" height="40.39" fill="#c4c8b7" stroke-width=".11698"/>
17width=".39677" text-align="center" text-anchor="middle" word-spacing="0px" style="font-feature-set…
18width=".39677" text-align="center" text-anchor="middle" word-spacing="0px" style="font-feature-set…
20 …<rect x="172" y="-150.67" width="26.156" height="4.4025" fill="#500" stroke="#666" stroke-linejoin…
[all …]

12345678910>>...254