/external/skia/src/animator/ |
SkAnimator.cpp | 235 int index, SkOperand* operand, SkDisplayTypes type) { 239 return info->getArrayValue(element, index, operand); 244 SkOperand operand; local 245 bool result = getArrayCommon(ae, ai, index, &operand, SkType_Int); 246 return result ? operand.fS32 : SK_NaN32; 261 SkOperand operand; local 262 bool result = getArrayCommon(ae, ai, index, &operand, SkType_Float); 263 return result ? operand.fScalar : SK_ScalarNaN; 278 SkOperand operand; local 279 bool result = getArrayCommon(ae, ai, index, &operand, SkType_String) 321 SkOperand operand; local 347 SkOperand operand; local 577 SkOperand operand; local 602 SkOperand operand; local [all...] |
SkAnimatorScript2.cpp | 50 virtual bool convert(SkOperand2::OpType type, SkOperand2* operand) { 54 SkDisplayArray* boxedValue = new SkDisplayArray(*operand->fArray); 60 boxedValue->value = operand->fS32; 65 boxedValue->value = operand->fScalar; 68 SkDisplayString* boxedValue = new SkDisplayString(*operand->fString); 78 operand->fObject = (void*) displayable; 299 virtual bool convert(SkOperand2::OpType type, SkOperand2* operand) { 301 SkDisplayable* displayable = (SkDisplayable*) operand->fObject; 305 operand->fArray = new SkOpArray(SkAnimatorScript2::ToOpType(boxedValue->values.getType())); 307 operand->fArray->setCount(count) [all...] |
/external/llvm/utils/TableGen/ |
CodeEmitterGen.cpp | 101 // operand encoding. 104 // If the operand matches by name, reference according to that 105 // operand number. Non-matching operands are assumed to be in 109 // Get the machine operand number for the indicated operand. 112 "Explicitly used operand also marked as not emitted!"); 114 /// If this operand is not supposed to be emitted by the 124 // If the source operand has a custom encoder, use it. This will 129 // query the encoder once per source operand. 154 // Figure out the consecutive range of bits covered by this operand, i [all...] |
EDEmitter.cpp | 206 /// each entry in that list, determines the index of the same operand in the 210 /// @arg operandOrder - The array that will be populated with the operand 213 /// representing an index in the operand descriptor array. 249 /// X86TypeFromOpName - Processes the name of a single X86 operand (which is 250 /// actually its type) and translates it into an operand type 253 /// @arg name - The name of the operand 348 /// @operandFlags - A reference the array of operand flag objects 365 errs() << "Operand type: " << rec.getName().c_str() << "\n"; 366 errs() << "Operand name: " << operandInfo.Name.c_str() << "\n"; 373 /// decorate1 - Decorates a named operand with a new fla [all...] |
X86RecognizableInstr.cpp | 631 // Operand 1 (optional) is an address or immediate. 632 // Operand 2 (optional) is an immediate. 639 // Operand 1 is added to the opcode. 640 // Operand 2 (optional) is an address. 647 // Operand 1 is a register operand in the R/M field. 648 // Operand 2 is a register operand in the Reg/Opcode field. 649 // - In AVX, there is a register operand in the VEX.vvvv field here - 650 // Operand 3 (optional) is an immediate [all...] |
AsmWriterInst.cpp | 83 // We recognize a tab as an operand delimeter. 115 // We recognize a tab as an operand delimeter. 181 throw "Bad operand modifier name in '"+ CGI.TheDef->getName() + "'"; 200 // Otherwise, normal operand. 217 /// specified instruction except for one differing operand, return the differing 218 /// operand number. If more than one operand mismatches, return ~1, otherwise
|
/external/v8/src/ia32/ |
assembler-ia32-inl.h | 379 void Operand::set_modrm(int mod, Register rm) { 386 void Operand::set_sib(ScaleFactor scale, Register index, Register base) { 396 void Operand::set_disp8(int8_t disp) { 402 void Operand::set_dispr(int32_t disp, RelocInfo::Mode rmode) { 410 Operand::Operand(Register reg) { 416 Operand::Operand(XMMRegister xmm_reg) { 422 Operand::Operand(int32_t disp, RelocInfo::Mode rmode) [all...] |
/external/v8/src/mips/ |
assembler-mips-inl.h | 48 // Operand and MemOperand 50 Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) { 57 Operand::Operand(const ExternalReference& f) { 64 Operand::Operand(Smi* value) { 71 Operand::Operand(Register rm) { 76 bool Operand::is_reg() const [all...] |
macro-assembler-mips.h | 104 #define COND_TYPED_ARGS Condition cond, Register r1, const Operand& r2 159 DECLARE_NORELOC_PROTOTYPE(Name, const Operand&) \ 189 const Operand& op = Operand(no_reg)); 194 const Operand& op = Operand(no_reg)); 219 Condition cond, Register src1, const Operand& src2); 226 Condition cond, Register src1, const Operand& src2); 250 Operand offset, 379 void instr(Register rd, Register rs, const Operand& rt); [all...] |
/external/v8/src/ |
lithium.h | 95 // Lifetime of operand inside the instruction. 97 // USED_AT_START operand is guaranteed to be live only at 99 // to some other operand used inside instruction (i.e. temporary or 103 // USED_AT_END operand is treated as live until the end of 105 // register for any other operand inside instruction. 215 void set_source(LOperand* operand) { source_ = operand; } 218 void set_destination(LOperand* operand) { destination_ = operand; } 226 // True if this move a move into the given destination operand [all...] |
/external/llvm/include/llvm/CodeGen/ |
ISDOpcodes.h | 48 // single token result. This is used to represent the fact that the operand 69 // llvm.returnaddress on the DAG. These nodes take one operand, the index 127 // dag, turning into a GlobalAddress operand. 138 /// The first operand is the ID number of the intrinsic from the 145 /// returns a result. The first operand is a chain pointer. The second is 153 /// does not return a result. The first operand is a chain pointer. The 171 // a Constant, which is required to be operand #1) half of the integer or 172 // float value specified as operand #0. This is only for use before 297 /// of the operand must match the vector element type, except when they 298 /// are integer types. In this case the operand is allowed to be wide [all...] |
MachineInstrBuilder.h | 54 /// addReg - Add a new virtual register operand... 73 /// addImm - Add a new immediate operand. 169 llvm_unreachable("Unhandled operand type in addDisp()"); 187 /// BuildMI - This version of the builder sets up the first operand as a 200 /// sets up the first operand as a destination virtual register. 237 /// operand as a destination virtual register.
|
/external/v8/src/x64/ |
code-stubs-x64.cc | 69 __ movq(rdx, Operand(rsp, 1 * kPointerSize)); 77 __ movq(rcx, Operand(rsi, Context::SlotOffset(Context::GLOBAL_INDEX))); 79 __ movq(rcx, Operand(rcx, Context::SlotOffset(map_index))); 125 __ movq(rcx, Operand(rsp, 1 * kPointerSize)); 134 __ movq(Operand(rax, Context::SlotOffset(Context::CLOSURE_INDEX)), rcx); 135 __ movq(Operand(rax, Context::SlotOffset(Context::FCONTEXT_INDEX)), rax); 136 __ movq(Operand(rax, Context::SlotOffset(Context::PREVIOUS_INDEX)), rbx); 137 __ movq(Operand(rax, Context::SlotOffset(Context::EXTENSION_INDEX)), rbx); 140 __ movq(rbx, Operand(rsi, Context::SlotOffset(Context::GLOBAL_INDEX))); 141 __ movq(Operand(rax, Context::SlotOffset(Context::GLOBAL_INDEX)), rbx) [all...] |
assembler-x64-inl.h | 93 void Assembler::emit_rex_64(Register reg, const Operand& op) { 98 void Assembler::emit_rex_64(XMMRegister reg, const Operand& op) { 109 void Assembler::emit_rex_64(const Operand& op) { 119 void Assembler::emit_rex_32(Register reg, const Operand& op) { 129 void Assembler::emit_rex_32(const Operand& op) { 140 void Assembler::emit_optional_rex_32(Register reg, const Operand& op) { 146 void Assembler::emit_optional_rex_32(XMMRegister reg, const Operand& op) { 175 void Assembler::emit_optional_rex_32(const Operand& op) { 417 // Implementation of Operand 419 void Operand::set_modrm(int mod, Register rm_reg) [all...] |
macro-assembler-x64.h | 60 typedef Operand MemOperand; 100 // Operand pointing to an external reference. 101 // May emit code to set up the scratch register. The operand is 104 // If the operand is used more than once, use a scratch register 106 Operand ExternalOperand(ExternalReference reference, 112 // Operand operand = ExternalOperand(extref); 113 // operation(operand, ..); 133 void CompareRoot(const Operand& with, Heap::RootListIndex index); 299 void Integer32ToSmiField(const Operand& dst, Register src) [all...] |
/external/clang/test/Sema/ |
exprs.c | 186 return x && 4; // expected-warning {{use of logical '&&' with constant operand}} \ 197 return x || -1; // expected-warning {{use of logical '||' with constant operand}} \ 199 return x || 5; // expected-warning {{use of logical '||' with constant operand}} \ 203 return x && -1; // expected-warning {{use of logical '&&' with constant operand}} \ 206 return x && 5; // expected-warning {{use of logical '&&' with constant operand}} \ 211 return x || (-1); // expected-warning {{use of logical '||' with constant operand}} \ 213 return x || (5); // expected-warning {{use of logical '||' with constant operand}} \ 217 return x && (-1); // expected-warning {{use of logical '&&' with constant operand}} \ 220 return x && (5); // expected-warning {{use of logical '&&' with constant operand}} \
|
/external/v8/src/arm/ |
assembler-arm-inl.h | 245 Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) { 252 Operand::Operand(const ExternalReference& f) { 259 Operand::Operand(Smi* value) { 266 Operand::Operand(Register rm) { 274 bool Operand::is_reg() const {
|
deoptimizer-arm.cc | 556 __ sub(sp, sp, Operand(kDoubleRegsSize)); 576 __ mov(r3, Operand(0)); 578 __ add(r4, sp, Operand(kSavedRegistersAreaSize + (1 * kPointerSize))); 582 __ add(r4, sp, Operand(kSavedRegistersAreaSize + (1 * kPointerSize))); 586 __ add(r4, sp, Operand(kSavedRegistersAreaSize + (2 * kPointerSize))); 594 __ mov(r1, Operand(type())); // bailout type, 598 __ mov(r5, Operand(ExternalReference::isolate_address())); 628 __ add(sp, sp, Operand(kSavedRegistersAreaSize + (1 * kPointerSize))); 630 __ add(sp, sp, Operand(kSavedRegistersAreaSize + (2 * kPointerSize))); 641 __ add(r3, r1, Operand(FrameDescription::frame_content_offset())) [all...] |
assembler-arm.cc | 149 // Implementation of Operand and MemOperand 152 Operand::Operand(Handle<Object> handle) { 168 Operand::Operand(Register rm, ShiftOp shift_op, int shift_imm) { 184 Operand::Operand(Register rm, ShiftOp shift_op, Register rs) { 762 bool Operand::must_use_constant_pool() const { 777 bool Operand::is_single_instruction(Instr instr) const { 782 // The immediate operand cannot be encoded as a shifter operand, or use o [all...] |
/external/llvm/include/llvm/MC/ |
MCInstrDesc.h | 23 // Machine Operand Flags and Description 27 // Operand constraints 30 EARLY_CLOBBER // Operand is an early clobber register operand 42 /// Operand Type - Operands are tagged with one of the values of this enum. 52 /// MCOperandInfo - This holds information about one operand of a machine 57 /// RegClass - This specifies the register class enumeration of the operand 58 /// if the operand is a register. If isLookupPtrRegClass is set, then this is 70 /// OperandType - Information about the type of the operand. 74 /// isLookupPtrRegClass - Set if this operand is a pointer value and i [all...] |
/external/llvm/lib/MC/MCDisassembler/ |
EDToken.h | 51 /// The operand corresponding to the token, or (unsigned int)-1 if not 52 /// part of an operand. 85 /// setOperandID - Links the token to a numbered operand 87 /// @arg operandID - The operand ID to link to 98 /// operandID - Returns the operand ID of the token
|
/external/llvm/lib/Target/MBlaze/ |
MBlazeISelLowering.h | 112 // Lower Operand helpers 119 // Lower Operand specifics 167 /// Examine constraint string and operand type and determine a weight value. 168 /// The operand object must already have been set up with the operand type.
|
/external/clang/test/Analysis/ |
uninit-vals-ps.c | 24 if (x+1) // expected-warning{{The left operand of '+' is a garbage value}} 33 return ((1+x)+2+((x))) + 1 ? 1 : 2; // expected-warning{{The right operand of '+' is a garbage value}} 39 if (*p > 0) // expected-warning{{The left operand of '>' is a garbage value}}
|
/external/elfutils/libelf-po/ |
libelf.pot | 40 msgid "invalid size of source operand" 44 msgid "invalid size of destination operand" 108 msgid "invalid operand"
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
Div.java | 38 * @param left non-null reference to the evaluated left operand. 39 * @param right non-null reference to the evaluated right operand.
|