HomeSort by relevance Sort by last modified time
    Searched refs:jump (Results 201 - 225 of 315) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/JavaScriptCore/jit/
JITPropertyAccess.cpp 121 Jump nonCell = jump();
123 Jump notString = branchPtr(NotEqual, Address(regT0), TrustedImmPtr(m_globalData->jsStringVPtr));
125 Jump failed = branchTestPtr(Zero, regT0);
127 emitJumpSlowToHot(jump(), OPCODE_LENGTH(op_get_by_val));
204 Jump empty = branchTestPtr(Zero, BaseIndex(regT2, regT1, ScalePtr, OBJECT_OFFSETOF(ArrayStorage, m_vector[0])));
209 Jump end = jump();
218 jump().linkTo(storeResult, this);
335 Jump notCell = emitJumpIfNotJSCell(regT0)
    [all...]
JITInlineMethods.h 259 ALWAYS_INLINE JIT::Jump JIT::checkStructure(RegisterID reg, Structure* structure)
270 ALWAYS_INLINE void JIT::addSlowCase(Jump jump)
274 m_slowCases.append(SlowCaseEntry(jump, m_bytecodeOffset));
287 ALWAYS_INLINE void JIT::addJump(Jump jump, int relativeOffset)
291 m_jmpTable.append(JumpTable(jump, m_bytecodeOffset + relativeOffset));
294 ALWAYS_INLINE void JIT::emitJumpSlowToHot(Jump jump, int relativeOffset)
298 jump.linkTo(m_labels[m_bytecodeOffset + relativeOffset], this)
    [all...]
  /dalvik/vm/mterp/armv5te/
OP_CHECK_CAST.S 29 GOTO_OPCODE(ip) @ jump to next instruction
OP_IGET_WIDE.S 49 GOTO_OPCODE(ip) @ jump to next instruction
OP_IPUT.S 48 GOTO_OPCODE(ip) @ jump to next instruction
OP_IPUT_OBJECT.S 51 GOTO_OPCODE(ip) @ jump to next instruction
OP_IPUT_WIDE.S 46 GOTO_OPCODE(r10) @ jump to next instruction
OP_SGET_WIDE.S 28 GOTO_OPCODE(ip) @ jump to next instruction
OP_SPUT_OBJECT.S 35 GOTO_OPCODE(ip) @ jump to next instruction
OP_SPUT_WIDE.S 28 GOTO_OPCODE(r10) @ jump to next instruction
  /dalvik/vm/mterp/armv6t2/
OP_IPUT_WIDE.S 39 GOTO_OPCODE(ip) @ jump to next instruction
  /dalvik/vm/mterp/mips/
OP_APUT_OBJECT.S 32 GOTO_OPCODE(t0) # jump to next instruction
OP_CHECK_CAST.S 29 GOTO_OPCODE(t0) # jump to next instruction
OP_IGET_WIDE.S 48 GOTO_OPCODE(t0) # jump to next instruction
OP_INSTANCE_OF.S 47 GOTO_OPCODE(t0) # jump to next instruction
OP_IPUT_OBJECT.S 55 GOTO_OPCODE(t0) # jump to next instruction
OP_IPUT_WIDE.S 47 GOTO_OPCODE(rBIX) # jump to next instruction
OP_SPUT_WIDE.S 28 GOTO_OPCODE(rBIX) # jump to next instruction
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsCharacter.java 176 public void jump() { method in class:PhysicsCharacter
177 character.jump();
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
h264bsdFillRow7.S 124 BEQ jump
129 jump: label
  /external/webkit/Source/JavaScriptCore/dfg/
DFGJITCodeGenerator.h 674 void addBranch(const MacroAssembler::Jump& jump, BlockIndex destination)
676 m_branches.append(BranchRecord(jump, destination));
683 branch.jump.linkTo(m_blockHeads[branch.destination], &m_jit);
720 BranchRecord(MacroAssembler::Jump jump, BlockIndex destination)
721 : jump(jump)
726 MacroAssembler::Jump jump; member in struct:JSC::DFG::JITCodeGenerator::BranchRecord
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerARM.h 390 Jump branch8(Condition cond, Address left, TrustedImm32 right)
396 Jump branch32(Condition cond, RegisterID left, RegisterID right, int useConstantPool = 0)
399 return Jump(m_assembler.jmp(ARMCondition(cond), useConstantPool));
402 Jump branch32(Condition cond, RegisterID left, TrustedImm32 right, int useConstantPool = 0)
414 return Jump(m_assembler.jmp(ARMCondition(cond), useConstantPool));
417 Jump branch32(Condition cond, RegisterID left, Address right)
423 Jump branch32(Condition cond, Address left, RegisterID right)
429 Jump branch32(Condition cond, Address left, TrustedImm32 right)
435 Jump branch32(Condition cond, BaseIndex left, TrustedImm32 right)
441 Jump branch32WithUnalignedHalfWords(Condition cond, BaseIndex left, TrustedImm32 right
500 Jump jump() function in class:JSC::MacroAssemblerARM
505 void jump(RegisterID target) function in class:JSC::MacroAssemblerARM
510 void jump(Address address) function in class:JSC::MacroAssemblerARM
761 Jump jump = branch32(cond, left, ARMRegisters::S1, true); local
769 Jump jump = branch32(cond, ARMRegisters::S0, ARMRegisters::S1, true); local
    [all...]
  /external/smack/src/org/xbill/DNS/
Message.java 419 out.jump(pos);
457 out.jump(startpos);
474 out.jump(startpos);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
MenuInflateFromXml.java 144 case R.id.jump:
145 Toast.makeText(this, "Jump up in the air!", Toast.LENGTH_SHORT).show();
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestQ3.java 176 player.jump();

Completed in 349 milliseconds

1 2 3 4 5 6 7 891011>>