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

1 2

  /external/lldb/examples/python/
jump.py 97 Syntax: jump <linespec> [<location-id>]
100 jump <linenum>
101 jump +<count>
102 jump -<count>
103 jump <filename>:<linenum>
104 jump <function-name>
105 jump *<address-expression>
109 def jump (debugger, command, result, internal_dict): function
121 result.AppendMessage("jump requires a valid target.")
126 result.AppendMessage("jump requires a valid process."
    [all...]
  /external/chromium_org/sandbox/win/src/
service_resolver_unittest.cc 72 BYTE jump; member in struct:__anon15256::Code
81 EXPECT_EQ(kJump32, patched->jump);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 363 uint64_t jump; local
376 jump = pc + operand.getImm();
382 jump = (uint64_t)operand.getImm();
389 debug_printf("\t\t; %lu", (unsigned long)jump);
396 if (jump > max_pc &&
397 jump < extent) {
398 max_pc = jump;
408 * jump to a successive address.
  /external/chromium_org/third_party/mesa/src/src/glsl/
loop_analysis.cpp 513 ir_loop_jump *const jump = (ir_loop_jump *) inst; local
514 if (jump->mode != ir_loop_jump::jump_break)
lower_jumps.cpp 89 * jump back to the top, or return from the function).
138 /* minimum jump strength (of lowered IR, not pre-lowering IR)
140 * If the block ends with a jump, must be the strength of the jump.
141 * Otherwise, the jump would be dead and have been deleted before)
143 * If the block doesn't end with a jump, it can be different than strength_none if all paths before it lead to some jump
211 ir_variable* return_flag; /* used to break out of all loops and then jump to the return instruction */
264 * Note that visiting a jump does not lower it. That is the
266 * contains the jump
977 ir_jump *jump = (ir_jump *) ir->body.get_tail(); local
    [all...]
ast_to_hir.cpp 3464 ir_loop_jump *const jump = local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
system_delay_unittest.cc 341 // ms we jump (add) 10 ms to give a repeated pattern.
350 int jump = 0; local
353 int device_buf_ms = kDeviceBufMs - (j / 10) + jump;
358 jump += 10;
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 363 uint64_t jump; local
376 jump = pc + operand.getImm();
382 jump = (uint64_t)operand.getImm();
389 debug_printf("\t\t; %lu", (unsigned long)jump);
396 if (jump > max_pc &&
397 jump < extent) {
398 max_pc = jump;
408 * jump to a successive address.
  /external/mesa3d/src/glsl/
loop_analysis.cpp 513 ir_loop_jump *const jump = (ir_loop_jump *) inst; local
514 if (jump->mode != ir_loop_jump::jump_break)
lower_jumps.cpp 89 * jump back to the top, or return from the function).
138 /* minimum jump strength (of lowered IR, not pre-lowering IR)
140 * If the block ends with a jump, must be the strength of the jump.
141 * Otherwise, the jump would be dead and have been deleted before)
143 * If the block doesn't end with a jump, it can be different than strength_none if all paths before it lead to some jump
211 ir_variable* return_flag; /* used to break out of all loops and then jump to the return instruction */
264 * Note that visiting a jump does not lower it. That is the
266 * contains the jump
977 ir_jump *jump = (ir_jump *) ir->body.get_tail(); local
    [all...]
ast_to_hir.cpp 3464 ir_loop_jump *const jump = local
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Analyzer.java 199 int jump = insns.indexOf(j.label); local
201 merge(jump, current, new Subroutine(j.label,
205 merge(jump, current, subroutine);
207 newControlFlowEdge(insn, jump);
210 int jump = insns.indexOf(lsi.dflt); local
211 merge(jump, current, subroutine);
212 newControlFlowEdge(insn, jump);
215 jump = insns.indexOf(label);
216 merge(jump, current, subroutine);
217 newControlFlowEdge(insn, jump);
221 int jump = insns.indexOf(tsi.dflt); local
279 int jump = insns.indexOf(tcb.handler); local
    [all...]
  /development/ndk/platforms/android-L/arch-x86/include/asm/
bootparam.h 67 __u16 jump; member in struct:setup_header
  /development/ndk/platforms/android-L/arch-x86_64/include/asm/
bootparam.h 67 __u16 jump; member in struct:setup_header
  /external/chromium_org/third_party/icu/source/common/
uhash.c 316 * "jump" value (moduloing by the length again to keep it within
327 * otherwise we are not guaranteed that the jump value (the secondary
336 int32_t jump = 0; /* lazy evaluate */ local
359 if (jump == 0) { /* lazy compute jump */
360 /* The jump value must be relatively prime to the table
364 jump = (hashcode % (hash->length - 1)) + 1;
366 theIndex = (theIndex + jump) % hash->length;
  /external/dexmaker/src/main/java/com/google/dexmaker/
Code.java 89 * There's no single operation to compare longs and jump, or to compare ints and
98 * that label. You can jump to a label that hasn't yet been marked (jumping
99 * forward) or to a label that has already been marked (jumping backward). Jump
100 * unconditionally with {@link #jump jump(Label)} or conditionally based on a
110 * jump, return or throw.
115 * throwable class. All statements that follow will jump to that catch clause if
120 * {@link #throwValue throwValue()}. Control flow will jump to the nearest label
338 jump(label); // blocks must end with a branch, return or throw
345 * error to jump to a label not marked on this {@code Code}
347 public void jump(Label target) { method in class:Code
    [all...]
  /external/icu/icu4c/source/common/
uhash.c 316 * "jump" value (moduloing by the length again to keep it within
327 * otherwise we are not guaranteed that the jump value (the secondary
336 int32_t jump = 0; /* lazy evaluate */ local
359 if (jump == 0) { /* lazy compute jump */
360 /* The jump value must be relatively prime to the table
364 jump = (hashcode % (hash->length - 1)) + 1;
366 theIndex = (theIndex + jump) % hash->length;
  /bionic/libc/kernel/uapi/asm-x86/asm/
bootparam.h 70 __u16 jump; member in struct:setup_header
  /external/chromium_org/media/cast/test/
end2end_unittest.cc 1487 size_t jump = 0; local
    [all...]
  /external/kernel-headers/original/uapi/asm-x86/asm/
bootparam.h 55 __u16 jump; member in struct:setup_header
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 1183 final int jump = _blocks [patchData [3]].m_first - patchData [2]; local
    [all...]
  /external/iptables/libiptc/
libiptc.c 7 * Every chain ends with an unconditional jump: a RETURN for user chains,
95 IPTCC_R_JUMP, /* jump to other chain */
108 struct chain_head *jump; /* jump target, if IPTCC_R_JUMP */ member in struct:rule_head
128 unsigned int index; /* index (needed for jump resolval) */
395 } else if (res < 0) { /* Too far, jump back */
404 debug("jump back to pos:%d (end:%d)\n", pos, end);
406 } else { /* res > 0; Not far enough, jump forward */
430 debug("jump forward to pos:%d (end:%d)\n", pos, end);
700 * chains, but this function is only used for finding jump
    [all...]
  /external/e2fsprogs/lib/blkid/
probe.h 451 __u8 jump[3]; member in struct:ntfs_super_block
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 
  /external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar 

Completed in 840 milliseconds

1 2