Searched refs:operand (Results 151 - 175 of 356) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/
H A Dlithium.h90 // Lifetime of operand inside the instruction.
92 // USED_AT_START operand is guaranteed to be live only at
94 // to some other operand used inside instruction (i.e. temporary or
98 // USED_AT_END operand is treated as live until the end of
100 // register for any other operand inside instruction.
144 // stored within the operand. The FIXED_SLOT policy uses a compact encoding
180 // Predicates for the operand policy.
242 // [virtual_register]: The virtual register ID for this operand.
265 void set_source(LOperand* operand) { source_ = operand; } argument
268 set_destination(LOperand* operand) argument
434 AddValue(LOperand* operand, Representation representation, bool is_uint32) argument
[all...]
/external/chromium_org/third_party/skia/src/xml/
H A DSkJSDisplayable.cpp260 SkOperand operand; local
261 info->getValue(displayable, &operand, 1);
262 scalar = operand.fScalar;
355 SkOperand operand; local
356 operand.fScalar = scalar;
357 info->setValue(displayable, &operand, 1);
/external/skia/src/xml/
H A DSkJSDisplayable.cpp260 SkOperand operand; local
261 info->getValue(displayable, &operand, 1);
262 scalar = operand.fScalar;
355 SkOperand operand; local
356 operand.fScalar = scalar;
357 info->setValue(displayable, &operand, 1);
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DExprNodes.py221 # - Check operand types, and wrap coercion nodes around
8024 # operand ExprNode
8029 # Called when the operand is not a pyobject.
8030 # - Check operand type and coerce if needed.
8034 subexprs = ['operand']
8039 self.constant_result = func(self.operand.constant_result)
8047 operand = self.operand.compile_time_value(denv)
8049 return func(operand)
8054 operand_type = self.operand
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dintnum.h140 /** Floating point calculation function: acc = acc op operand.
145 * \param operand intnum operand
149 int yasm_intnum_calc(yasm_intnum *acc, yasm_expr_op op, yasm_intnum *operand);
/external/hamcrest/library/src/org/hamcrest/
H A DMatchers.java58 public static <T> org.hamcrest.Matcher<T> equalTo(T operand) { argument
59 return org.hamcrest.core.IsEqual.equalTo(operand);
225 public static org.hamcrest.Matcher<java.lang.Double> closeTo(double operand, double error) { argument
226 return org.hamcrest.number.IsCloseTo.closeTo(operand, error);
/external/llvm/test/MC/ARM/
H A Deh-directive-setfp-diagnostics.s76 @ TEST5: .setfp with non-sp register as second operand
/external/qemu/target-i386/
H A Dshift_helper_template.h50 #error unhandled operand size
/external/chromium_org/v8/src/arm/
H A Dassembler-arm.cc1081 // The immediate operand cannot be encoded as a shifter operand, or use of
1104 // No use of constant pool and the immediate operand can be encoded as a
1105 // shifter operand.
1177 // The immediate operand cannot be encoded as a shifter operand, so load
1867 // Immediate operand cannot be encoded, load it first to register ip.
2184 const MemOperand& operand,
2186 DCHECK(operand.am_ == Offset);
2187 if (operand
2183 vldr(const DwVfpRegister dst, const MemOperand& operand, const Condition cond) argument
2231 vldr(const SwVfpRegister dst, const MemOperand& operand, const Condition cond) argument
2279 vstr(const DwVfpRegister src, const MemOperand& operand, const Condition cond) argument
2326 vstr(const SwVfpRegister src, const MemOperand& operand, const Condition cond) argument
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkScriptTokenizer.cpp485 SkScriptValue2 operand; local
542 script = SkParse::FindHex(script, (uint32_t*) &operand.fOperand.fS32);
550 dotCheck = SkParse::FindS32(script, &operand.fOperand.fS32);
554 operand.fType = SkOperand2::kS32;
557 script = SkParse::FindScalar(script, &operand.fOperand.fScalar);
558 operand.fType = SkOperand2::kScalar;
560 operand.fIsConstant = SkScriptValue2::kConstant;
561 fValueStack.push(operand);
577 operand.fOperand.fString = new SkString();
586 operand
711 SkScriptValue2 operand; local
737 SkScriptValue2 operand; local
993 SkOperand2 operand; local
[all...]
H A DSkScript.cpp25 merge type and operand arrays into scriptvalue array
532 SkOperand operand; local
637 script = SkParse::FindHex(script, (uint32_t*)&operand.fS32);
651 dotCheck = SkParse::FindS32(script, &operand.fS32);
659 script = SkParse::FindScalar(script, &operand.fScalar);
664 fOperandStack.push(operand);
686 operand.fString = new SkString();
687 track(operand.fString);
695 operand.fString->append(script, 1);
705 fOperandStack.push(operand);
828 SkOperand operand; local
[all...]
/external/chromium_org/third_party/skia/src/utils/debugger/
H A DSkDebugCanvas.cpp338 SkPath operand; local
340 element->asPath(&operand);
343 this->addClipStackData(devPath, operand, elementOp);
345 devPath = operand;
347 Op(devPath, operand, (SkPathOp) elementOp, &devPath);
710 void SkDebugCanvas::addClipStackData(const SkPath& devPath, const SkPath& operand, argument
714 fSaveDevPath = operand;
721 addPathData(operand, "pathB");
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Daes.asm51 ; no 3-operand form
/external/clang/test/SemaCXX/
H A Dexpression-traits.cpp386 // the value that the operand had before applying the
479 void expr_pre_incr_1(int operand) argument
481 // expr.pre.incr/1: The operand of prefix ++ ... shall be a
483 // operand; it is an lvalue.
484 ASSERT_LVALUE(++operand);
501 // only if its first operand is an lvalue and its second operand
511 // if its second operand is a pointer to data member. If the
512 // second operand is the null pointer to member value (4.11), the
522 // 2 If either the second or the third operand ha
[all...]
/external/compiler-rt/lib/builtins/
H A Dfp_add_impl.inc69 // The sign of the result is the sign of the larger operand, a. If they
/external/hamcrest/src/org/hamcrest/
H A DCoreMatchers.java58 public static <T> org.hamcrest.Matcher<T> equalTo(T operand) { argument
59 return org.hamcrest.core.IsEqual.equalTo(operand);
/external/llvm/test/MC/AArch64/
H A Darm64-diags.s12 ; CHECK-ERRORS: error: invalid operand for instruction
16 ; CHECK-ERRORS: error: invalid operand for instruction
45 ; CHECK-ERRORS: error: invalid operand for instruction
51 ; CHECK-ERRORS: error: invalid operand for instruction
276 ; CHECK-ERRORS: error: invalid operand for instruction
279 ; CHECK-ERRORS: error: invalid operand for instruction
282 ; CHECK-ERRORS: error: invalid operand for instruction
285 ; CHECK-ERRORS: error: invalid operand for instruction
/external/skia/src/animator/
H A DSkScriptTokenizer.cpp485 SkScriptValue2 operand; local
542 script = SkParse::FindHex(script, (uint32_t*) &operand.fOperand.fS32);
550 dotCheck = SkParse::FindS32(script, &operand.fOperand.fS32);
554 operand.fType = SkOperand2::kS32;
557 script = SkParse::FindScalar(script, &operand.fOperand.fScalar);
558 operand.fType = SkOperand2::kScalar;
560 operand.fIsConstant = SkScriptValue2::kConstant;
561 fValueStack.push(operand);
577 operand.fOperand.fString = new SkString();
586 operand
711 SkScriptValue2 operand; local
737 SkScriptValue2 operand; local
993 SkOperand2 operand; local
[all...]
H A DSkScript.cpp25 merge type and operand arrays into scriptvalue array
532 SkOperand operand; local
637 script = SkParse::FindHex(script, (uint32_t*)&operand.fS32);
651 dotCheck = SkParse::FindS32(script, &operand.fS32);
659 script = SkParse::FindScalar(script, &operand.fScalar);
664 fOperandStack.push(operand);
686 operand.fString = new SkString();
687 track(operand.fString);
695 operand.fString->append(script, 1);
705 fOperandStack.push(operand);
828 SkOperand operand; local
[all...]
/external/skia/src/utils/debugger/
H A DSkDebugCanvas.cpp348 SkPath operand; local
350 element->asPath(&operand);
353 this->addClipStackData(devPath, operand, elementOp);
355 devPath = operand;
357 Op(devPath, operand, (SkPathOp) elementOp, &devPath);
713 void SkDebugCanvas::addClipStackData(const SkPath& devPath, const SkPath& operand, argument
717 fSaveDevPath = operand;
724 addPathData(operand, "pathB");
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpSegment.h125 bool operand() const { function in class:SkOpSegment
276 void addCubic(const SkPoint pts[4], bool operand, bool evenOdd);
279 void addLine(const SkPoint pts[2], bool operand, bool evenOdd);
281 void addQuad(const SkPoint pts[3], bool operand, bool evenOdd);
439 void init(const SkPoint pts[], SkPath::Verb verb, bool operand, bool evenOdd);
537 // OPTIMIZATION: could pack donespans, verb, operand, xor into 1 int-sized value
545 bool fOppXor; // set if opposite operand had even-odd fill
H A DSkPathOpsDebug.cpp156 bool firstOperand = fSegment->operand();
161 bool operandsMatch = firstOperand == segment->operand();
220 firstOperand = segment->operand();
236 bool operandsMatch = firstOperand == segment->operand();
285 SK_ALWAYSBREAK(!segment->operand());
383 SkDebugf(" operand");
/external/chromium_org/v8/src/ia32/
H A Dlithium-gap-resolver-ia32.cc69 // cycles in the move graph. We use operand swaps to resolve cycles,
70 // which means that a call to PerformMove could change any source operand
89 // Though PerformMove can change any source operand in the move graph,
95 // only a single incoming edge to an operand, this move must also be
158 int LGapResolver::CountSourceUses(LOperand* operand) { argument
161 if (!moves_[i].IsEliminated() && moves_[i].source()->Equals(operand)) {
194 // No operand should be the destination for more than one move.
216 void LGapResolver::EnsureRestored(LOperand* operand) { argument
217 if (operand->IsRegister() && operand
[all...]
/external/skia/src/pathops/
H A DSkOpSegment.h125 bool operand() const { function in class:SkOpSegment
274 void addCubic(const SkPoint pts[4], bool operand, bool evenOdd);
277 void addLine(const SkPoint pts[2], bool operand, bool evenOdd);
279 void addQuad(const SkPoint pts[3], bool operand, bool evenOdd);
437 void init(const SkPoint pts[], SkPath::Verb verb, bool operand, bool evenOdd);
535 // OPTIMIZATION: could pack donespans, verb, operand, xor into 1 int-sized value
543 bool fOppXor; // set if opposite operand had even-odd fill
H A DSkPathOpsDebug.cpp155 bool firstOperand = fSegment->operand();
160 bool operandsMatch = firstOperand == segment->operand();
219 firstOperand = segment->operand();
235 bool operandsMatch = firstOperand == segment->operand();
284 SK_ALWAYSBREAK(!segment->operand());
382 SkDebugf(" operand");

Completed in 503 milliseconds

1234567891011>>