HomeSort by relevance Sort by last modified time
    Searched defs:jump (Results 1 - 16 of 16) sorted by null

  /external/webkit/JavaScriptCore/assembler/
MacroAssembler.h 60 using MacroAssemblerBase::jump;
128 void jump(Label target) function in class:JSC::MacroAssembler
130 jump().linkTo(target, this);
265 Jump branchPtr(Condition cond, RegisterID left, RegisterID right)
270 Jump branchPtr(Condition cond, RegisterID left, ImmPtr right)
275 Jump branchPtr(Condition cond, RegisterID left, Address right)
280 Jump branchPtr(Condition cond, Address left, RegisterID right)
285 Jump branchPtr(Condition cond, AbsoluteAddress left, RegisterID right)
290 Jump branchPtr(Condition cond, Address left, ImmPtr right)
295 Jump branchPtr(Condition cond, AbsoluteAddress left, ImmPtr right
    [all...]
LinkBuffer.h 46 // * Jump objects may be linked to external targets,
47 // * The address of Jump objects may taken, such that it can later be relinked.
55 typedef MacroAssembler::Jump Jump;
88 void link(Jump jump, CodeLocationLabel label)
90 MacroAssembler::linkJump(code(), jump, label); local
MacroAssemblerARM.h 362 Jump branch32(Condition cond, RegisterID left, RegisterID right, int useConstantPool = 0)
365 return Jump(m_assembler.jmp(ARMCondition(cond), useConstantPool));
368 Jump branch32(Condition cond, RegisterID left, Imm32 right, int useConstantPool = 0)
375 return Jump(m_assembler.jmp(ARMCondition(cond), useConstantPool));
378 Jump branch32(Condition cond, RegisterID left, Address right)
384 Jump branch32(Condition cond, Address left, RegisterID right)
390 Jump branch32(Condition cond, Address left, Imm32 right)
396 Jump branch32(Condition cond, BaseIndex left, Imm32 right)
402 Jump branch32WithUnalignedHalfWords(Condition cond, BaseIndex left, Imm32 right)
408 Jump branch16(Condition cond, BaseIndex left, RegisterID right
455 Jump jump() function in class:JSC::MacroAssemblerARM
460 void jump(RegisterID target) function in class:JSC::MacroAssemblerARM
465 void jump(Address address) function in class:JSC::MacroAssemblerARM
686 Jump jump = branch32(cond, left, ARMRegisters::S1, true); local
694 Jump jump = branch32(cond, ARMRegisters::S0, ARMRegisters::S1, true); local
    [all...]
MacroAssemblerX86Common.h 438 Jump branchDouble(DoubleCondition cond, FPRegisterID left, FPRegisterID right)
448 Jump isUnordered(m_assembler.jp());
449 Jump result = Jump(m_assembler.je());
453 Jump isUnordered(m_assembler.jp());
454 Jump isEqual(m_assembler.je());
456 Jump result = jump();
462 return Jump(m_assembler.jCC(static_cast<X86Assembler::Condition>(cond & ~DoubleConditionBits)));
469 Jump branchTruncateDoubleToInt32(FPRegisterID src, RegisterID dest
721 Jump jump() function in class:JSC::MacroAssemblerX86Common
726 void jump(RegisterID target) function in class:JSC::MacroAssemblerX86Common
732 void jump(Address address) function in class:JSC::MacroAssemblerX86Common
    [all...]
MacroAssemblerARMv7.h 548 Jump branchDouble(DoubleCondition cond, FPRegisterID left, FPRegisterID right)
554 // ConditionNE jumps if NotEqual *or* unordered - force the unordered cases not to jump.
555 Jump unordered = makeBranch(ARMv7Assembler::ConditionVS);
556 Jump result = makeBranch(ARMv7Assembler::ConditionNE);
561 Jump unordered = makeBranch(ARMv7Assembler::ConditionVS);
562 Jump notEqual = makeBranch(ARMv7Assembler::ConditionNE);
565 Jump result = makeJump();
572 Jump branchTruncateDoubleToInt32(FPRegisterID, RegisterID)
575 return jump();
668 // This set of jump and conditional branch operations return a Jum
826 Jump jump() function in class:JSC::MacroAssemblerARMv7
831 void jump(RegisterID target) function in class:JSC::MacroAssemblerARMv7
837 void jump(Address address) function in class:JSC::MacroAssemblerARMv7
    [all...]
  /frameworks/base/media/libeffects/testlibs/
AudioEqualizer.cpp 88 const int32_t jump = (top - bottom) / (mNumPeaking + 2); local
89 int32_t centerFreq = bottom + jump/2;
93 centerFreq += jump;
97 centerFreq += jump;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
bootparam.h 23 __u16 jump; member in struct:setup_header
  /external/chromium/third_party/icu/source/common/
uhash.c 315 * "jump" value (moduloing by the length again to keep it within
326 * otherwise we are not guaranteed that the jump value (the secondary
335 int32_t jump = 0; /* lazy evaluate */ local
358 if (jump == 0) { /* lazy compute jump */
359 /* The jump value must be relatively prime to the table
363 jump = (hashcode % (hash->length - 1)) + 1;
365 theIndex = (theIndex + jump) % hash->length;
    [all...]
  /external/icu4c/common/
uhash.c 315 * "jump" value (moduloing by the length again to keep it within
326 * otherwise we are not guaranteed that the jump value (the secondary
335 int32_t jump = 0; /* lazy evaluate */ local
358 if (jump == 0) { /* lazy compute jump */
359 /* The jump value must be relatively prime to the table
363 jump = (hashcode % (hash->length - 1)) + 1;
365 theIndex = (theIndex + jump) % hash->length;
    [all...]
  /external/iptables/libiptc/
libiptc.c 7 * Every chain ends with an unconditional jump: a RETURN for user chains,
87 IPTCC_R_JUMP, /* jump to other chain */
100 struct chain_head *jump; /* jump target, if IPTCC_R_JUMP */ member in struct:rule_head
120 unsigned int index; /* index (needed for jump resolval) */
347 && r->jump)
348 r->jump->references--;
518 DEBUGP_C("jump, target=%u\n", t->verdict);
520 /* Jump target fixup has to be deferred
563 r->jump = c
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 1183 final int jump = _blocks [patchData [3]].m_first - patchData [2]; local
    [all...]
  /external/grub/stage2/
shared.h 402 unsigned short jump; /* Jump instruction */ member in struct:linux_kernel_header
  /external/qemu/block/
vvfat.c 206 uint8_t jump[3]; member in struct:bootsector_t
958 bootsector->jump[0]=0xeb;
959 bootsector->jump[1]=0x3e;
960 bootsector->jump[2]=0x90;
    [all...]
  /external/clearsilver/util/regex/
regex.c 401 /* Followed by two byte relative address to which to jump. */
402 jump,
404 /* Same as jump, but marks the end of an alternative. */
415 /* Throw away latest failure point and then jump to following
420 match; otherwise change to jump. This is used to jump
421 back to the beginning of a repeat. If what follows this jump
428 /* Jump to following two-byte address, and push a dummy failure
432 of jump when compiling an alternative. */
440 After matching N times, jump to the address upon failure. *
399 jump, enumerator in enum:__anon3128
    [all...]
  /external/e2fsprogs/lib/blkid/
probe.h 447 __u8 jump[3]; member in struct:ntfs_super_block
  /external/emma/lib/
emma.jar 

Completed in 2622 milliseconds