Searched defs:jump (Results 1 - 25 of 30) sorted by relevance

12

/external/lldb/examples/python/
H A Djump.py97 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 require
[all...]
/external/chromium_org/sandbox/win/src/
H A Dservice_resolver_unittest.cc72 BYTE jump; member in struct:__anon9999::Code
81 EXPECT_EQ(kJump32, patched->jump);
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
H A Dsystem_delay_unittest.cc339 // ms we jump (add) 10 ms to give a repeated pattern.
348 int jump = 0; local
351 int device_buf_ms = kDeviceBufMs - (j / 10) + jump;
356 jump += 10;
/external/smack/src/org/xbill/DNS/
H A DDNSInput.java110 jump(int index) { method in class:DNSInput
112 throw new IllegalArgumentException("cannot jump past " +
H A DDNSOutput.java75 jump(int index) { method in class:DNSOutput
77 throw new IllegalArgumentException("cannot jump past " +
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_debug.cpp363 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/
H A Dloop_analysis.cpp513 ir_loop_jump *const jump = (ir_loop_jump *) inst; local
514 if (jump->mode != ir_loop_jump::jump_break)
H A Dlower_jumps.cpp89 * 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...]
H A Dast_to_hir.cpp3464 ir_loop_jump *const jump = local
3468 instructions->push_tail(jump);
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DBasicBlock.java23 * A basic block is a sequence of bytecode that does not contain jump/branch
32 public boolean stop; // true if the block ends with an unconditional jump.
98 BasicBlock[] jump; field in class:BasicBlock.Mark
106 jump = null;
122 jump = bb;
181 private Mark makeMark(HashMap table, int pos, BasicBlock[] jump, argument
184 m.setJump(jump, size, always);
333 prev.exit = m.jump;
366 b.exit = m.jump;
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_debug.cpp363 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/
H A Dloop_analysis.cpp513 ir_loop_jump *const jump = (ir_loop_jump *) inst; local
514 if (jump->mode != ir_loop_jump::jump_break)
H A Dlower_jumps.cpp89 * 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...]
H A Dast_to_hir.cpp3464 ir_loop_jump *const jump = local
3468 instructions->push_tail(jump);
/external/replicaisland/src/com/replica/replicaisland/
H A DInputGameInterface.java293 public void setKeys(int left, int right, int jump, int attack) { argument
296 mJumpKeyCode = jump;
/external/chromium_org/third_party/icu/source/common/
H A Duhash.c315 * "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;
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DCode.java89 * 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
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(Labe method in class:Code
[all...]
/external/icu/icu4c/source/common/
H A Duhash.c316 * "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/chromium_org/third_party/skia/third_party/lua/src/
H A Dlcode.c91 ** returns current `pc' and marks it as a jump target (to avoid wrong
119 ** check whether list has any jump that do not produce a value
157 fixjump(fs, list, dtarget); /* jump to default target */
415 static int code_label (FuncState *fs, int A, int b, int jump) { argument
416 luaK_getlabel(fs); /* those instructions may be jump targets */
417 return luaK_codeABC(fs, OP_LOADBOOL, A, b, jump);
471 luaK_concat(fs, &e->t, e->u.info); /* put this jump in `t' list */
622 int pc; /* pc of last jump */
639 luaK_concat(fs, &e->f, pc); /* insert last jump in `f' list */
646 int pc; /* pc of last jump */
[all...]
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dbootparam.h55 __u16 jump; member in struct:setup_header
/external/iptables/libiptc/
H A Dlibiptc.c7 * 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/
H A Dprobe.h451 __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/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...

Completed in 1718 milliseconds

12