HomeSort by relevance Sort by last modified time
    Searched defs:operand (Results 1 - 25 of 37) sorted by null

1 2

  /external/libpcap/
bpf_image.c 48 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/
ir_rvalue_visitor.cpp 41 unsigned int operand; local
43 for (operand = 0; operand < ir->get_num_operands(); operand++) {
44 handle_rvalue(&ir->operands[operand]);
  /dalvik/vm/compiler/codegen/arm/
ArchUtility.cpp 86 int operand; local
96 operand = lir->operands[nc-'0'];
99 if (operand != 0) {
100 sprintf(tbuf, ", %s %d",shiftNames[operand & 0x3],
101 operand >> 2);
107 switch (operand) {
135 tbuf[i] += operand & 1;
136 operand >>= 1;
140 operand = ~expandImmediate(operand);
    [all...]
Assemble.cpp 49 * of the key, "p" is which numeric operand to use and "f" is the
75 * H -> operand shift
1074 u4 operand; local
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcAsmPrinter.cpp 105 llvm_unreachable("<unknown operand type>");
114 // If this is an ADD operand, emit it like normal operands.
141 std::string operand = ""; local
144 default: assert(0 && "Operand is not a register ");
147 "Operand is not a physical register ");
150 operand = "%" + LowercaseString(getRegisterName(MO.getReg()));
162 << ")), " << operand << '\n' ; local
165 O << "\tor\t" << operand
167 << ")), " << operand << '\n'; local
168 O << "\tadd\t" << operand << ", %o7, " << operand << '\n'; local
    [all...]
  /external/skia/src/animator/
SkScriptRuntime.cpp 55 SkOperand2 operand[2]; // 1=accumulator and 2=operand local
64 operand[0].fArray = new SkOpArray(SkOperand2::kNoType /*fReturnType*/);
67 index = operand[1].fS32;
68 if (index >= operand[0].fArray->count()) {
72 operand[0] = operand[0].fArray->begin()[index];
75 *operand[0].fArray->append() = operand[1];
86 if (callBackFunction->invoke(ref, operand[0].fArray, /* params *
    [all...]
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...]
SkScript.cpp 33 merge type and operand arrays into scriptvalue array
539 SkOperand operand; local
644 script = SkParse::FindHex(script, (uint32_t*)&operand.fS32);
658 dotCheck = SkParse::FindS32(script, &operand.fS32);
666 script = SkParse::FindScalar(script, &operand.fScalar);
671 fOperandStack.push(operand);
693 operand.fString = new SkString();
694 track(operand.fString);
702 operand.fString->append(script, 1);
712 fOperandStack.push(operand);
835 SkOperand operand; local
    [all...]
SkScriptTokenizer.cpp 477 SkScriptValue2 operand; local
533 script = SkParse::FindHex(script, (uint32_t*) &operand.fOperand.fS32);
541 dotCheck = SkParse::FindS32(script, &operand.fOperand.fS32);
545 operand.fType = SkOperand2::kS32;
548 script = SkParse::FindScalar(script, &operand.fOperand.fScalar);
549 operand.fType = SkOperand2::kScalar;
551 operand.fIsConstant = SkScriptValue2::kConstant;
552 fValueStack.push(operand);
568 operand.fOperand.fString = new SkString();
577 operand.fOperand.fString->set(stringStart, script - stringStart)
704 SkScriptValue2 operand; local
730 SkScriptValue2 operand; local
985 SkOperand2 operand; local
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
CachedTranscendentalFunction.h 43 double operand; member in struct:JSC::CachedTranscendentalFunction::CacheEntry
59 JSValue operator() (double operand)
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/llvm/lib/MC/MCDisassembler/
EDInst.cpp 122 EDOperand *operand = new EDOperand(Disassembler, *this, opIndex, mcOpIndex); local
124 Operands.push_back(operand);
154 int EDInst::getOperand(EDOperand *&operand, unsigned int index) {
161 operand = Operands[index];
  /external/webkit/Source/JavaScriptCore/bytecode/
Instruction.h 136 Instruction(int operand)
141 u.operand = operand;
164 int operand; member in union:JSC::Instruction::__anon13065
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 350 EDOperand *operand; local
351 if (inst->getOperand(operand, operandIndex)) {
352 errs() << "error: couldn't get operand\n";
358 if (operand->evaluate(evaluatedResult, verboseEvaluator, Arg)) {
359 errs() << "error: Couldn't evaluate an operand\n";
  /external/skia/src/xml/
SkJSDisplayable.cpp 268 SkOperand operand; local
269 info->getValue(displayable, &operand, 1);
270 scalar = operand.fScalar;
371 SkOperand operand; local
372 operand.fScalar = scalar;
373 info->setValue(displayable, &operand, 1);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ValidateLimitations.cpp 330 // 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);
intermediate.h 401 TIntermUnary(TOperator o, TType& t) : TIntermOperator(o, t), operand(0) {}
402 TIntermUnary(TOperator o) : TIntermOperator(o), operand(0) {}
407 void setOperand(TIntermTyped* o) { operand = o; }
408 TIntermTyped* getOperand() { return operand; }
412 TIntermTyped* operand; member in class:TIntermUnary
  /external/qemu/target-arm/
op_helper.c 106 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/v8/src/
lithium-allocator.h 156 // the output operand and a list of input operand uses.
248 UsePosition(LifetimePosition pos, LOperand* operand);
250 LOperand* operand() const { return operand_; } function in class:v8::internal::UsePosition
347 void SetSpillOperand(LOperand* operand);
361 UsePosition* AddUsePosition(LifetimePosition pos, LOperand* operand);
436 // Record a use of an input operand in the current instruction.
437 void RecordUse(HValue* value, LUnallocated* operand);
438 // Record the definition of the output operand.
439 void RecordDefinition(HInstruction* instr, LUnallocated* operand);
    [all...]
lithium-allocator.cc 82 UsePosition::UsePosition(LifetimePosition pos, LOperand* operand)
83 : operand_(operand),
191 void LiveRange::SetSpillOperand(LOperand* operand) {
192 ASSERT(!operand->IsUnallocated());
195 spill_operand_->ConvertTo(operand->kind(), operand->index());
448 LOperand* operand) {
452 UsePosition* use_pos = new UsePosition(pos, operand);
482 use_pos->operand()->ConvertTo(op->kind(), op->index());
619 LOperand* LAllocator::AllocateFixed(LUnallocated* operand,
1016 LOperand* operand = NULL; local
1400 LOperand* operand = cur->CreateAssignedOperand(); local
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 1486 Value* operand = I->getOperand(i); local
1500 Value* operand = C->getOperand(j); local
    [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc 76 bts(Operand(object, Page::kDirtyFlagOffset), addr);
103 lea(dst, Operand(object, offset));
110 lea(dst, Operand(object, dst, times_half_pointer_size,
167 xor_(dst, Operand(dst)); // Shorter than mov.
174 void MacroAssembler::Set(const Operand& dst, const Immediate& x) {
199 xor_(Operand(esp, 0), Immediate(jit_cookie()));
257 sub(Operand(scratch), Immediate(FIRST_JS_OBJECT_TYPE));
284 Assert(equal, "Operand not a number");
291 Assert(equal, "Operand is not a smi");
297 Assert(not_equal, "Operand is not a string")
1772 Operand operand = Operand::StaticVariable(ExternalReference(counter)); local
1785 Operand operand = Operand::StaticVariable(ExternalReference(counter)); local
    [all...]
full-codegen-ia32.cc 158 __ mov(Operand(ebp, StandardFrameConstants::kContextOffset), esi);
168 __ mov(eax, Operand(ebp, parameter_offset));
171 __ mov(Operand(esi, context_offset), eax);
188 __ push(Operand(ebp, JavaScriptFrameConstants::kFunctionOffset));
193 Operand(ebp, StandardFrameConstants::kCallerSPOffset + offset));
238 __ cmp(esp, Operand::StaticVariable(stack_limit));
271 __ cmp(esp, Operand::StaticVariable(stack_limit));
451 __ mov(Operand(esp, 0), reg);
550 __ test(result_register(), Operand(result_register()));
559 __ test(eax, Operand(eax))
2252 MemOperand operand = EmitSlotSearch(slot, edx); local
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 2185 llvm::Value *operand = bitcast->getOperand(0); local
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 72 __ cmp(reg, Operand(reg));
84 __ cmp(reg, Operand(reg));
145 __ add(fp, sp, Operand(2 * kPointerSize));
181 __ mov(r1, Operand(Context::SlotOffset(slot->index())));
186 __ mov(r2, Operand(cp));
187 __ RecordWrite(r2, Operand(r1), r3, r0);
205 Operand(StandardFrameConstants::kCallerSPOffset + offset));
206 __ mov(r1, Operand(Smi::FromInt(scope()->num_parameters())));
251 __ cmp(sp, Operand(ip));
279 __ mov(r0, Operand(Smi::FromInt(0)))
2329 MemOperand operand = EmitSlotSearch(slot, r1); local
    [all...]
lithium-arm.cc 72 LOperand* operand = it.Next(); local
73 ASSERT(LUnallocated::cast(operand)->HasFixedPolicy() ||
74 !LUnallocated::cast(operand)->HasRegisterPolicy());
77 LOperand* operand = it.Next(); local
78 ASSERT(LUnallocated::cast(operand)->HasFixedPolicy() ||
79 !LUnallocated::cast(operand)->HasRegisterPolicy());
514 Handle<Object> LChunk::LookupLiteral(LConstantOperand* operand) const {
515 return HConstant::cast(graph_->LookupValue(operand->index()))->handle();
520 LConstantOperand* operand) const {
521 return graph_->LookupValue(operand->index())->representation()
773 LUnallocated* operand = new LUnallocated(LUnallocated::MUST_HAVE_REGISTER); local
780 LUnallocated* operand = ToUnallocated(reg); local
787 LUnallocated* operand = ToUnallocated(reg); local
    [all...]

Completed in 591 milliseconds

1 2