Home
last modified time | relevance | path

Searched refs:optype (Results 1 – 10 of 10) sorted by relevance

/external/mesa3d/src/mesa/swrast/
Ds_atifragshader.c98 apply_src_rep(GLint optype, GLuint rep, GLfloat * val) in apply_src_rep() argument
105 start = optype ? 3 : 0; in apply_src_rep()
127 apply_src_mod(GLint optype, GLuint mod, GLfloat * val) in apply_src_mod() argument
135 start = optype ? 3 : 0; in apply_src_mod()
154 apply_dst_mod(GLuint optype, GLuint mod, GLfloat * val) in apply_dst_mod() argument
162 start = optype ? 3 : 0; in apply_dst_mod()
163 end = optype ? 4 : 3; in apply_dst_mod()
204 write_dst_addr(GLuint optype, GLuint mod, GLuint mask, GLfloat * src, in write_dst_addr() argument
208 apply_dst_mod(optype, mod, src); in write_dst_addr()
210 if (optype == ATI_FRAGMENT_SHADER_COLOR_OP) { in write_dst_addr()
[all …]
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_fragshader.c41 static void r200SetFragShaderArg( GLuint *afs_cmd, GLuint opnum, GLuint optype, in r200SetFragShaderArg() argument
55 if (optype) in r200SetFragShaderArg()
60 if (optype) in r200SetFragShaderArg()
64 if (!optype) in r200SetFragShaderArg()
70 if (!optype) in r200SetFragShaderArg()
108 SET_INST(opnum, optype) |= reg0; in r200SetFragShaderArg()
109 SET_INST_2(opnum, optype) |= reg2; in r200SetFragShaderArg()
144 GLuint optype; in r200UpdateFSArith() local
152 for (optype = 0; optype < 2; optype++) { in r200UpdateFSArith()
155 if (inst->Opcode[optype]) { in r200UpdateFSArith()
[all …]
/external/mesa3d/src/mesa/main/
Datifragshader.c110 static void match_pair_inst(struct ati_fragment_shader *curProg, GLuint optype) in match_pair_inst() argument
112 if (optype == curProg->last_optype) { in match_pair_inst()
150 static void debug_op(GLint optype, GLuint arg_count, GLenum op, GLuint dst, in debug_op() argument
158 op_name = atifs_ops[(arg_count-1)+(optype?3:0)]; in debug_op()
162 if (!optype) in debug_op()
182 GLuint optype, GLuint arg, GLuint argRep) in check_arith_arg() argument
193 if ((arg == GL_SECONDARY_INTERPOLATOR_ATI) && (((optype == 0) && (argRep == GL_ALPHA)) || in check_arith_arg()
194 ((optype == 1) && ((arg == GL_ALPHA) || (argRep == GL_NONE))))) { in check_arith_arg()
198 if ((arg == GL_SECONDARY_INTERPOLATOR_ATI) && (((optype == 0) && (argRep == GL_ALPHA)) || in check_arith_arg()
199 ((optype == 1) && ((arg == GL_ALPHA) || (argRep == GL_NONE))))) { in check_arith_arg()
[all …]
/external/google-breakpad/src/third_party/libdisasm/
Dlibdis.h170 #define x86_optype_is_address( optype ) \ argument
171 ( optype == op_absolute || optype == op_offset )
172 #define x86_optype_is_relative( optype ) \ argument
173 ( optype == op_relative_near || optype == op_relative_far )
174 #define x86_optype_is_memory( optype ) \ argument
175 ( optype > op_immediate && optype < op_unknown )
/external/ltrace/sysdeps/linux-gnu/metag/
Dtrace.c277 int umask = 0, optype = 0; in metag_next_pcs() local
296 optype = (inst >> 28) & 0x1; in metag_next_pcs()
302 optype = (inst >> 27) & 0x1; in metag_next_pcs()
334 if (optype) in metag_next_pcs()
/external/kernel-headers/original/uapi/linux/
Ddlm_plock.h30 __u8 optype; member
/external/opencv3/modules/imgproc/test/
Dtest_filter.cpp179 int optype, optype_min, optype_max; member in CV_MorphologyBaseTest
189 optype = optype_min = optype_max = -1; in CV_MorphologyBaseTest()
208 optype = cvtest::randInt(rng) % (optype_max - optype_min + 1) + optype_min; in get_test_array_types_and_sizes()
215 (optype == CV_MOP_ERODE || optype == CV_MOP_DILATE || in get_success_error_level()
216 optype == CV_MOP_OPEN || optype == CV_MOP_CLOSE) ? 0 : 1e-5; in get_success_error_level()
264 if( optype == CV_MOP_ERODE ) in prepare_to_validation()
268 else if( optype == CV_MOP_DILATE ) in prepare_to_validation()
275 if( optype == CV_MOP_OPEN ) in prepare_to_validation()
280 else if( optype == CV_MOP_CLOSE ) in prepare_to_validation()
285 else if( optype == CV_MOP_GRADIENT ) in prepare_to_validation()
[all …]
/external/boringssl/src/crypto/evp/
Devp_ctx.c202 int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype, int cmd, in EVP_PKEY_CTX_ctrl() argument
217 if (optype != -1 && !(ctx->operation & optype)) { in EVP_PKEY_CTX_ctrl()
Dinternal.h177 OPENSSL_EXPORT int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype,
/external/opencv3/modules/core/src/
Dmatrix.cpp3469 #define REDUCE_OP(favor, optype, type1, type2) \ argument
3470 static inline void reduce##optype##C##favor(const cv::Mat& srcmat, cv::Mat& dstmat) \
3480 …if (ippi##optype##_##favor##_C1R(srcmat.ptr<IppType>(y), sstep, roisize, dstmat.ptr<IppType>(y)) <…
3484 … cv::reduceC_ < type1, type2, cv::Op##optype < type2 > >(srcmat.rowRange(y, y + 1), dstroi); \
3492 cv::reduceC_ < type1, type2, cv::Op##optype < type2 > >(srcmat, dstmat); \