OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ty1
(Results
1 - 7
of
7
) sorted by null
/external/opencv3/modules/cudaimgproc/src/cuda/
clahe.cu
146
int
ty1
= __float2int_rd(tyf);
147
int ty2 =
ty1
+ 1;
148
const float ya = tyf -
ty1
;
149
ty1
= ::max(
ty1
, 0);
163
res += lut(
ty1
* tilesX + tx1, srcVal) * ((1.0f - xa) * (1.0f - ya));
164
res += lut(
ty1
* tilesX + tx2, srcVal) * ((xa) * (1.0f - ya));
/external/opencv3/modules/imgproc/src/opencl/
clahe.cl
228
int
ty1
= convert_int_rtn(tyf);
229
int ty2 =
ty1
+ 1;
230
const float ya = tyf -
ty1
;
231
ty1
= max(
ty1
, 0);
245
res += lut[mad24(
ty1
* tilesX + tx1, lutStep, srcVal + lut_offset)] * ((1.0f - xa) * (1.0f - ya));
246
res += lut[mad24(
ty1
* tilesX + tx2, lutStep, srcVal + lut_offset)] * ((xa) * (1.0f - ya));
/external/pdfium/third_party/libopenjpeg20/
pi.h
103
OPJ_INT32 tx0, ty0, tx1,
ty1
;
member in struct:opj_pi_iterator
pi.c
340
pi->poc.
ty1
= pi->
ty1
;
344
for (pi->y = pi->poc.ty0; pi->y < pi->poc.
ty1
; pi->y += (OPJ_INT32)(pi->dy - (OPJ_UINT32)(pi->y % (OPJ_INT32)pi->dy))) {
361
try1 = opj_int_ceildiv(pi->
ty1
, (OPJ_INT32)(comp->dy << levelno));
427
pi->poc.
ty1
= pi->
ty1
;
430
for (pi->y = pi->poc.ty0; pi->y < pi->poc.
ty1
; pi->y += (OPJ_INT32)(pi->dy - (OPJ_UINT32)(pi->y % (OPJ_INT32)pi->dy))) {
445
try1 = opj_int_ceildiv(pi->
ty1
, (OPJ_INT32)(comp->dy << levelno));
511
pi->poc.
ty1
= pi->
ty1
;
[
all
...]
openjpeg.h
339
OPJ_INT32 tx0,tx1,ty0,
ty1
;
member in struct:opj_poc
[
all
...]
/external/opencv3/modules/imgproc/src/
clahe.cpp
292
int
ty1
= cvFloor(tyf);
local
293
int ty2 =
ty1
+ 1;
295
float ya = tyf -
ty1
, ya1 = 1.0f - ya;
297
ty1
= std::max(
ty1
, 0);
300
const T* lutPlane1 = lut_.ptr<T>(
ty1
* tilesX_);
imgwarp.cpp
[
all
...]
Completed in 39 milliseconds