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

1 2

  /system/update_engine/payload_consumer/
payload_constants.cc 45 const char* InstallOperationTypeName(InstallOperation_Type op_type) {
46 switch (op_type) {
payload_constants.h 73 const char* InstallOperationTypeName(InstallOperation_Type op_type);
  /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:__anon75244
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...]
tc-h8300.c 317 while (pi->noperands < 3 && p->args.nib[pi->noperands] != (op_type) E)
322 while (p->data.nib[pi->length * 2] != (op_type) E)
343 op_type mode;
356 static int parse_reg (char *, op_type *, unsigned *, int);
376 parse_reg (char *src, op_type *mode, unsigned int *reg, int direction)
606 op_type mode;
1099 op_type op = this_try->opcode->args.nib[i];
    [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 578 int Rd, int Rn, uint32_t op_type, uint32_t size)
584 if(op_type == OPERAND_IMM)
614 else if(op_type == OPERAND_REG_OFFSET)
621 else if(op_type > OPERAND_UNSUPPORTED)
634 void ArmToArm64Assembler::ADDR_LDR(int cc, int Rd, int Rn, uint32_t op_type)
636 return dataTransfer(opLDR, cc, Rd, Rn, op_type, 64);
638 void ArmToArm64Assembler::ADDR_STR(int cc, int Rd, int Rn, uint32_t op_type)
640 return dataTransfer(opSTR, cc, Rd, Rn, op_type, 64);
642 void ArmToArm64Assembler::LDR(int cc, int Rd, int Rn, uint32_t op_type)
644 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 286 InstallOperation_Type op_type; local
288 diff_utils::GenerateBestFullOperation(data, version, &blob, &op_type));
292 if (aop->op.type() != op_type || aop->op.data_length() != blob.size()) {
293 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) {
delta_diff_utils.cc 600 InstallOperation_Type op_type; local
602 GenerateBestFullOperation(new_data, version, &data_blob, &op_type));
603 operation.set_type(op_type);
724 bool IsAReplaceOperation(InstallOperation_Type op_type) {
725 return (op_type == InstallOperation::REPLACE ||
726 op_type == InstallOperation::REPLACE_BZ ||
727 op_type == InstallOperation::REPLACE_XZ);
  /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/v8/src/interpreter/
bytecodes.cc 729 OperandType op_type = GetOperandType(bytecode, i); local
733 switch (op_type) {
736 << DecodeUnsignedOperand(operand_start, op_type, operand_scale);
742 << DecodeUnsignedOperand(operand_start, op_type, operand_scale)
746 os << "[" << DecodeSignedOperand(operand_start, op_type, operand_scale)
751 << DecodeUnsignedOperand(operand_start, op_type, operand_scale);
757 DecodeRegisterOperand(operand_start, op_type, operand_scale);
767 DecodeRegisterOperand(operand_start, op_type, operand_scale);
  /external/opencv3/modules/imgproc/src/
corner.cpp 268 int aperture_size, int op_type, double k=0.,
272 if (tegra::useTegra() && tegra::cornerEigenValsVecs(src, eigenv, block_size, aperture_size, op_type, k, borderType))
368 if( op_type == MINEIGENVAL )
370 else if( op_type == HARRIS )
372 else if( op_type == EIGENVALSVECS )
438 int aperture_size, double k, int borderType, int op_type)
440 CV_Assert(op_type == HARRIS || op_type == MINEIGENVAL);
469 borderTypes[borderType], cornerType[op_type]));
  /external/v8/test/cctest/interpreter/
bytecode-expectations-printer.cc 105 OperandType op_type = Bytecodes::GetOperandType(bytecode, op_index); local
125 if (Bytecodes::IsRegisterOperandType(op_type)) {
148 switch (op_type) {
  /system/bt/stack/gap/
gap_ble.c 622 UINT16 op_type; local
630 op_type = p_clcb->cl_op_uuid;
632 GAP_TRACE_EVENT ("gap_ble_c_cmpl_cback() - op_code: 0x%02x status: 0x%02x read_type: 0x%04x", op, status, op_type);
645 switch (op_type)
  /toolchain/binutils/binutils-2.25/include/opcode/
cr16.h 244 operand_type op_type; member in struct:__anon75705
crx.h 248 operand_type op_type; member in struct:__anon75718

Completed in 3096 milliseconds

1 2