HomeSort by relevance Sort by last modified time
    Searched defs:op (Results 351 - 375 of 1647) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.cpp 66 BuildUtil::mkOp1(operation op, DataType ty, Value *dst, Value *src)
68 Instruction *insn = new_Instruction(func, op, ty);
78 BuildUtil::mkOp2(operation op, DataType ty, Value *dst,
81 Instruction *insn = new_Instruction(func, op, ty);
92 BuildUtil::mkOp3(operation op, DataType ty, Value *dst,
95 Instruction *insn = new_Instruction(func, op, ty);
122 BuildUtil::mkStore(operation op, DataType ty, Symbol *mem, Value *ptr,
125 Instruction *insn = new_Instruction(func, op, ty);
154 operation op = OP_LINTERP; local
161 op = OP_PINTERP
    [all...]
nv50_ir_target_nv50.cpp 71 operation op; member in struct:nv50_ir::opProperties
141 opInfo[i].op = (operation)i;
172 opInfo[prop->op].srcMods[s] |= NV50_IR_MOD_NEG;
174 opInfo[prop->op].srcMods[s] |= NV50_IR_MOD_ABS;
176 opInfo[prop->op].srcMods[s] |= NV50_IR_MOD_NOT;
178 opInfo[prop->op].srcFiles[s] |= 1 << (int)FILE_MEMORY_CONST;
180 opInfo[prop->op].srcFiles[s] |= 1 << (int)FILE_MEMORY_SHARED;
182 opInfo[prop->op].srcFiles[s] |= 1 << (int)FILE_SHADER_INPUT;
184 opInfo[prop->op].srcFiles[s] |= 1 << (int)FILE_IMMEDIATE;
187 opInfo[prop->op].dstMods = NV50_IR_MOD_SAT
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_variable.c 196 rc_opcode op = rc_get_flow_control_inst(inst); local
197 if (op == RC_OPCODE_ENDLOOP) {
203 } else if (op == RC_OPCODE_BGNLOOP) {
  /external/mesa3d/src/gallium/drivers/r600/
r600_query.c 218 uint32_t op; local
228 op = PRED_OP(operation) | PREDICATION_DRAW_VISIBLE |
239 cs->buf[cs->cdw++] = op | (((va + results_base) >> 32UL) & 0xFF);
245 op |= PREDICATION_CONTINUE;
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_hw_context.c 506 uint32_t op; local
514 op = PRED_OP(operation) | PREDICATION_DRAW_VISIBLE |
522 cs->buf[cs->cdw++] = op | (((va + results_base) >> 32UL) & 0xFF);
529 op |= PREDICATION_CONTINUE;
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_composite.c 42 unsigned op : 8; member in struct:xa_composite_blend
103 enum xa_composite_op op,
125 if (xa_blends[i].op == op) {
140 * If there's no dst alpha channel, adjust the blend op so that we'll treat
240 if (blend_for_op(&blend, comp->op, comp->src, comp->mask, comp->dst)) {
261 if (!blend_for_op(&blend_opt, comp->op, comp->src, comp->mask, comp->dst))
363 if (!blend_for_op(&blend, comp->op, src_pic, mask_pic, NULL))
xa_composite.h 105 int op; member in struct:xa_composite
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_composite.c 15 int op : 8; member in struct:xorg_composite_blend
71 int op, PicturePtr pSrcPicture, PicturePtr pMaskPicture,
83 if (xorg_blends[i].op == op) {
89 /* If there's no dst alpha channel, adjust the blend op so that we'll treat
172 boolean xorg_composite_accelerated(int op,
192 if (blend_for_op(&blend, op,
199 "alpha and source value blending. (op=%d)",
200 op);
206 XORG_FALLBACK("Unsupported composition operation = %d", op);
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_emit.cpp 195 int op = brw_math_function(inst->opcode); local
201 op,
209 op,
223 int op = brw_math_function(inst->opcode); local
228 brw_math2(p, dst, op, src0, src1);
232 brw_math2(p, sechalf(dst), op, sechalf(src0), sechalf(src1));
242 int op = brw_math_function(inst->opcode); local
248 op,
256 op,
788 * equality with a 32-bit value. See piglit fs-op-neg-uvec4
    [all...]
  /external/mesa3d/src/mesa/main/
atifragshader.c 101 GL_NONE as the op enum and just set some params to 0 - so nothing to do here */
150 static void debug_op(GLint optype, GLuint arg_count, GLenum op, GLuint dst,
160 fprintf(stderr, "%s(%s, %s", op_name, _mesa_lookup_enum_by_nr(op),
414 GLuint op = curProg->SetupInst[j][i].Opcode; local
415 const char *op_enum = op > 5 ? _mesa_lookup_enum_by_nr(op) : "0";
418 fprintf(stderr, "%2d %04X %s %d %04X\n", i, op, op_enum, src,
588 _mesa_FragmentOpXATI(GLint optype, GLuint arg_count, GLenum op, GLuint dst,
640 /* op checking? Actually looks like that's missing in the spec but we'll do it anyway */
641 if (((op < GL_ADD_ATI) || (op > GL_DOT2_ADD_ATI)) && !(op == GL_MOV_ATI))
    [all...]
  /external/minijail/
syscall_filter_unittest.c 180 int op = EQ; local
185 size_t len = bpf_arg_comp(&arg_comp, op, argidx, c, label_id);
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
reduce.hpp 82 template <class Op>
83 __device__ __forceinline__ static const Op& op(const Op& aop) function in struct:cv::cudev::grid_reduce_detail::Unroll
103 template <class Op>
104 __device__ __forceinline__ static tuple<Op, Op> op(const Op& aop) function in struct:cv::cudev::grid_reduce_detail::Unroll
126 template <class Op>
127 __device__ __forceinline__ static tuple<Op, Op, Op> op(const Op& aop) function in struct:cv::cudev::grid_reduce_detail::Unroll
151 __device__ __forceinline__ static tuple<Op, Op, Op, Op> op(const Op& aop) function in struct:cv::cudev::grid_reduce_detail::Unroll
331 Op op; local
341 Op op; local
    [all...]
  /external/pcre/dist/
pcre_study.c 107 register pcre_uchar op = *cc; local
109 switch (op)
165 if (op != OP_ALT) return length;
319 cc += PRIV(OP_lengths)[op];
327 cc += PRIV(OP_lengths)[op];
338 if (op == OP_XCLASS)
576 cc += PRIV(OP_lengths)[op];
588 cc += PRIV(OP_lengths)[op] + cc[1];
600 cc += PRIV(OP_lengths)[op];
    [all...]
  /external/pdfium/third_party/freetype/src/cff/
cf2glue.h 99 /* need it. The `op' parameter allows one function to handle multiple */
109 CF2_Int op; member in struct:CF2_CallbackParamsRec_
  /external/skia/include/core/
SkRegion.h 124 * faster than calling region.op(rect, kUnion_Op) in a loop. If count is
239 enum Op {
240 kDifference_Op, //!< subtract the op region from the first region
244 /** subtract the first region from the op region */
246 kReplace_Op, //!< replace the dst region with the op region
254 * Set this region to the result of applying the Op to this region and the
255 * specified rectangle: this = (this op rect).
258 bool op(const SkIRect& rect, Op op) { return this->op(*this, rect, op); function in class:SkRegion
265 bool op(int left, int top, int right, int bottom, Op op) { function in class:SkRegion
276 bool op(const SkRegion& rgn, Op op) { return this->op(*this, rgn, op); } function in class:SkRegion
    [all...]
  /external/tcpdump/
print-atalk.c 55 uint16_t op; member in struct:aarp
200 switch (EXTRACT_16BITS(&ap->op)) {
214 ND_PRINT((ndo, "len %u op %u htype %u ptype %#x halen %u palen %u",
215 length, EXTRACT_16BITS(&ap->op), EXTRACT_16BITS(&ap->htype),
print-ospf.c 822 register const struct ospfhdr *op, register u_int length)
830 switch (op->ospf_type) {
833 if (!(op->ospf_hello.hello_options & OSPF_OPTION_L))
838 if (!(op->ospf_db.db_options & OSPF_OPTION_L))
847 length2 = EXTRACT_16BITS(&op->ospf_len);
848 dptr = (u_char *)op + length2;
849 dataend = (u_char *)op + length;
851 if (EXTRACT_16BITS(&op->ospf_authtype) == OSPF_AUTH_MD5) {
852 dptr = dptr + op->ospf_authdata[3];
853 length2 += op->ospf_authdata[3]
1046 register const struct ospfhdr *op; local
    [all...]
  /external/v8/src/arm64/
instructions-arm64.cc 24 LoadStoreOp op = static_cast<LoadStoreOp>(Mask(LoadStoreOpMask)); local
25 switch (op) {
51 LoadStoreOp op = static_cast<LoadStoreOp>(Mask(LoadStoreOpMask)); local
52 switch (op) {
172 LSDataSize CalcLSPairDataSize(LoadStorePairOp op) {
173 switch (op) {
  /external/v8/src/compiler/
js-inlining.cc 70 return call_->op()->ValueInputCount() - 2;
107 copy = target_graph_->NewNode(orig->op(), orig->InputCount(),
144 static_cast<int>(start->op()->ValueOutputCount()) - 3;
146 static_cast<int>(start->op()->ValueOutputCount()) - 2;
148 static_cast<int>(start->op()->ValueOutputCount()) - 1;
152 int inliner_inputs = call->op()->ValueInputCount();
158 int index = 1 + ParameterIndexOf(use->op());
249 const Operator* op = jsgraph_->common()->FrameState( local
261 return jsgraph_->graph()->NewNode(op, params_node, node0, node0,
495 const CallFunctionParameters& p = CallFunctionParametersOf(node->op());
    [all...]
machine-operator.h 23 explicit OptionalOperator(const Operator* op) : op_(op) {}
26 const Operator* op() const { function in class:v8::internal::compiler::final
move-optimizer.cc 220 const InstructionOperand* op = last_instr->InputAt(i); local
221 if (!op->IsConstant() && !op->IsImmediate()) return;
296 bool IsSlot(const InstructionOperand& op) {
297 return op.IsStackSlot() || op.IsDoubleStackSlot();
  /external/v8/test/cctest/compiler/
codegen-tester.h 445 explicit CompareWrapper(IrOpcode::Value op) : opcode(op) {}
448 return m->AddNode(op(m->machine()), a, b);
451 const Operator* op(MachineOperatorBuilder* machine) { function in class:v8::internal::compiler::CompareWrapper
  /external/v8/test/unittests/compiler/
liveness-analyzer-unittest.cc 66 const Operator* op = common()->FrameState( local
69 graph()->NewNode(op, empty_values_, locals, empty_values_,
  /external/valgrind/VEX/priv/
tilegx_disasm.c 7604 const struct tilegx_operand *op = local
7683 Long op = decoded.operand_values[i]; local
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-xen.c 242 PRE_MEM_READ("XENMEM_access_op op",
243 (Addr)&arg->op, sizeof(arg->op));
264 struct vki_xen_mmuext_op *op = ops + i; local
266 (Addr)&op->cmd, sizeof(op->cmd));
267 switch(op->cmd) {
279 (Addr)&op->arg1.mfn,
280 sizeof(op->arg1.mfn));
287 (Addr)&op->arg1.linear_addr
348 struct vki_xen_flask_op *op = (struct vki_xen_flask_op *)ARG1; local
1175 unsigned long op = ARG1; local
1396 struct vki_xen_flask_op *op = (struct vki_xen_flask_op *)ARG1; local
1972 unsigned long op = ARG1; local
    [all...]

Completed in 713 milliseconds

<<11121314151617181920>>