Home
last modified time | relevance | path

Searched refs:ty2 (Results 1 – 7 of 7) sorted by relevance

/external/opencv3/modules/cudaimgproc/src/cuda/
Dclahe.cu147 int ty2 = ty1 + 1; in tranformKernel() local
150 ty2 = ::min(ty2, tilesY - 1); in tranformKernel()
165 res += lut(ty2 * tilesX + tx1, srcVal) * ((1.0f - xa) * (ya)); in tranformKernel()
166 res += lut(ty2 * tilesX + tx2, srcVal) * ((xa) * (ya)); in tranformKernel()
/external/opencv3/modules/imgproc/src/opencl/
Dclahe.cl229 int ty2 = ty1 + 1;
232 ty2 = min(ty2, tilesY - 1);
247 res += lut[mad24(ty2 * tilesX + tx1, lutStep, srcVal + lut_offset)] * ((1.0f - xa) * (ya));
248 res += lut[mad24(ty2 * tilesX + tx2, lutStep, srcVal + lut_offset)] * ((xa) * (ya));
/external/opencv3/modules/imgproc/src/
Dclahe.cpp293 int ty2 = ty1 + 1; in operator ()() local
298 ty2 = std::min(ty2, tilesY_ - 1); in operator ()()
301 const T* lutPlane2 = lut_.ptr<T>(ty2 * tilesX_); in operator ()()
/external/llvm/docs/
DLangRef.rst6527 <result> = extractelement <n x <ty>> <val>, <ty2> <idx> ; yields <ty>
6567 <result> = insertelement <n x <ty>> <val>, <ty> <elt>, <ty2> <idx> ; yields <n x <ty>>
7458 <result> = trunc <ty> <value> to <ty2> ; yields ty2
7463 The '``trunc``' instruction truncates its operand to the type ``ty2``.
7471 larger than the bit size of the destination type, ``ty2``. Equal sized
7478 and converts the remaining bits to ``ty2``. Since the source size must
7500 <result> = zext <ty> <value> to <ty2> ; yields ty2
7505 The '``zext``' instruction zero extends its operand to type ``ty2``.
7513 smaller than the bit size of the destination type, ``ty2``.
7519 until it reaches the size of the destination type, ``ty2``.
[all …]
/external/llvm/test/Bindings/OCaml/
Dcore.ml638 let ty2 = function_type i8_type [| i8_type; i64_type |] in
648 insist (pointer_type ty2 == type_of (declare_function "Fn1" ty2 m));
/external/llvm/test/CodeGen/PowerPC/
Dpr17168.ll384 !327 = !DIGlobalVariable(name: "ty2", line: 31, isLocal: true, isDefinition: true, scope: null, fil…
/external/valgrind/VEX/priv/
Dir_opt.c3245 Int offset2, IRType ty2 ) in getAliasingRelation_IC() argument
3251 maxoff2 = minoff2 + sizeofIRType(ty2) - 1; in getAliasingRelation_IC()