Searched defs:operand (Results 1 - 25 of 78) sorted by relevance

1234

/external/skia/src/animator/
H A DSkOpArray.cpp16 bool SkOpArray::getIndex(int index, SkOperand2* operand) { argument
21 *operand = begin()[index];
H A DSkScriptRuntime.cpp63 SkOperand2 operand[2]; // 1=accumulator and 2=operand local
72 operand[0].fArray = new SkOpArray(SkOperand2::kNoType /*fReturnType*/);
75 index = operand[1].fS32;
76 if (index >= operand[0].fArray->count()) {
80 operand[0] = operand[0].fArray->begin()[index];
83 *operand[0].fArray->append() = operand[1];
94 if (callBackFunction->invoke(ref, operand[
[all...]
H A DSkTypedArray.cpp18 bool SkTypedArray::getIndex(int index, SkOperand* operand) { argument
23 *operand = begin()[index];
/external/libpcap/
H A Dbpf_image.c48 char operand[64]; local
280 (void)snprintf(operand, sizeof operand, fmt, v);
286 n, op, operand, n + 1 + p->jt, n + 1 + p->jf);
/external/mesa3d/src/glsl/
H A Dir_rvalue_visitor.cpp41 unsigned int operand; local
43 for (operand = 0; operand < ir->get_num_operands(); operand++) {
44 handle_rvalue(&ir->operands[operand]);
H A Dopt_algebraic.cpp64 ir_rvalue *operand);
162 * we may need to swizzle that operand out to a vector if the expression was
167 ir_rvalue *operand)
169 if (expr->type->is_vector() && operand->type->is_scalar()) {
170 return new(mem_ctx) ir_swizzle(operand, 0, 0, 0, 0,
173 return operand;
166 swizzle_if_required(ir_expression *expr, ir_rvalue *operand) argument
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGByteCodeParser.cpp75 NodeIndex get(int operand) argument
78 if (operand >= FirstConstantRegisterIndex) {
79 unsigned constant = operand - FirstConstantRegisterIndex;
85 if (operand < 0)
86 return getArgument(operand);
90 if ((unsigned)operand < numVariables)
91 return getVariable((unsigned)operand);
94 unsigned temporary = (unsigned)operand - numVariables;
98 void set(int operand, NodeIndex value)
101 if (operand <
[all...]
H A DDFGNonSpeculativeJIT.cpp61 void NonSpeculativeJIT::valueToNumber(JSValueOperand& operand, FPRReg fpr) argument
63 GPRReg jsValueGpr = operand.gpr();
98 void NonSpeculativeJIT::valueToInt32(JSValueOperand& operand, GPRReg result) argument
100 GPRReg jsValueGpr = operand.gpr();
/external/hamcrest/src/org/hamcrest/core/
H A DIsEqual.java67 public static <T> Matcher<T> equalTo(T operand) { argument
68 return new IsEqual<T>(operand);
/external/srec/srec/cfront/
H A Dlog_tabl.c84 int log_lookup(log_table_info *logtab, int operand, int shift) argument
89 if (operand <= 0)
90 operand = 1;
91 while ((operand & logtab->mask))
93 operand >>= 1;
96 if (operand >= logtab->size)
99 operand = (operand + 1) >> 1;
102 log_report("tab: %d %d -> %d\n", operand, shift,
103 (int)((shift) *(logtab->shift) + logtab->table[operand]));
118 integer_square_root(int operand) argument
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DCachedTranscendentalFunction.h43 double operand; member in struct:JSC::CachedTranscendentalFunction::CacheEntry
59 JSValue operator() (double operand) argument
63 CacheEntry* entry = &m_cache[hash(operand)];
65 if (entry->operand == operand)
67 double result = orignalFunction(operand);
68 entry->operand = operand;
79 m_cache[x].operand = NaN;
/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/chromium/sdch/open-vcdiff/src/
H A Drolling_hash.h41 // Returns operand % kBase, assuming that kBase is a power of two.
42 static inline uint32_t ModBase(uint32_t operand) { argument
43 return operand & (kBase - 1);
46 // Given an unsigned integer "operand", returns an unsigned integer "result"
50 // ModBase(operand + result) == 0
51 static inline uint32_t FindModBaseInverse(uint32_t operand) { argument
52 // The subtraction (0 - operand) produces an unsigned underflow for any
53 // operand except 0. The underflow results in a (very large) unsigned
58 // The C++ mod operation (operand % kBase) may produce different results for
59 // different compilers if operand i
[all...]
H A Drolling_hash_test.cc33 void TestModBase(uint32_t operand) { argument
34 EXPECT_EQ(operand % kBase, RollingHashUtil::ModBase(operand));
35 EXPECT_EQ(static_cast<uint32_t>((-static_cast<int32_t>(operand)) % kBase),
36 RollingHashUtil::FindModBaseInverse(operand));
38 operand + RollingHashUtil::FindModBaseInverse(operand)));
/external/llvm/lib/MC/MCDisassembler/
H A DEDInst.cpp122 EDOperand *operand = new EDOperand(Disassembler, *this, opIndex, mcOpIndex); local
124 Operands.push_back(operand);
154 int EDInst::getOperand(EDOperand *&operand, unsigned int index) { argument
161 operand = Operands[index];
H A DEDMain.cpp191 int EDGetOperand(EDOperandRef *operand, argument
194 return ((EDInst*)inst)->getOperand(*(EDOperand**)operand, index);
197 int EDOperandIsRegister(EDOperandRef operand) { argument
198 return ((EDOperand*)operand)->isRegister();
201 int EDOperandIsImmediate(EDOperandRef operand) { argument
202 return ((EDOperand*)operand)->isImmediate();
205 int EDOperandIsMemory(EDOperandRef operand) { argument
206 return ((EDOperand*)operand)->isMemory();
209 int EDRegisterOperandValue(unsigned *value, EDOperandRef operand) { argument
210 if (!((EDOperand*)operand)
216 EDImmediateOperandValue(uint64_t *value, EDOperandRef operand) argument
223 EDEvaluateOperand(uint64_t *result, EDOperandRef operand, ::EDRegisterReaderCallback regReader, void *arg) argument
253 EDBlockEvaluateOperand(uint64_t *result, EDOperandRef operand, EDRegisterBlock_t regBlock) argument
[all...]
/external/llvm/lib/Target/Sparc/
H A DSparcAsmPrinter.cpp106 llvm_unreachable("<unknown operand type>");
115 // If this is an ADD operand, emit it like normal operands.
142 std::string operand = ""; local
151 operand = "%" + StringRef(getRegisterName(MO.getReg())).lower();
163 << ")), " << operand << '\n' ; local
166 O << "\tor\t" << operand
168 << ")), " << operand << '\n'; local
169 O << "\tadd\t" << operand << ", %o7, " << operand << '\n'; local
180 /// PrintAsmOperand - Print out an operand fo
[all...]
/external/webkit/Source/JavaScriptCore/bytecode/
H A DInstruction.h136 Instruction(int operand) argument
141 u.operand = operand;
164 int operand; member in union:JSC::Instruction::__anon14930
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp324 EDOperand *operand; local
325 if (inst->getOperand(operand, operandIndex)) {
326 errs() << "error: couldn't get operand\n";
332 if (operand->evaluate(evaluatedResult, verboseEvaluator, Arg)) {
333 errs() << "error: Couldn't evaluate an operand\n";
/external/skia/src/xml/
H A DSkJSDisplayable.cpp260 SkOperand operand; local
261 info->getValue(displayable, &operand, 1);
262 scalar = operand.fScalar;
363 SkOperand operand; local
364 operand.fScalar = scalar;
365 info->setValue(displayable, &operand, 1);
/external/v8/src/
H A Dbignum.cc163 void Bignum::AddUInt64(uint64_t operand) { argument
164 if (operand == 0) return;
166 other.AssignUInt64(operand);
/external/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...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DValidateLimitations.cpp330 // The operand must be loop index.
414 TIntermNode* operand) {
419 const TIntermSymbol* symbol = operand->getAsSymbolNode();
458 // the operand is a uniform in a vertex shader.
459 TIntermTyped* operand = node->getLeft(); local
461 (operand->getQualifier() == EvqUniform);
413 validateOperation(TIntermOperator* node, TIntermNode* operand) argument
/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));
/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...]

Completed in 533 milliseconds

1234