/external/libvpx/libvpx/third_party/libyuv/source/ |
D | convert_to_argb.cc | 184 int halfwidth = (src_width + 1) / 2; in ConvertToARGB() local 188 (halfwidth * crop_y + crop_x) / 2; in ConvertToARGB() 190 halfwidth * (halfheight + crop_y / 2) + crop_x / 2; in ConvertToARGB() 193 (halfwidth * crop_y + crop_x) / 2; in ConvertToARGB() 195 halfwidth * (halfheight + crop_y / 2) + crop_x / 2; in ConvertToARGB() 198 src_u, halfwidth, in ConvertToARGB() 199 src_v, halfwidth, in ConvertToARGB() 209 int halfwidth = (src_width + 1) / 2; in ConvertToARGB() local 212 (halfwidth * crop_y + crop_x) / 2; in ConvertToARGB() 214 halfwidth * (halfheight + crop_y / 2) + crop_x / 2; in ConvertToARGB() [all …]
|
D | convert_to_i420.cc | 222 int halfwidth = (src_width + 1) / 2; in ConvertToI420() local 226 (halfwidth * crop_y + crop_x) / 2; in ConvertToI420() 228 halfwidth * (halfheight + crop_y / 2) + crop_x / 2; in ConvertToI420() 231 (halfwidth * crop_y + crop_x) / 2; in ConvertToI420() 233 halfwidth * (halfheight + crop_y / 2) + crop_x / 2; in ConvertToI420() 236 src_u, halfwidth, in ConvertToI420() 237 src_v, halfwidth, in ConvertToI420() 249 int halfwidth = (src_width + 1) / 2; in ConvertToI420() local 252 halfwidth * crop_y + crop_x / 2; in ConvertToI420() 254 halfwidth * (abs_src_height + crop_y) + crop_x / 2; in ConvertToI420() [all …]
|
D | rotate.cc | 358 int halfwidth = (width + 1) >> 1; in I420Rotate() local 393 halfwidth, halfheight); in I420Rotate() 396 halfwidth, halfheight); in I420Rotate() 404 halfwidth, halfheight); in I420Rotate() 407 halfwidth, halfheight); in I420Rotate() 415 halfwidth, halfheight); in I420Rotate() 418 halfwidth, halfheight); in I420Rotate() 434 int halfwidth = (width + 1) >> 1; in NV12ToI420Rotate() local 467 halfwidth, halfheight); in NV12ToI420Rotate() 476 halfwidth, halfheight); in NV12ToI420Rotate() [all …]
|
D | convert_from.cc | 373 int halfwidth = (width + 1) >> 1; in I420ToNV12() local 395 if (src_stride_u == halfwidth && in I420ToNV12() 396 src_stride_v == halfwidth && in I420ToNV12() 397 dst_stride_uv == halfwidth * 2) { in I420ToNV12() 398 halfwidth *= halfheight; in I420ToNV12() 405 if (IS_ALIGNED(halfwidth, 16)) { in I420ToNV12() 413 if (IS_ALIGNED(halfwidth, 32)) { in I420ToNV12() 421 if (IS_ALIGNED(halfwidth, 16)) { in I420ToNV12() 430 MergeUVRow_(src_u, src_v, dst_uv, halfwidth); in I420ToNV12() 1263 int halfwidth = (width + 1) / 2; in ConvertFromI420() local [all …]
|
D | convert_from_argb.cc | 264 int halfwidth = (width + 1) >> 1; in ARGBToNV12() local 321 if (IS_ALIGNED(halfwidth, 16)) { in ARGBToNV12() 329 if (IS_ALIGNED(halfwidth, 32)) { in ARGBToNV12() 337 if (IS_ALIGNED(halfwidth, 16)) { in ARGBToNV12() 344 align_buffer_64(row_u, ((halfwidth + 31) & ~31) * 2); in ARGBToNV12() 345 uint8* row_v = row_u + ((halfwidth + 31) & ~31); in ARGBToNV12() 349 MergeUVRow_(row_u, row_v, dst_uv, halfwidth); in ARGBToNV12() 358 MergeUVRow_(row_u, row_v, dst_uv, halfwidth); in ARGBToNV12() 373 int halfwidth = (width + 1) >> 1; in ARGBToNV21() local 430 if (IS_ALIGNED(halfwidth, 16)) { in ARGBToNV21() [all …]
|
D | convert.cc | 70 int halfwidth = (width + 1) >> 1; in I420Copy() local 93 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight); in I420Copy() 94 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight); in I420Copy() 167 int halfwidth = (width + 1) >> 1; in I400ToI420() local 181 SetPlane(dst_u, dst_stride_u, halfwidth, halfheight, 128); in I400ToI420() 182 SetPlane(dst_v, dst_stride_v, halfwidth, halfheight, 128); in I400ToI420() 246 int halfwidth = (width + 1) >> 1; in X420ToI420() local 275 if (src_stride_uv == halfwidth * 2 && in X420ToI420() 276 dst_stride_u == halfwidth && in X420ToI420() 277 dst_stride_v == halfwidth) { in X420ToI420() [all …]
|
D | planar_functions.cc | 129 int halfwidth = (width + 1) >> 1; in I422Copy() local 146 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, height); in I422Copy() 147 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, height); in I422Copy() 454 int halfwidth = (width + 1) >> 1; in I420Mirror() local 475 MirrorPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight); in I420Mirror() 476 MirrorPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight); in I420Mirror() 1162 int halfwidth = (width + 1) >> 1; in I420Rect() local 1177 SetPlane(start_u, dst_stride_u, halfwidth, halfheight, value_u); in I420Rect() 1178 SetPlane(start_v, dst_stride_v, halfwidth, halfheight, value_v); in I420Rect() 2350 int halfwidth = (width + 1) >> 1; in YUY2ToNV12() local [all …]
|
/external/libyuv/files/source/ |
D | convert_from.cc | 50 int halfwidth = (width + 1) >> 1; in I420ToI422() local 53 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(halfwidth, 64)) { in I420ToI422() 57 if (IS_ALIGNED(halfwidth, 4)) { in I420ToI422() 60 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(halfwidth, 32) && in I420ToI422() 79 CopyRow(src_u, dst_u, halfwidth); in I420ToI422() 80 CopyRow(src_u, dst_u + dst_stride_u, halfwidth); in I420ToI422() 85 CopyRow(src_u, dst_u, halfwidth); in I420ToI422() 90 CopyRow(src_v, dst_v, halfwidth); in I420ToI422() 91 CopyRow(src_v, dst_v + dst_stride_v, halfwidth); in I420ToI422() 96 CopyRow(src_v, dst_v, halfwidth); in I420ToI422() [all …]
|
D | convert.cc | 55 int halfwidth = (width + 1) >> 1; in I420Copy() local 60 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight); in I420Copy() 61 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight); in I420Copy() 148 int halfwidth = (width + 1) >> 1; in I422ToI420() local 153 IS_ALIGNED(halfwidth, 16) && in I422ToI420() 170 HalfRow(src_u, src_stride_u, dst_u, halfwidth); in I422ToI420() 175 HalfRow(src_u, 0, dst_u, halfwidth); in I422ToI420() 180 HalfRow(src_v, src_stride_v, dst_v, halfwidth); in I422ToI420() 185 HalfRow(src_v, 0, dst_v, halfwidth); in I422ToI420() 228 int halfwidth = (width + 1) >> 1; in I444ToI420() local [all …]
|
D | rotate.cc | 1052 int halfwidth = (width + 1) >> 1; in I420Rotate() local 1083 halfwidth, halfheight); in I420Rotate() 1086 halfwidth, halfheight); in I420Rotate() 1094 halfwidth, halfheight); in I420Rotate() 1097 halfwidth, halfheight); in I420Rotate() 1105 halfwidth, halfheight); in I420Rotate() 1108 halfwidth, halfheight); in I420Rotate() 1128 int halfwidth = (width + 1) >> 1; in NV12ToI420Rotate() local 1157 halfwidth, halfheight); in NV12ToI420Rotate() 1166 halfwidth, halfheight); in NV12ToI420Rotate() [all …]
|
D | convert_argb.cc | 1197 int halfwidth = (src_width + 1) / 2; in ConvertToARGB() local 1201 (halfwidth * crop_y + crop_x) / 2; in ConvertToARGB() 1203 halfwidth * (halfheight + crop_y / 2) + crop_x / 2; in ConvertToARGB() 1206 (halfwidth * crop_y + crop_x) / 2; in ConvertToARGB() 1208 halfwidth * (halfheight + crop_y / 2) + crop_x / 2; in ConvertToARGB() 1211 src_u, halfwidth, in ConvertToARGB() 1212 src_v, halfwidth, in ConvertToARGB() 1222 int halfwidth = (src_width + 1) / 2; in ConvertToARGB() local 1225 halfwidth * crop_y + crop_x / 2; in ConvertToARGB() 1227 halfwidth * (abs_src_height + crop_y) + crop_x / 2; in ConvertToARGB() [all …]
|
D | planar_functions.cc | 257 int halfwidth = (width + 1) >> 1; in I420Mirror() local 262 MirrorPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight); in I420Mirror() 263 MirrorPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight); in I420Mirror() 963 int halfwidth = (width + 1) >> 1; in I420Rect() local 970 SetPlane(start_u, dst_stride_u, halfwidth, halfheight, value_u); in I420Rect() 971 SetPlane(start_v, dst_stride_v, halfwidth, halfheight, value_v); in I420Rect()
|
/external/icu/icu4c/source/data/translit/ |
D | Han_Spacedhan.txt | 11 :: fullwidth-halfwidth;
|
D | Latin_Katakana.txt | 11 :: [:Latin:] fullwidth-halfwidth (); 274 :: ([[:Katakana:][\u309B\u309C\u30A0\u30FC\uFF70\uFF9E\uFF9F]] halfwidth-fullwidth);
|
D | it_ja.txt | 12 ::[:Latin:] fullwidth-halfwidth();
|
D | it_am.txt | 12 ::[:Latin:] fullwidth-halfwidth();
|
/external/icu/icu4c/source/test/testdata/ |
D | rbbitst.txt | 195 …test normalization/dictionary handling of halfwidth katakana: same dictionary phrase in fullwidth … 216 # fullwidth numeric, midletter characters etc should be treated like their halfwidth counterparts
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
D | rbbitst.txt | 178 …test normalization/dictionary handling of halfwidth katakana: same dictionary phrase in fullwidth … 199 # fullwidth numeric, midletter characters etc should be treated like their halfwidth counterparts
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | rbbitst.txt | 178 …test normalization/dictionary handling of halfwidth katakana: same dictionary phrase in fullwidth … 199 # fullwidth numeric, midletter characters etc should be treated like their halfwidth counterparts
|
/external/icu/icu4j/main/shared/data/ |
D | Transliterator_Han_Latin_EDICT.txt | 8 :: (halfwidth-fullwidth); 116016 :: fullwidth-halfwidth ();
|
D | Transliterator_Han_Latin_Definition.txt | 55798 :: fullwidth-halfwidth ();
|