/external/swiftshader/third_party/subzero/pydir/ |
D | gen_test_arith_ll.py | 1 def mangle(op, op_type, signed): argument 18 return '_Z' + str(len(base)) + base + suffixMap[op_type][signed] 49 for op_type in ['i1', 'i8', 'i16', 'i32']: 50 arith('i32', op_type, op) 51 for op_type in ['i64', '<4 x i32>', '<8 x i16>', '<16 x i8>']: 52 arith(op_type, op_type, op) 55 for op_type in ['float', 'double', '<4 x float>']: 56 arith(op_type, op_type, op)
|
/external/v8/src/interpreter/ |
D | bytecode-decoder.cc | 124 OperandType op_type = Bytecodes::GetOperandType(bytecode, i); in Decode() local 129 switch (op_type) { in Decode() 133 << DecodeUnsignedOperand(operand_start, op_type, operand_scale) in Decode() 138 DecodeUnsignedOperand(operand_start, op_type, operand_scale)); in Decode() 144 operand_start, op_type, operand_scale)) in Decode() 148 os << "[" << DecodeSignedOperand(operand_start, op_type, operand_scale) in Decode() 153 << DecodeUnsignedOperand(operand_start, op_type, operand_scale); in Decode() 158 DecodeRegisterOperand(operand_start, op_type, operand_scale); in Decode() 164 DecodeRegisterListOperand(operand_start, 3, op_type, operand_scale); in Decode() 172 DecodeRegisterListOperand(operand_start, 2, op_type, operand_scale); in Decode() [all …]
|
/external/google-breakpad/src/third_party/libdisasm/ |
D | ia32_operand.c | 232 static size_t decode_operand_size( unsigned int op_type, x86_insn_t *insn, in decode_operand_size() argument 237 switch (op_type) { in decode_operand_size() 383 unsigned int addr_meth, op_type, op_size, gen_regs; in ia32_decode_operand() local 389 op_type = raw_flags & OPTYPE_MASK; in ia32_decode_operand() 404 op_size = decode_operand_size(op_type, insn, op); in ia32_decode_operand()
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | select_reactor.hpp | 74 int op_type, socket_type descriptor, 85 ASIO_DECL void start_op(int op_type, socket_type descriptor,
|
D | reactive_socket_service_base.hpp | 417 ASIO_DECL void start_op(base_implementation_type& impl, int op_type,
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
D | select_reactor.ipp | 79 int op_type, socket_type descriptor, 84 op_queue_[op_type].enqueue_operation(descriptor, op); 96 void select_reactor::start_op(int op_type, socket_type descriptor, 108 bool first = op_queue_[op_type].enqueue_operation(descriptor, op);
|
D | reactive_socket_service_base.ipp | 198 int op_type, reactor_op* op, bool is_continuation, 207 reactor_.start_op(op_type, impl.socket_,
|
/external/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl33.c | 68 int op_type; member 218 switch (test_cases[i].op_type) { in do_child()
|
/external/kernel-headers/original/uapi/linux/ |
D | virtio_crypto.h | 227 __le32 op_type; member 383 __le32 op_type; member
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_sample_soa.c | 2484 enum lp_sampler_op_type op_type; in lp_build_sample_soa_code() local 2498 op_type = (sample_key & LP_SAMPLER_OP_TYPE_MASK) >> in lp_build_sample_soa_code() 2501 op_is_tex = op_type == LP_SAMPLER_OP_TEXTURE; in lp_build_sample_soa_code() 2581 if (op_type == LP_SAMPLER_OP_GATHER) { in lp_build_sample_soa_code() 2775 else if (op_type == LP_SAMPLER_OP_FETCH) { in lp_build_sample_soa_code() 2883 op_type == LP_SAMPLER_OP_GATHER, in lp_build_sample_soa_code() 3031 op_type == LP_SAMPLER_OP_GATHER, in lp_build_sample_soa_code() 3048 if (target != PIPE_BUFFER && op_type != LP_SAMPLER_OP_GATHER) { in lp_build_sample_soa_code() 3415 enum lp_sampler_op_type op_type; in lp_build_sample_soa() local 3421 op_type = (params->sample_key & LP_SAMPLER_OP_TYPE_MASK) >> in lp_build_sample_soa() [all …]
|
/external/google-breakpad/src/third_party/libdisasm/swig/ |
D | libdisasm.i | 28 %rename(op_type) x86_op_type;
|
/external/pcre/dist2/src/ |
D | pcre2_compile.c | 3865 uint32_t repeat_type, op_type; in compile_branch() local 5104 op_type = 0; /* Default single-char op codes */ in compile_branch() 5194 case OP_CHAR: op_type = OP_STAR - OP_STAR; break; in compile_branch() 5195 case OP_CHARI: op_type = OP_STARI - OP_STAR; break; in compile_branch() 5196 case OP_NOT: op_type = OP_NOTSTAR - OP_STAR; break; in compile_branch() 5197 case OP_NOTI: op_type = OP_NOTSTARI - OP_STAR; break; in compile_branch() 5242 op_type = OP_TYPESTAR - OP_STAR; /* Use type opcodes */ in compile_branch() 5270 repeat_type += op_type; in compile_branch() 5309 *code++ = OP_EXACT + op_type; /* NB EXACT doesn't have repeat_type */ in compile_branch()
|
/external/valgrind/perf/ |
D | tinycc.c | 15071 uint8_t op_type[MAX_OPERANDS]; /* see OP_xxx */ member 16309 int op_type[3]; /* decoded op type */ in asm_opcode() local 16368 op1 = pa->op_type[i]; in asm_opcode() 16389 op_type[i] = v; in asm_opcode() 16413 if ((ops[i].type & OP_REG) && !(op_type[i] & (OP_CL | OP_DX))) in asm_opcode() 16460 if (op_type[i] & (OP_REG | OP_ST)) { in asm_opcode() 16523 if (op_type[i] & OP_EA) in asm_opcode() 16528 if (op_type[i] & (OP_REG | OP_MMX | OP_SSE | OP_INDIR)) in asm_opcode() 16539 v = op_type[i]; in asm_opcode() 16559 v = op_type[i]; in asm_opcode() [all …]
|