Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/libwebp/src/dsp/
Drescaler.c29 void WebPRescalerImportRowExpand_C(WebPRescaler* const wrk, in WebPRescalerImportRowExpand_C() argument
31 const int x_stride = wrk->num_channels; in WebPRescalerImportRowExpand_C()
32 const int x_out_max = wrk->dst_width * wrk->num_channels; in WebPRescalerImportRowExpand_C()
34 assert(!WebPRescalerInputDone(wrk)); in WebPRescalerImportRowExpand_C()
35 assert(wrk->x_expand); in WebPRescalerImportRowExpand_C()
40 int accum = wrk->x_add; in WebPRescalerImportRowExpand_C()
43 (wrk->src_width > 1) ? (rescaler_t)src[x_in + x_stride] : left; in WebPRescalerImportRowExpand_C()
46 wrk->frow[x_out] = right * wrk->x_add + (left - right) * accum; in WebPRescalerImportRowExpand_C()
49 accum -= wrk->x_sub; in WebPRescalerImportRowExpand_C()
53 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.c29 static void ExportRowShrink_MIPSdspR2(WebPRescaler* const wrk) {
31 const int x_out_max = wrk->dst_width * wrk->num_channels;
32 uint8_t* dst = wrk->dst;
33 rescaler_t* irow = wrk->irow;
34 const rescaler_t* frow = wrk->frow;
35 const int yscale = wrk->fy_scale * (-wrk->y_accum);
37 const int temp7 = (int)wrk->fxy_scale;
39 assert(!WebPRescalerOutputDone(wrk));
40 assert(wrk->y_accum <= 0);
41 assert(!wrk->y_expand);
[all …]
Drescaler_sse2.c46 static void RescalerImportRowExpand_SSE2(WebPRescaler* const wrk, in RescalerImportRowExpand_SSE2() argument
48 rescaler_t* frow = wrk->frow; in RescalerImportRowExpand_SSE2()
49 const rescaler_t* const frow_end = frow + wrk->dst_width * wrk->num_channels; in RescalerImportRowExpand_SSE2()
50 const int x_add = wrk->x_add; in RescalerImportRowExpand_SSE2()
55 if (wrk->src_width < 8 || accum >= (1 << 15)) { in RescalerImportRowExpand_SSE2()
56 WebPRescalerImportRowExpand_C(wrk, src); in RescalerImportRowExpand_SSE2()
60 assert(!WebPRescalerInputDone(wrk)); in RescalerImportRowExpand_SSE2()
61 assert(wrk->x_expand); in RescalerImportRowExpand_SSE2()
62 if (wrk->num_channels == 4) { in RescalerImportRowExpand_SSE2()
71 accum -= wrk->x_sub; in RescalerImportRowExpand_SSE2()
[all …]
Drescaler_neon.c63 static void RescalerExportRowExpand_NEON(WebPRescaler* const wrk) { in RescalerExportRowExpand_NEON() argument
65 uint8_t* const dst = wrk->dst; in RescalerExportRowExpand_NEON()
66 rescaler_t* const irow = wrk->irow; in RescalerExportRowExpand_NEON()
67 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowExpand_NEON()
69 const rescaler_t* const frow = wrk->frow; in RescalerExportRowExpand_NEON()
70 const uint32_t fy_scale = wrk->fy_scale; in RescalerExportRowExpand_NEON()
72 assert(!WebPRescalerOutputDone(wrk)); in RescalerExportRowExpand_NEON()
73 assert(wrk->y_accum <= 0); in RescalerExportRowExpand_NEON()
74 assert(wrk->y_expand); in RescalerExportRowExpand_NEON()
75 assert(wrk->y_sub != 0); in RescalerExportRowExpand_NEON()
[all …]
Drescaler_msa.c119 WebPRescaler* const wrk) { in ExportRowExpand_0() argument
120 const v4u32 scale = (v4u32)__msa_fill_w(wrk->fy_scale); in ExportRowExpand_0()
168 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()
248 static void RescalerExportRowExpand_MIPSdspR2(WebPRescaler* const wrk) { in RescalerExportRowExpand_MIPSdspR2() argument
249 uint8_t* dst = wrk->dst; in RescalerExportRowExpand_MIPSdspR2()
250 rescaler_t* irow = wrk->irow; in RescalerExportRowExpand_MIPSdspR2()
[all …]
Ddsp.h568 typedef void (*WebPRescalerImportRowFunc)(struct WebPRescaler* const wrk,
577 typedef void (*WebPRescalerExportRowFunc)(struct WebPRescaler* const wrk);
582 extern void WebPRescalerImportRowExpand_C(struct WebPRescaler* const wrk,
584 extern void WebPRescalerImportRowShrink_C(struct WebPRescaler* const wrk,
586 extern void WebPRescalerExportRowExpand_C(struct WebPRescaler* const wrk);
587 extern void WebPRescalerExportRowShrink_C(struct WebPRescaler* const wrk);
590 extern void WebPRescalerImportRow(struct WebPRescaler* const wrk,
593 extern void WebPRescalerExportRow(struct WebPRescaler* const wrk);
/third_party/curl/packages/vms/
Dcompare_curl_source.com119 $ wrk = "VMS_ROOT:" + odelim + wrk_base_dir
133 $ wrk = "src_root1:[" + wrk_base_dir
149 $ wrk = "vms_root1:[" + wrk_base_dir
215 $ wrk_path = wrk + rel_path
305 $ ref_spec = f$search("''wrk'...]*.*;")
/third_party/node/doc/contributing/
Dwriting-and-running-benchmarks.md30 either [`wrk`][wrk] or [`autocannon`][autocannon].
37 `wrk` may be available through one of the available package managers. If not,
38 it can be easily built [from source][wrk] via `make`.
40 By default, `wrk` will be used as the benchmarker. If it is not available,
50 To run the `https` benchmarks, one of `autocannon` or `wrk` benchmarkers must
581 [wrk]: https://github.com/wg/wrk
/third_party/skia/third_party/externals/libwebp/src/dec/
Dio_dec.c241 int new_lines, WebPRescaler* const wrk) { in Rescale() argument
244 const int lines_in = WebPRescalerImport(wrk, new_lines, src, src_stride); in Rescale()
247 num_lines_out += WebPRescalerExport(wrk); // emit output row(s) in Rescale()
/third_party/node/doc/changelogs/
DCHANGELOG_IOJS.md1552 …://github.com/nodejs/node/commit/d2b62a4973)] - **benchmark**: don't check wrk in non-http benchma…
1974 * \[[`b27931b0fe`](https://github.com/nodejs/node/commit/b27931b0fe)] - **benchmark**: fix `wrk` ch…
1975 …ps://github.com/nodejs/node/commit/2b79052494)] - **benchmark**: check for wrk ahead of running be…
1980 * \[[`a45d4f8fd6`](https://github.com/nodejs/node/commit/a45d4f8fd6)] - **build**: remove tools/wrk
DCHANGELOG_V13.md1075 …js/node/commit/b7da194714)] - **benchmark**: support optional headers with wrk (Sam Roberts) [node…
DCHANGELOG_V11.md1287 * \[[`779ce29f39`](https://github.com/nodejs/node/commit/779ce29f39)] - **test**: add check for wrk
DCHANGELOG_V10.md936 * \[[`f4da641c31`](https://github.com/nodejs/node/commit/f4da641c31)] - **test**: add check for wrk
DCHANGELOG_V12.md3662 …js/node/commit/209767c7a2)] - **benchmark**: support optional headers with wrk (Sam Roberts) [node…
/third_party/skia/third_party/externals/icu/source/data/misc/
DsupplementalData.txt7155 "wrk~p",
/third_party/icu/icu4c/source/data/misc/
DsupplementalData.txt7263 "wrk~p",
/third_party/astc-encoder/Test/Images/HDRIHaven/HDR-RGB/
Dhdr-rgb-arboretum.hdr962 …o�s~��w���q�{����ٺz�ɀvɍ����ʫ�w�u�������مw|�{��Ԅqr���Ҧ�խq��t�|��y�v��ͅ�ڀ��}�wrk����lp���qn�o����o�w…