HomeSort by relevance Sort by last modified time
    Searched refs:op_type (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/swiftshader/third_party/subzero/pydir/
gen_test_arith_ll.py 1 def mangle(op, op_type, signed):
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
    [all...]
  /system/update_engine/payload_consumer/
payload_constants.cc 46 const char* InstallOperationTypeName(InstallOperation_Type op_type) {
47 switch (op_type) {
payload_constants.h 73 const char* InstallOperationTypeName(InstallOperation_Type op_type);
  /external/v8/src/interpreter/
bytecode-decoder.cc 124 OperandType op_type = Bytecodes::GetOperandType(bytecode, i); local
129 switch (op_type) {
133 << DecodeUnsignedOperand(operand_start, op_type, operand_scale)
138 DecodeUnsignedOperand(operand_start, op_type, operand_scale));
144 operand_start, op_type, operand_scale))
148 os << "[" << DecodeSignedOperand(operand_start, op_type, operand_scale)
153 << DecodeUnsignedOperand(operand_start, op_type, operand_scale);
158 DecodeRegisterOperand(operand_start, op_type, operand_scale);
164 DecodeRegisterListOperand(operand_start, 3, op_type, operand_scale);
172 DecodeRegisterListOperand(operand_start, 2, op_type, operand_scale)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
xtensa-relax.h 94 typedef enum op_type OpType;
97 enum op_type enum
tc-tic30.c 229 unsigned op_type; member in struct:__anon115788
455 current_op->op_type = Direct;
567 current_op->op_type = Indirect;
577 current_op->op_type = ARn;
579 current_op->op_type = Rn;
581 current_op->op_type = DPReg;
583 current_op->op_type = OtherReg;
634 current_op->op_type = Disp | Abs24 | Imm16 | Imm24;
636 current_op->op_type |= IVector;
885 if ((p_insn.operand_type[count][i]->op_type
    [all...]
tc-d10v.c 487 int op_type,
494 shift = d10v_operands[op_type].shift;
498 bits = d10v_operands[op_type].bits;
501 if (check_range (value, bits, d10v_operands[op_type].flags))
1499 int op_type; local
    [all...]
tc-arc.c 1841 int op_type, reloc_type; local
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
h8300-dis.c 57 for (i = 0; p->data.nib[i] != (op_type) E; i++)
77 op_type looking_for,
175 op_type x,
353 const op_type *nib = q->data.nib;
358 op_type looking_for = *nib;
378 looking_for = (op_type) ((int) looking_for & ~(int) B31);
386 looking_for = (op_type) ((int) looking_for & ~(int) B30);
394 looking_for = (op_type) ((int) looking_for & ~(int) B21);
402 looking_for = (op_type) ((int) looking_for & ~(int) B20);
409 looking_for = (op_type) ((int) looking_for & ~(int) B11)
    [all...]
arc-opc.c 341 enum operand op_type = OP_NONE;
359 op_type = OP_SHIMM;
380 op_type = OP_LIMM;
433 op_type = OP_REG;
440 ls_operand[LS_DEST] = op_type;
443 ls_operand[LS_BASE] = op_type;
447 ls_operand[LS_VALUE] = op_type;
449 ls_operand[LS_OFFSET] = op_type;
452 ls_operand[LS_OFFSET] = op_type;
1087 enum operand op_type;
339 enum operand op_type = OP_NONE; local
1084 enum operand op_type; local
    [all...]
crx-dis.c 126 for (i = 0; instruction->operands[i].op_type && i < MAX_OPERANDS; i++)
621 if (instruction->operands[op_index].op_type == abs16)
665 a.type = getargtype (instruction->operands[i].op_type);
666 if (instruction->operands[i].op_type == cst4
667 || instruction->operands[i].op_type == rbase_dispu4)
669 a.size = getbits (instruction->operands[i].op_type);
cgen-opc.c 559 enum cgen_operand_type op_type = opinst->op_type;
560 if (op_type == CGEN_OPERAND_NIL)
563 indices[i] = (*cd->get_int_operand) (cd, op_type, fields);
555 enum cgen_operand_type op_type = opinst->op_type; local
  /system/core/libpixelflinger/codeflinger/
Arm64Assembler.cpp 577 int Rd, int Rn, uint32_t op_type, uint32_t size)
583 if(op_type == OPERAND_IMM)
613 else if(op_type == OPERAND_REG_OFFSET)
620 else if(op_type > OPERAND_UNSUPPORTED)
633 void ArmToArm64Assembler::ADDR_LDR(int cc, int Rd, int Rn, uint32_t op_type)
635 return dataTransfer(opLDR, cc, Rd, Rn, op_type, 64);
637 void ArmToArm64Assembler::ADDR_STR(int cc, int Rd, int Rn, uint32_t op_type)
639 return dataTransfer(opSTR, cc, Rd, Rn, op_type, 64);
641 void ArmToArm64Assembler::LDR(int cc, int Rd, int Rn, uint32_t op_type)
643 return dataTransfer(opLDR, cc, Rd, Rn, op_type);
    [all...]
  /system/update_engine/payload_generator/
full_update_generator.cc 105 InstallOperation_Type op_type; local
107 buffer_in_, version_, &op_blob, &op_type));
109 aop_->op.set_type(op_type);
ab_generator.cc 289 InstallOperation_Type op_type; local
291 diff_utils::GenerateBestFullOperation(data, version, &blob, &op_type));
295 if (aop->op.type() != op_type || aop->op.data_length() != blob.size()) {
296 aop->op.set_type(op_type);
delta_diff_utils.h 122 // Returns whether op_type is one of the REPLACE full operations.
123 bool IsAReplaceOperation(InstallOperation_Type op_type);
cycle_breaker.cc 58 InstallOperation_Type op_type = graph[i].aop.op.type(); local
59 if (op_type == InstallOperation::REPLACE ||
60 op_type == InstallOperation::REPLACE_BZ) {
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
select_reactor.hpp 74 int op_type, socket_type descriptor,
85 ASIO_DECL void start_op(int op_type, socket_type descriptor,
  /external/google-breakpad/src/third_party/libdisasm/
ia32_operand.c 232 static size_t decode_operand_size( unsigned int op_type, x86_insn_t *insn,
237 switch (op_type) {
383 unsigned int addr_meth, op_type, op_size, gen_regs; local
389 op_type = raw_flags & OPTYPE_MASK;
404 op_size = decode_operand_size(op_type, insn, op);
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl33.c 68 int op_type; member in struct:test_case_t
218 switch (test_cases[i].op_type) {
  /system/update_engine/scripts/update_payload/
test_utils.py 187 def AddOperation(self, is_kernel, op_type, data_offset=None,
196 op.type = op_type
274 def AddOperationWithData(self, is_kernel, op_type, src_extents=None,
285 op_type: one of REPLACE, REPLACE_BZ, MOVE or BSDIFF
300 self.AddOperation(is_kernel, op_type, data_offset=data_offset,
checker_unittest.py     [all...]
  /system/bt/stack/gap/
gap_ble.cc 310 uint16_t op_type; local
317 op_type = p_clcb->cl_op_uuid;
321 status, op_type);
331 switch (op_type) {
  /bionic/libc/kernel/uapi/linux/
virtio_crypto.h 169 __le32 op_type; member in struct:virtio_crypto_sym_create_session_req
252 __le32 op_type; member in struct:virtio_crypto_sym_data_req
  /external/kernel-headers/original/uapi/linux/
virtio_crypto.h 227 __le32 op_type; member in struct:virtio_crypto_sym_create_session_req
383 __le32 op_type; member in struct:virtio_crypto_sym_data_req

Completed in 1163 milliseconds

1 2 3