OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wrk
(Results
1 - 13
of
13
) sorted by null
/external/webp/src/utils/
rescaler_utils.c
22
void WebPRescalerInit(WebPRescaler* const
wrk
, int src_width, int src_height,
28
wrk
->x_expand = (src_width < dst_width);
29
wrk
->y_expand = (src_height < dst_height);
30
wrk
->src_width = src_width;
31
wrk
->src_height = src_height;
32
wrk
->dst_width = dst_width;
33
wrk
->dst_height = dst_height;
34
wrk
->src_y = 0;
35
wrk
->dst_y = 0;
36
wrk
->dst = dst
[
all
...]
/external/webp/src/dsp/
rescaler.c
28
void WebPRescalerImportRowExpandC(WebPRescaler* const
wrk
, const uint8_t* src) {
29
const int x_stride =
wrk
->num_channels;
30
const int x_out_max =
wrk
->dst_width *
wrk
->num_channels;
32
assert(!WebPRescalerInputDone(
wrk
));
33
assert(
wrk
->x_expand);
38
int accum =
wrk
->x_add;
40
int right = (
wrk
->src_width > 1) ? src[x_in + x_stride] : left;
43
wrk
->frow[x_out] = right *
wrk
->x_add + (left - right) * accum
[
all
...]
rescaler_mips32.c
24
static void ImportRowShrink(WebPRescaler* const
wrk
, const uint8_t* src) {
25
const int x_stride =
wrk
->num_channels;
26
const int x_out_max =
wrk
->dst_width *
wrk
->num_channels;
27
const int fx_scale =
wrk
->fx_scale;
28
const int x_add =
wrk
->x_add;
29
const int x_sub =
wrk
->x_sub;
32
assert(!
wrk
->x_expand);
33
assert(!WebPRescalerInputDone(
wrk
));
37
rescaler_t* frow =
wrk
->frow + channel
[
all
...]
rescaler_mips_dsp_r2.c
27
static void ExportRowShrink(WebPRescaler* const
wrk
) {
29
const int x_out_max =
wrk
->dst_width *
wrk
->num_channels;
30
uint8_t* dst =
wrk
->dst;
31
rescaler_t* irow =
wrk
->irow;
32
const rescaler_t* frow =
wrk
->frow;
33
const int yscale =
wrk
->fy_scale * (-
wrk
->y_accum);
35
const int temp7 = (int)
wrk
->fxy_scale;
37
assert(!WebPRescalerOutputDone(
wrk
));
[
all
...]
rescaler_sse2.c
45
static void RescalerImportRowExpandSSE2(WebPRescaler* const
wrk
,
47
rescaler_t* frow =
wrk
->frow;
48
const rescaler_t* const frow_end = frow +
wrk
->dst_width *
wrk
->num_channels;
49
const int x_add =
wrk
->x_add;
53
assert(!WebPRescalerInputDone(
wrk
));
54
assert(
wrk
->x_expand);
55
if (
wrk
->num_channels == 4) {
56
if (
wrk
->src_width < 2) {
57
WebPRescalerImportRowExpandC(
wrk
, src)
[
all
...]
rescaler_neon.c
59
static void RescalerExportRowExpand(WebPRescaler* const
wrk
) {
61
uint8_t* const dst =
wrk
->dst;
62
rescaler_t* const irow =
wrk
->irow;
63
const int x_out_max =
wrk
->dst_width *
wrk
->num_channels;
65
const rescaler_t* const frow =
wrk
->frow;
66
const uint32_t fy_scale =
wrk
->fy_scale;
68
assert(!WebPRescalerOutputDone(
wrk
));
69
assert(
wrk
->y_accum <= 0);
70
assert(
wrk
->y_expand)
[
all
...]
rescaler_msa.c
118
WebPRescaler* const
wrk
) {
119
const v4u32 scale = (v4u32)__msa_fill_w(
wrk
->fy_scale);
167
const int v = (int)MULT_FIX(J,
wrk
->fy_scale);
176
WebPRescaler* const
wrk
) {
177
const uint32_t B = WEBP_RESCALER_FRAC(-
wrk
->y_accum,
wrk
->y_sub);
182
const v4u32 scale = (v4u32)__msa_fill_w(
wrk
->fy_scale);
242
const int v = (int)MULT_FIX(J,
wrk
->fy_scale);
249
static void RescalerExportRowExpand(WebPRescaler* const
wrk
) {
250
uint8_t* dst =
wrk
->dst
[
all
...]
dsp.h
450
// the
wrk
->x_expand case. Otherwise, 'Shrink' is to be used.
451
typedef void (*WebPRescalerImportRowFunc)(struct WebPRescaler* const
wrk
,
458
// 'Expand' corresponds to the
wrk
->y_expand case.
460
typedef void (*WebPRescalerExportRowFunc)(struct WebPRescaler* const
wrk
);
465
extern void WebPRescalerImportRowExpandC(struct WebPRescaler* const
wrk
,
467
extern void WebPRescalerImportRowShrinkC(struct WebPRescaler* const
wrk
,
469
extern void WebPRescalerExportRowExpandC(struct WebPRescaler* const
wrk
);
470
extern void WebPRescalerExportRowShrinkC(struct WebPRescaler* const
wrk
);
473
extern void WebPRescalerImportRow(struct WebPRescaler* const
wrk
,
476
extern void WebPRescalerExportRow(struct WebPRescaler* const
wrk
);
[
all
...]
/external/curl/packages/vms/
compare_curl_source.com
120
$
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
'...]*.*;")
/device/generic/goldfish/camera/
EmulatedCamera.cpp
1271
const char*
wrk
= new_par;
local
[
all
...]
/external/webp/src/dec/
io_dec.c
245
int new_lines, WebPRescaler* const
wrk
) {
248
const int lines_in = WebPRescalerImport(
wrk
, new_lines, src, src_stride);
251
num_lines_out += WebPRescalerExport(
wrk
); // emit output row(s)
/prebuilts/go/darwin-x86/src/net/http/
request_test.go
1006
//
wrk
-t 1 -r 1 -c 1 http://localhost:8080/
/prebuilts/go/linux-x86/src/net/http/
request_test.go
1006
//
wrk
-t 1 -r 1 -c 1 http://localhost:8080/
Completed in 664 milliseconds