Home
last modified time | relevance | path

Searched refs:halfwidth (Results 1 – 21 of 21) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_to_argb.cc184 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 …]
Dconvert_to_i420.cc222 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 …]
Drotate.cc358 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 …]
Dconvert_from.cc373 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 …]
Dconvert_from_argb.cc264 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 …]
Dconvert.cc70 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 …]
Dplanar_functions.cc129 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/
Dconvert_from.cc50 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 …]
Dconvert.cc55 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 …]
Drotate.cc1052 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 …]
Dconvert_argb.cc1197 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 …]
Dplanar_functions.cc257 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/
DHan_Spacedhan.txt11 :: fullwidth-halfwidth;
DLatin_Katakana.txt11 :: [:Latin:] fullwidth-halfwidth ();
274 :: ([[:Katakana:][\u309B\u309C\u30A0\u30FC\uFF70\uFF9E\uFF9F]] halfwidth-fullwidth);
Dit_ja.txt12 ::[:Latin:] fullwidth-halfwidth();
Dit_am.txt12 ::[:Latin:] fullwidth-halfwidth();
/external/icu/icu4c/source/test/testdata/
Drbbitst.txt195 …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/
Drbbitst.txt178 …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/
Drbbitst.txt178 …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/
DTransliterator_Han_Latin_EDICT.txt8 :: (halfwidth-fullwidth);
116016 :: fullwidth-halfwidth ();
DTransliterator_Han_Latin_Definition.txt55798 :: fullwidth-halfwidth ();