Searched refs:operand (Results 101 - 125 of 253) sorted by relevance

1234567891011

/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/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/animator/
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/pathops/
H A DSkOpSegment.h94 bool operand() const { function in class:SkOpSegment
242 void addCubic(const SkPoint pts[4], bool operand, bool evenOdd);
244 void addLine(const SkPoint pts[2], bool operand, bool evenOdd);
246 void addQuad(const SkPoint pts[3], bool operand, bool evenOdd);
353 void init(const SkPoint pts[], SkPath::Verb verb, bool operand, bool evenOdd);
403 // OPTIMIZATION: could pack donespans, verb, operand, xor into 1 int-sized value
409 bool fOppXor; // set if opposite operand had even-odd fill
H A DSkPathOpsCommon.cpp29 bool testOpp = contour->operand() ^ current->operand() ^ opp;
381 contour.setOppXor(contour.operand() ? evenOdd : oppEvenOdd);
/external/chromium_org/v8/src/ia32/
H A Dlithium-gap-resolver-ia32.cc92 // cycles in the move graph. We use operand swaps to resolve cycles,
93 // which means that a call to PerformMove could change any source operand
112 // Though PerformMove can change any source operand in the move graph,
118 // only a single incoming edge to an operand, this move must also be
181 int LGapResolver::CountSourceUses(LOperand* operand) { argument
184 if (!moves_[i].IsEliminated() && moves_[i].source()->Equals(operand)) {
217 // No operand should be the destination for more than one move.
239 void LGapResolver::EnsureRestored(LOperand* operand) { argument
240 if (operand->IsRegister() && operand
[all...]
H A Dlithium-ia32.cc57 LUnallocated* operand = LUnallocated::cast(it.Current()); local
58 ASSERT(operand->HasFixedPolicy() ||
59 operand->IsUsedAtStart());
62 LUnallocated* operand = LUnallocated::cast(it.Current()); local
63 ASSERT(operand->HasFixedPolicy() ||!operand->HasRegisterPolicy());
586 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { argument
591 operand->set_virtual_register(value->id());
592 return operand;
699 LUnallocated* operand local
712 LUnallocated* operand = ToUnallocated(reg); local
719 LUnallocated* operand = ToUnallocated(reg); local
929 LUnallocated* operand = LUnallocated::cast(it.Current()); local
936 LUnallocated* operand = LUnallocated::cast(it.Current()); local
[all...]
/external/skia/src/pathops/
H A DSkOpSegment.h94 bool operand() const { function in class:SkOpSegment
242 void addCubic(const SkPoint pts[4], bool operand, bool evenOdd);
244 void addLine(const SkPoint pts[2], bool operand, bool evenOdd);
246 void addQuad(const SkPoint pts[3], bool operand, bool evenOdd);
353 void init(const SkPoint pts[], SkPath::Verb verb, bool operand, bool evenOdd);
403 // OPTIMIZATION: could pack donespans, verb, operand, xor into 1 int-sized value
409 bool fOppXor; // set if opposite operand had even-odd fill
/external/chromium_org/tools/gn/
H A Dparse_tree.h354 const ParseNode* operand() const { return operand_.get(); } function in class:UnaryOpNode
355 void set_operand(scoped_ptr<ParseNode> operand) { argument
356 operand_ = operand.Pass();
/external/chromium_org/third_party/angle_dx11/src/compiler/
H A DIntermTraverse.cpp118 operand->traverse(it);
H A DOutputHLSL.h155 TString registerString(TIntermSymbol *operand);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dparser.ml90 | [< 'Token.Kwd op when op != '(' && op != ')'; operand=parse_expr >] ->
91 Ast.Unary (op, operand)
H A Dcodegen.ml20 | Ast.Unary (op, operand) ->
21 let operand = codegen_expr operand in
28 build_call callee [|operand|] "unop" builder
/external/qemu/target-arm/
H A Dop_helper.c106 int operand = insn & 0xf; local
110 cp_info, src, operand, val, GETPC());
118 int operand = insn & 0xf; local
122 cp_info, dest, operand, GETPC());
/external/chromium_org/third_party/ots/src/
H A Dcff.cc160 bool CheckOffset(const std::pair<uint32_t, DICT_OPERAND_TYPE>& operand, argument
162 if (operand.second != DICT_OPERAND_INTEGER) {
165 if (operand.first >= table_length) {
171 bool CheckSid(const std::pair<uint32_t, DICT_OPERAND_TYPE>& operand, argument
173 if (operand.second != DICT_OPERAND_INTEGER) {
176 if (operand.first > sid_max) {
/external/chromium_org/v8/src/arm/
H A Dlithium-arm.cc54 LUnallocated* operand = LUnallocated::cast(it.Current()); local
55 ASSERT(operand->HasFixedPolicy() ||
56 operand->IsUsedAtStart());
59 LUnallocated* operand = LUnallocated::cast(it.Current()); local
60 ASSERT(operand->HasFixedPolicy() ||!operand->HasRegisterPolicy());
536 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { argument
541 operand->set_virtual_register(value->id());
542 return operand;
646 LUnallocated* operand local
659 LUnallocated* operand = ToUnallocated(reg); local
666 LUnallocated* operand = ToUnallocated(reg); local
874 LUnallocated* operand = LUnallocated::cast(it.Current()); local
881 LUnallocated* operand = LUnallocated::cast(it.Current()); local
[all...]
H A Dassembler-arm.cc1009 // The immediate operand cannot be encoded as a shifter operand, or use of
1022 // No use of constant pool and the immediate operand can be encoded as a
1023 // shifter operand.
1064 // The immediate operand cannot be encoded as a shifter operand, so load
1727 // Immediate operand cannot be encoded, load it first to register ip.
2045 const MemOperand& operand,
2047 ASSERT(!operand.rm().is_valid());
2048 ASSERT(operand
2044 vldr(const DwVfpRegister dst, const MemOperand& operand, const Condition cond) argument
2087 vldr(const SwVfpRegister dst, const MemOperand& operand, const Condition cond) argument
2130 vstr(const DwVfpRegister src, const MemOperand& operand, const Condition cond) argument
2172 vstr(const SwVfpRegister src, const MemOperand& operand, const Condition cond) argument
[all...]
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.cc54 LUnallocated* operand = LUnallocated::cast(it.Current()); local
55 ASSERT(operand->HasFixedPolicy() ||
56 operand->IsUsedAtStart());
59 LUnallocated* operand = LUnallocated::cast(it.Current()); local
60 ASSERT(operand->HasFixedPolicy() ||!operand->HasRegisterPolicy());
541 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { argument
546 operand->set_virtual_register(value->id());
547 return operand;
651 LUnallocated* operand local
664 LUnallocated* operand = ToUnallocated(reg); local
671 LUnallocated* operand = ToUnallocated(reg); local
879 LUnallocated* operand = LUnallocated::cast(it.Current()); local
886 LUnallocated* operand = LUnallocated::cast(it.Current()); local
[all...]
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.cc57 LUnallocated* operand = LUnallocated::cast(it.Current()); local
58 ASSERT(operand->HasFixedPolicy() ||
59 operand->IsUsedAtStart());
62 LUnallocated* operand = LUnallocated::cast(it.Current()); local
63 ASSERT(operand->HasFixedPolicy() ||!operand->HasRegisterPolicy());
542 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { argument
547 operand->set_virtual_register(value->id());
548 return operand;
655 LUnallocated* operand local
668 LUnallocated* operand = ToUnallocated(reg); local
675 LUnallocated* operand = ToUnallocated(reg); local
873 LUnallocated* operand = LUnallocated::cast(it.Current()); local
880 LUnallocated* operand = LUnallocated::cast(it.Current()); local
[all...]
/external/v8/src/ia32/
H A Dlithium-ia32.cc82 LUnallocated* operand = LUnallocated::cast(it.Current()); local
83 ASSERT(operand->HasFixedPolicy() ||
84 operand->IsUsedAtStart());
87 LUnallocated* operand = LUnallocated::cast(it.Current()); local
88 ASSERT(operand->HasFixedPolicy() ||!operand->HasRegisterPolicy());
536 Handle<Object> LChunk::LookupLiteral(LConstantOperand* operand) const {
537 return HConstant::cast(graph_->LookupValue(operand->index()))->handle();
542 LConstantOperand* operand) const {
543 return graph_->LookupValue(operand
664 Use(HValue* value, LUnallocated* operand) argument
793 LUnallocated* operand = local
804 LUnallocated* operand = ToUnallocated(reg); local
811 LUnallocated* operand = ToUnallocated(reg); local
[all...]
/external/v8/src/arm/
H A Dassembler-arm.cc798 // The immediate operand cannot be encoded as a shifter operand, or use of
819 // No use of constant pool and the immediate operand can be encoded as a
820 // shifter operand.
838 // The immediate operand cannot be encoded as a shifter operand, so load
1384 // Immediate operand cannot be encoded, load it first to register ip.
1685 const MemOperand& operand,
1687 ASSERT(!operand.rm().is_valid());
1688 ASSERT(operand
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dbignum.cc165 void Bignum::AddUInt64(uint64_t operand) { argument
166 if (operand == 0) return;
168 other.AssignUInt64(operand);
/external/chromium_org/v8/src/
H A Dbignum.cc164 void Bignum::AddUInt64(uint64_t operand) { argument
165 if (operand == 0) return;
167 other.AssignUInt64(operand);
/external/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp69 NonLoc SValBuilder::makeNonLoc(const SymExpr *operand, argument
71 assert(operand);
73 return nonloc::SymbolVal(SymMgr.getCastSymbol(operand, fromTy, toTy));

Completed in 791 milliseconds

1234567891011