Searched refs:hstride (Results 1 - 10 of 10) sorted by relevance

/external/webp/src/dsp/
H A Ddec_mips32.c93 int hstride, int vstride, int size,
97 if (needs_filter2(p, hstride, thresh2, ithresh)) {
98 if (hev(p, hstride, hev_thresh)) {
99 do_filter2(p, hstride);
101 do_filter6(p, hstride);
109 int hstride, int vstride, int size,
113 if (needs_filter2(p, hstride, thresh2, ithresh)) {
114 if (hev(p, hstride, hev_thresh)) {
115 do_filter2(p, hstride);
117 do_filter4(p, hstride);
92 FilterLoop26(uint8_t* p, int hstride, int vstride, int size, int thresh, int ithresh, int hev_thresh) argument
108 FilterLoop24(uint8_t* p, int hstride, int vstride, int size, int thresh, int ithresh, int hev_thresh) argument
[all...]
H A Ddec.c595 int hstride, int vstride, int size,
600 if (NeedsFilter2_C(p, hstride, thresh2, ithresh)) {
601 if (Hev(p, hstride, hev_thresh)) {
602 DoFilter2_C(p, hstride);
604 DoFilter6_C(p, hstride);
612 int hstride, int vstride, int size,
617 if (NeedsFilter2_C(p, hstride, thresh2, ithresh)) {
618 if (Hev(p, hstride, hev_thresh)) {
619 DoFilter2_C(p, hstride);
621 DoFilter4_C(p, hstride);
594 FilterLoop26_C(uint8_t* p, int hstride, int vstride, int size, int thresh, int ithresh, int hev_thresh) argument
611 FilterLoop24_C(uint8_t* p, int hstride, int vstride, int size, int thresh, int ithresh, int hev_thresh) argument
[all...]
H A Ddec_mips_dsp_r2.c161 int hstride, int vstride, int size,
171 "negu %[temp1], %[hstride] \n\t"
173 "sll %[temp2], %[hstride], 1 \n\t"
175 "addu %[temp4], %[temp2], %[hstride] \n\t"
183 "lbux %[temp12], %[hstride](%[p]) \n\t"
235 "subu %[temp3], %[p], %[hstride] \n\t"
247 "subu %[temp14], %[p], %[hstride] \n\t"
248 "subu %[temp11], %[temp14], %[hstride] \n\t"
251 "subu %[temp15], %[temp11], %[hstride] \n\t"
266 "addu %[temp10], %[p], %[hstride] \
160 FilterLoop26(uint8_t* p, int hstride, int vstride, int size, int thresh, int ithresh, int hev_thresh) argument
298 FilterLoop24(uint8_t* p, int hstride, int vstride, int size, int thresh, int ithresh, int hev_thresh) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_ir_fs.h123 const unsigned stride = reg.hstride ? 1 << (reg.hstride - 1) : 0;
196 r.hstride == 0 ? 0 :
197 1 << (r.hstride - 1));
260 const unsigned period = (reg.hstride == 0 && reg.vstride == 0 ? 1 :
302 reg.hstride += (reg.hstride ? delta : 0);
H A Dbrw_reg.h266 unsigned hstride:2; /* align1 only */ member in struct:brw_reg::__anon17115::__anon17116
349 * \param hstride one of BRW_HORIZONTAL_STRIDE_x
362 unsigned hstride,
396 reg.hstride = hstride;
683 imm.hstride = BRW_HORIZONTAL_STRIDE_1;
879 stride(struct brw_reg reg, unsigned vstride, unsigned width, unsigned hstride)
883 reg.hstride = cvt(hstride);
897 if (reg.hstride)
354 brw_reg(enum brw_reg_file file, unsigned nr, unsigned subnr, unsigned negate, unsigned abs, enum brw_reg_type type, unsigned vstride, unsigned width, unsigned hstride, unsigned swizzle, unsigned writemask) argument
[all...]
H A Dbrw_eu_emit.c167 if (dest.hstride == BRW_HORIZONTAL_STRIDE_0)
168 dest.hstride = BRW_HORIZONTAL_STRIDE_1;
169 brw_inst_set_dst_hstride(devinfo, inst, dest.hstride);
191 if (dest.hstride == BRW_HORIZONTAL_STRIDE_0)
192 dest.hstride = BRW_HORIZONTAL_STRIDE_1;
193 brw_inst_set_dst_hstride(devinfo, inst, dest.hstride);
232 int width, hstride, vstride, execsize; local
260 assert(reg.hstride >= 0 && reg.hstride < ARRAY_SIZE(hstride_for_reg));
261 hstride
[all...]
H A Dbrw_vec4_generator.cpp1926 src[0].hstride = BRW_HORIZONTAL_STRIDE_0;
1938 dst.hstride = BRW_HORIZONTAL_STRIDE_2;
1945 dst.hstride = BRW_HORIZONTAL_STRIDE_1;
1960 tmp.hstride = BRW_HORIZONTAL_STRIDE_2;
1963 src[0].hstride = BRW_HORIZONTAL_STRIDE_1;
1968 tmp.hstride = BRW_HORIZONTAL_STRIDE_2;
1987 dst.hstride = BRW_HORIZONTAL_STRIDE_1;
1994 src[0].hstride = BRW_HORIZONTAL_STRIDE_2;
2014 dst.hstride = BRW_HORIZONTAL_STRIDE_2;
2019 src[0].hstride
[all...]
H A Dbrw_shader.h83 using brw_reg::hstride;
H A Dbrw_fs.cpp448 hstride == 0 ? 0 :
449 1 << (hstride - 1));
1141 * the positions using vstride=16, width=8, hstride=2.
1237 * and then reading from it using vstride=1, width=4, hstride=0.
1258 * width=4, hstride=0 of t2 during an ADD instruction.
5354 unsigned hstride = inst->src[i].hstride;
5355 stride = (hstride == 0 ? 0 : (1 << (hstride - 1)));
H A Dbrw_fs_generator.cpp1386 /* Sets vstride=1, width=4, hstride=0 of register src1 during
1501 value.hstride = BRW_HORIZONTAL_STRIDE_0;

Completed in 351 milliseconds