| /third_party/skia/third_party/externals/abseil-cpp/absl/numeric/ |
| D | int128_stream_test.cc | 27 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/m133/third_party/externals/libyuv/include/libyuv/ |
| D | row.h | 896 int width); 902 int width); 909 int width); 916 int width); 922 int width); 928 int width); 934 int width); 940 int width); 946 int width); 951 int width); [all …]
|
| /third_party/skia/gm/ |
| D | thinconcavepaths.cpp | 16 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/skia/m133/gm/ |
| D | thinconcavepaths.cpp | 16 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/skia/m133/third_party/externals/libyuv/source/ |
| D | convert.cc | 83 int width, in I420Copy() argument 85 int halfwidth = (width + 1) >> 1; in I420Copy() 87 if ((!src_y && dst_y) || !src_u || !src_v || !dst_u || !dst_v || width <= 0 || in I420Copy() 104 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Copy() 126 int width, in I010Copy() argument 128 int halfwidth = (width + 1) >> 1; in I010Copy() 130 if ((!src_y && dst_y) || !src_u || !src_v || !dst_u || !dst_v || width <= 0 || in I010Copy() 147 CopyPlane_16(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I010Copy() 167 int width, in Planar16bitTo8bit() argument 172 int uv_width = SUBSAMPLE(width, subsample_x, subsample_x); in Planar16bitTo8bit() [all …]
|
| D | planar_functions.cc | 34 int width, in CopyPlane() argument 37 void (*CopyRow)(const uint8_t* src, uint8_t* dst, int width) = CopyRow_C; in CopyPlane() 38 if (width <= 0 || height == 0) { in CopyPlane() 48 if (src_stride_y == width && dst_stride_y == width) { in CopyPlane() 49 width *= height; in CopyPlane() 60 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2; in CopyPlane() 65 CopyRow = IS_ALIGNED(width, 64) ? CopyRow_AVX : CopyRow_Any_AVX; in CopyPlane() 75 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_NEON : CopyRow_Any_NEON; in CopyPlane() 81 CopyRow(src_y, dst_y, width); in CopyPlane() 92 int width, in CopyPlane_16() argument [all …]
|
| D | convert_from_argb.cc | 33 int width, in ARGBToI444() argument 36 void (*ARGBToYRow)(const uint8_t* src_argb, uint8_t* dst_y, int width) = in ARGBToI444() 39 uint8_t* dst_v, int width) = ARGBToUV444Row_C; in ARGBToI444() 40 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444() 49 if (src_stride_argb == width * 4 && dst_stride_y == width && in ARGBToI444() 50 dst_stride_u == width && dst_stride_v == width) { in ARGBToI444() 51 width *= height; in ARGBToI444() 58 if (IS_ALIGNED(width, 16)) { in ARGBToI444() 66 if (IS_ALIGNED(width, 8)) { in ARGBToI444() 74 if (IS_ALIGNED(width, 16)) { in ARGBToI444() [all …]
|
| D | convert_from.cc | 84 int width, in I420ToI010() argument 86 int halfwidth = (width + 1) >> 1; in I420ToI010() 88 if ((!src_y && dst_y) || !src_u || !src_v || !dst_u || !dst_v || width <= 0 || in I420ToI010() 105 Convert8To16Plane(src_y, src_stride_y, dst_y, dst_stride_y, 1024, width, in I420ToI010() 129 int width, in I420ToI012() argument 131 int halfwidth = (width + 1) >> 1; in I420ToI012() 133 if ((!src_y && dst_y) || !src_u || !src_v || !dst_u || !dst_v || width <= 0 || in I420ToI012() 150 Convert8To16Plane(src_y, src_stride_y, dst_y, dst_stride_y, 4096, width, in I420ToI012() 160 // 420 chroma is 1/2 width, 1/2 height 161 // 422 chroma is 1/2 width, 1x height [all …]
|
| D | convert_argb.cc | 33 int width, in ARGBCopy() argument 35 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBCopy() 45 CopyPlane(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width * 4, in ARGBCopy() 61 int width, in I420ToARGBMatrix() argument 66 const struct YuvConstants* yuvconstants, int width) = in I420ToARGBMatrix() 68 if (!src_y || !src_u || !src_v || !dst_argb || width <= 0 || height == 0) { in I420ToARGBMatrix() 80 if (IS_ALIGNED(width, 8)) { in I420ToARGBMatrix() 88 if (IS_ALIGNED(width, 16)) { in I420ToARGBMatrix() 97 if (IS_ALIGNED(width, 32)) { in I420ToARGBMatrix() 105 if (IS_ALIGNED(width, 8)) { in I420ToARGBMatrix() [all …]
|
| D | rotate.cc | 29 int width, in TransposePlane() argument 34 int dst_stride, int width) = TransposeWx16_C; in TransposePlane() 37 int dst_stride, int width) = TransposeWx8_C; in TransposePlane() 43 if (IS_ALIGNED(width, 8)) { in TransposePlane() 51 if (IS_ALIGNED(width, 8)) { in TransposePlane() 59 if (IS_ALIGNED(width, 16)) { in TransposePlane() 67 if (IS_ALIGNED(width, 16)) { in TransposePlane() 75 if (IS_ALIGNED(width, 16)) { in TransposePlane() 84 TransposeWx16(src, src_stride, dst, dst_stride, width); in TransposePlane() 92 TransposeWx8(src, src_stride, dst, dst_stride, width); in TransposePlane() [all …]
|
| /third_party/vk-gl-cts/external/openglcts/modules/common/ |
| D | glcCompressedFormatTests_data.inl | 26 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/m133/src/encode/ |
| D | SkImageEncoderFns.h | 24 typedef void (*transform_scanline_proc)(char* dst, const char* src, int width, int bpp); 26 static inline void transform_scanline_memcpy(char* dst, const char* src, int width, int bpp) { in transform_scanline_memcpy() argument 27 memcpy(dst, src, width * bpp); in transform_scanline_memcpy() 30 static inline void transform_scanline_A8_to_GrayAlpha(char* dst, const char* src, int width, int) { in transform_scanline_A8_to_GrayAlpha() argument 31 for (int i = 0; i < width; i++) { in transform_scanline_A8_to_GrayAlpha() 45 static inline void transform_scanline_gray(char* dst, const char* src, int width, int) { in transform_scanline_gray() argument 46 skcms(dst, src, width, in transform_scanline_gray() 51 static inline void transform_scanline_565(char* dst, const char* src, int width, int) { in transform_scanline_565() argument 52 skcms(dst, src, width, in transform_scanline_565() 57 static inline void transform_scanline_RGBX(char* dst, const char* src, int width, int) { in transform_scanline_RGBX() argument [all …]
|
| /third_party/skia/src/images/ |
| D | SkImageEncoderFns.h | 17 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/ |
| D | u_format_bptc.c | 37 unsigned width, unsigned height) in util_format_bptc_rgba_unorm_unpack_rgba_8unorm() argument 39 decompress_rgba_unorm(width, height, in util_format_bptc_rgba_unorm_unpack_rgba_8unorm() 47 unsigned width, unsigned height) in util_format_bptc_rgba_unorm_pack_rgba_8unorm() argument 49 compress_rgba_unorm(width, height, in util_format_bptc_rgba_unorm_pack_rgba_8unorm() 57 unsigned width, unsigned height) in util_format_bptc_rgba_unorm_unpack_rgba_float() argument 60 temp_block = malloc(width * height * 4 * sizeof(uint8_t)); in util_format_bptc_rgba_unorm_unpack_rgba_float() 61 decompress_rgba_unorm(width, height, in util_format_bptc_rgba_unorm_unpack_rgba_float() 63 temp_block, width * 4 * sizeof(uint8_t)); in util_format_bptc_rgba_unorm_unpack_rgba_float() 69 temp_block + 4 * width * y, in util_format_bptc_rgba_unorm_unpack_rgba_float() 70 width); in util_format_bptc_rgba_unorm_unpack_rgba_float() [all …]
|
| D | u_format.yaml | 18 # - pixel block's width 43 block: {width: 1, height: 1, depth: 1} 52 block: {width: 1, height: 1, depth: 1} 62 block: {width: 1, height: 1, depth: 1} 72 block: {width: 1, height: 1, depth: 1} 78 block: {width: 1, height: 1, depth: 1} 84 block: {width: 1, height: 1, depth: 1} 90 block: {width: 1, height: 1, depth: 1} 100 block: {width: 1, height: 1, depth: 1} 106 block: {width: 1, height: 1, depth: 1} [all …]
|
| D | u_format_zs.h | 42 …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/ |
| D | loadimage.h | 18 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/ffmpeg/tests/checkasm/ |
| D | llviddsp.c | 39 #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/python/Tools/msi/bundle/ |
| D | Default.thm | 3 <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/alsa-lib/doc/pictures/ |
| D | ucm-seq-verb.svg | 1 …width:583px;height:584px;background:#FFFFFF;" version="1.1" viewBox="0 0 583 584" width="583px" zo…
|
| D | ucm-seq-device.svg | 1 …width:462px;height:598px;background:#FFFFFF;" version="1.1" viewBox="0 0 462 598" width="462px" zo…
|
| /third_party/elfio/doc/images/colorsvg/ |
| D | important.svg | 7 <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 …]
|
| /third_party/skia/third_party/externals/libwebp/swig/ |
| D | libwebp.py | 104 """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/skia/m133/third_party/externals/libwebp/swig/ |
| D | libwebp.py | 104 """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/ |
| D | destructuringAssignmentWithDefault.types | 21 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 …]
|