Home
last modified time | relevance | path

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

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_to_argb.cc224 int halfwidth = (src_width + 1) / 2; in ConvertToARGB() local
228 (halfwidth * crop_y + crop_x) / 2; in ConvertToARGB()
230 halfwidth * (halfheight + crop_y / 2) + crop_x / 2; in ConvertToARGB()
233 (halfwidth * crop_y + crop_x) / 2; in ConvertToARGB()
235 halfwidth * (halfheight + crop_y / 2) + crop_x / 2; in ConvertToARGB()
238 src_u, halfwidth, in ConvertToARGB()
239 src_v, halfwidth, in ConvertToARGB()
249 int halfwidth = (src_width + 1) / 2; in ConvertToARGB() local
252 halfwidth * crop_y + crop_x / 2; in ConvertToARGB()
254 halfwidth * (abs_src_height + crop_y) + crop_x / 2; in ConvertToARGB()
[all …]
Dconvert_to_i420.cc266 int halfwidth = (src_width + 1) / 2; in ConvertToI420() local
270 (halfwidth * crop_y + crop_x) / 2; in ConvertToI420()
272 halfwidth * (halfheight + crop_y / 2) + crop_x / 2; in ConvertToI420()
275 (halfwidth * crop_y + crop_x) / 2; in ConvertToI420()
277 halfwidth * (halfheight + crop_y / 2) + crop_x / 2; in ConvertToI420()
280 src_u, halfwidth, in ConvertToI420()
281 src_v, halfwidth, in ConvertToI420()
293 int halfwidth = (src_width + 1) / 2; in ConvertToI420() local
296 halfwidth * crop_y + crop_x / 2; in ConvertToI420()
298 halfwidth * (abs_src_height + crop_y) + crop_x / 2; in ConvertToI420()
[all …]
Dconvert_from_argb.cc257 int halfwidth = (width + 1) >> 1; in ARGBToNV12() local
265 align_buffer_64(row_u, ((halfwidth + 15) & ~15) * 2); in ARGBToNV12()
266 uint8* row_v = row_u + ((halfwidth + 15) & ~15); in ARGBToNV12()
308 if (TestCpuFlag(kCpuHasSSE2) && halfwidth >= 16) { in ARGBToNV12()
310 if (IS_ALIGNED(halfwidth, 16)) { in ARGBToNV12()
319 if (TestCpuFlag(kCpuHasAVX2) && halfwidth >= 32) { in ARGBToNV12()
321 if (IS_ALIGNED(halfwidth, 32)) { in ARGBToNV12()
327 if (TestCpuFlag(kCpuHasNEON) && halfwidth >= 16) { in ARGBToNV12()
329 if (IS_ALIGNED(halfwidth, 16)) { in ARGBToNV12()
337 MergeUVRow_(row_u, row_v, dst_uv, halfwidth); in ARGBToNV12()
[all …]
Dconvert_from.cc370 int halfwidth = (width + 1) >> 1; in I420ToNV12() local
392 if (src_stride_u == halfwidth && in I420ToNV12()
393 src_stride_v == halfwidth && in I420ToNV12()
394 dst_stride_uv == halfwidth * 2) { in I420ToNV12()
395 halfwidth *= halfheight; in I420ToNV12()
400 if (TestCpuFlag(kCpuHasSSE2) && halfwidth >= 16) { in I420ToNV12()
402 if (IS_ALIGNED(halfwidth, 16)) { in I420ToNV12()
413 if (TestCpuFlag(kCpuHasAVX2) && halfwidth >= 32) { in I420ToNV12()
415 if (IS_ALIGNED(halfwidth, 32)) { in I420ToNV12()
421 if (TestCpuFlag(kCpuHasNEON) && halfwidth >= 16) { in I420ToNV12()
[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()
249 int halfwidth = (width + 1) >> 1; in X420ToI420() local
278 if (src_stride_uv == halfwidth * 2 && in X420ToI420()
279 dst_stride_u == halfwidth && in X420ToI420()
280 dst_stride_v == halfwidth) { in X420ToI420()
[all …]
Drotate.cc1163 int halfwidth = (width + 1) >> 1; in I420Rotate() local
1198 halfwidth, halfheight); in I420Rotate()
1201 halfwidth, halfheight); in I420Rotate()
1209 halfwidth, halfheight); in I420Rotate()
1212 halfwidth, halfheight); in I420Rotate()
1220 halfwidth, halfheight); in I420Rotate()
1223 halfwidth, halfheight); in I420Rotate()
1239 int halfwidth = (width + 1) >> 1; in NV12ToI420Rotate() local
1272 halfwidth, halfheight); in NV12ToI420Rotate()
1281 halfwidth, halfheight); in NV12ToI420Rotate()
[all …]
Dplanar_functions.cc138 int halfwidth = (width + 1) >> 1; in I422Copy() local
155 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, height); in I422Copy()
156 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, height); in I422Copy()
457 int halfwidth = (width + 1) >> 1; in I420Mirror() local
478 MirrorPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight); in I420Mirror()
479 MirrorPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight); in I420Mirror()
1109 int halfwidth = (width + 1) >> 1; in I420Rect() local
1124 SetPlane(start_u, dst_stride_u, halfwidth, halfheight, value_u); in I420Rect()
1125 SetPlane(start_v, dst_stride_v, halfwidth, halfheight, value_v); in I420Rect()
/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/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/icu4c/source/test/testdata/
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 ();