Home
last modified time | relevance | path

Searched refs:wrk (Results 1 – 14 of 14) sorted by relevance

/external/webp/src/utils/
Drescaler_utils.c22 void WebPRescalerInit(WebPRescaler* const wrk, int src_width, int src_height, in WebPRescalerInit() argument
28 wrk->x_expand = (src_width < dst_width); in WebPRescalerInit()
29 wrk->y_expand = (src_height < dst_height); in WebPRescalerInit()
30 wrk->src_width = src_width; in WebPRescalerInit()
31 wrk->src_height = src_height; in WebPRescalerInit()
32 wrk->dst_width = dst_width; in WebPRescalerInit()
33 wrk->dst_height = dst_height; in WebPRescalerInit()
34 wrk->src_y = 0; in WebPRescalerInit()
35 wrk->dst_y = 0; in WebPRescalerInit()
36 wrk->dst = dst; in WebPRescalerInit()
[all …]
/external/webp/src/dsp/
Drescaler.c28 void WebPRescalerImportRowExpand_C(WebPRescaler* const wrk, in WebPRescalerImportRowExpand_C() argument
30 const int x_stride = wrk->num_channels; in WebPRescalerImportRowExpand_C()
31 const int x_out_max = wrk->dst_width * wrk->num_channels; in WebPRescalerImportRowExpand_C()
33 assert(!WebPRescalerInputDone(wrk)); in WebPRescalerImportRowExpand_C()
34 assert(wrk->x_expand); in WebPRescalerImportRowExpand_C()
39 int accum = wrk->x_add; in WebPRescalerImportRowExpand_C()
41 int right = (wrk->src_width > 1) ? src[x_in + x_stride] : left; in WebPRescalerImportRowExpand_C()
44 wrk->frow[x_out] = right * wrk->x_add + (left - right) * accum; in WebPRescalerImportRowExpand_C()
47 accum -= wrk->x_sub; in WebPRescalerImportRowExpand_C()
51 assert(x_in < wrk->src_width * x_stride); in WebPRescalerImportRowExpand_C()
[all …]
Drescaler_mips32.c24 static void ImportRowShrink_MIPS32(WebPRescaler* const wrk, in ImportRowShrink_MIPS32() argument
26 const int x_stride = wrk->num_channels; in ImportRowShrink_MIPS32()
27 const int x_out_max = wrk->dst_width * wrk->num_channels; in ImportRowShrink_MIPS32()
28 const int fx_scale = wrk->fx_scale; in ImportRowShrink_MIPS32()
29 const int x_add = wrk->x_add; in ImportRowShrink_MIPS32()
30 const int x_sub = wrk->x_sub; in ImportRowShrink_MIPS32()
33 assert(!wrk->x_expand); in ImportRowShrink_MIPS32()
34 assert(!WebPRescalerInputDone(wrk)); in ImportRowShrink_MIPS32()
38 rescaler_t* frow = wrk->frow + channel; in ImportRowShrink_MIPS32()
84 static void ImportRowExpand_MIPS32(WebPRescaler* const wrk, in ImportRowExpand_MIPS32() argument
[all …]
Drescaler_mips_dsp_r2.c27 static void ExportRowShrink_MIPSdspR2(WebPRescaler* const wrk) { in ExportRowShrink_MIPSdspR2() argument
29 const int x_out_max = wrk->dst_width * wrk->num_channels; in ExportRowShrink_MIPSdspR2()
30 uint8_t* dst = wrk->dst; in ExportRowShrink_MIPSdspR2()
31 rescaler_t* irow = wrk->irow; in ExportRowShrink_MIPSdspR2()
32 const rescaler_t* frow = wrk->frow; in ExportRowShrink_MIPSdspR2()
33 const int yscale = wrk->fy_scale * (-wrk->y_accum); in ExportRowShrink_MIPSdspR2()
35 const int temp7 = (int)wrk->fxy_scale; in ExportRowShrink_MIPSdspR2()
37 assert(!WebPRescalerOutputDone(wrk)); in ExportRowShrink_MIPSdspR2()
38 assert(wrk->y_accum <= 0); in ExportRowShrink_MIPSdspR2()
39 assert(!wrk->y_expand); in ExportRowShrink_MIPSdspR2()
[all …]
Drescaler_sse2.c45 static void RescalerImportRowExpand_SSE2(WebPRescaler* const wrk, in RescalerImportRowExpand_SSE2() argument
47 rescaler_t* frow = wrk->frow; in RescalerImportRowExpand_SSE2()
48 const rescaler_t* const frow_end = frow + wrk->dst_width * wrk->num_channels; in RescalerImportRowExpand_SSE2()
49 const int x_add = wrk->x_add; in RescalerImportRowExpand_SSE2()
53 assert(!WebPRescalerInputDone(wrk)); in RescalerImportRowExpand_SSE2()
54 assert(wrk->x_expand); in RescalerImportRowExpand_SSE2()
55 if (wrk->num_channels == 4) { in RescalerImportRowExpand_SSE2()
56 if (wrk->src_width < 2) { in RescalerImportRowExpand_SSE2()
57 WebPRescalerImportRowExpand_C(wrk, src); in RescalerImportRowExpand_SSE2()
68 accum -= wrk->x_sub; in RescalerImportRowExpand_SSE2()
[all …]
Drescaler_neon.c59 static void RescalerExportRowExpand_NEON(WebPRescaler* const wrk) { in RescalerExportRowExpand_NEON() argument
61 uint8_t* const dst = wrk->dst; in RescalerExportRowExpand_NEON()
62 rescaler_t* const irow = wrk->irow; in RescalerExportRowExpand_NEON()
63 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowExpand_NEON()
65 const rescaler_t* const frow = wrk->frow; in RescalerExportRowExpand_NEON()
66 const uint32_t fy_scale = wrk->fy_scale; in RescalerExportRowExpand_NEON()
68 assert(!WebPRescalerOutputDone(wrk)); in RescalerExportRowExpand_NEON()
69 assert(wrk->y_accum <= 0); in RescalerExportRowExpand_NEON()
70 assert(wrk->y_expand); in RescalerExportRowExpand_NEON()
71 assert(wrk->y_sub != 0); in RescalerExportRowExpand_NEON()
[all …]
Drescaler_msa.c118 WebPRescaler* const wrk) { in ExportRowExpand_0() argument
119 const v4u32 scale = (v4u32)__msa_fill_w(wrk->fy_scale); in ExportRowExpand_0()
167 const int v = (int)MULT_FIX(J, wrk->fy_scale); in ExportRowExpand_0()
176 WebPRescaler* const wrk) { in ExportRowExpand_1() argument
177 const uint32_t B = WEBP_RESCALER_FRAC(-wrk->y_accum, wrk->y_sub); in ExportRowExpand_1()
182 const v4u32 scale = (v4u32)__msa_fill_w(wrk->fy_scale); in ExportRowExpand_1()
242 const int v = (int)MULT_FIX(J, wrk->fy_scale); in ExportRowExpand_1()
249 static void RescalerExportRowExpand_MIPSdspR2(WebPRescaler* const wrk) { in RescalerExportRowExpand_MIPSdspR2() argument
250 uint8_t* dst = wrk->dst; in RescalerExportRowExpand_MIPSdspR2()
251 rescaler_t* irow = wrk->irow; in RescalerExportRowExpand_MIPSdspR2()
[all …]
Ddsp.h492 typedef void (*WebPRescalerImportRowFunc)(struct WebPRescaler* const wrk,
501 typedef void (*WebPRescalerExportRowFunc)(struct WebPRescaler* const wrk);
506 extern void WebPRescalerImportRowExpand_C(struct WebPRescaler* const wrk,
508 extern void WebPRescalerImportRowShrink_C(struct WebPRescaler* const wrk,
510 extern void WebPRescalerExportRowExpand_C(struct WebPRescaler* const wrk);
511 extern void WebPRescalerExportRowShrink_C(struct WebPRescaler* const wrk);
514 extern void WebPRescalerImportRow(struct WebPRescaler* const wrk,
517 extern void WebPRescalerExportRow(struct WebPRescaler* const wrk);
/external/curl/packages/vms/
Dcompare_curl_source.com120 $ wrk = "VMS_ROOT:" + odelim + wrk_base_dir
134 $ wrk = "src_root1:[" + wrk_base_dir
150 $ wrk = "vms_root1:[" + wrk_base_dir
216 $ wrk_path = wrk + rel_path
313 $ ref_spec = f$search("''wrk'...]*.*;")
/external/webp/src/dec/
Dio_dec.c246 int new_lines, WebPRescaler* const wrk) { in Rescale() argument
249 const int lines_in = WebPRescalerImport(wrk, new_lines, src, src_stride); in Rescale()
252 num_lines_out += WebPRescalerExport(wrk); // emit output row(s) in Rescale()
/external/hamcrest/
Dbuild.xml.original236 <mkdir dir="build/temp/@{modulename}/test-wrk"/>
237 …<junit printsummary="no" forkmode="once" tempdir="build/temp/@{modulename}/test-wrk" haltonfailure…
/external/ImageMagick/PerlMagick/t/reference/write/read/
Dinput_mat.miff53 …sswwt{usu{���������������������������������������߳L*.45;>;<>?EO[eoy}�~|}~|wrk]G/ )?LXesryvqtroq…
/external/icu/icu4c/source/data/misc/
DsupplementalData.txt6622 "wrk~p",
/external/trappy/doc/
DPlotter.ipynb497 …KtGtH/i+xsaSAHDum3tQMoMh3bdtSJ3/oEA2k1q+X9Su0kKVkSVq9khyj7TFz\ns5eqVcnEcP/+wrk+o0mKTJs4ciQp9sbBQjZ…