Searched defs:jump (Results 1 - 25 of 43) 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:__anon10631::Code
81 EXPECT_EQ(kJump32, patched->jump);
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
H A Dsystem_delay_unittest.cc341 // 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/pcre/dist/sljit/
H A DsljitNativeX86_32.c41 static sljit_ub* generate_far_jump_code(struct sljit_jump *jump, sljit_ub *code_ptr, sljit_si type) argument
45 jump->addr++;
49 jump->addr++;
54 jump->addr += 2;
57 if (jump->flags & JUMP_LABEL)
58 jump->flags |= PATCH_MW;
60 *(sljit_sw*)code_ptr = jump->u.target - (jump->addr + 4);
H A DsljitNativeX86_64.c42 static sljit_ub* generate_far_jump_code(struct sljit_jump *jump, sljit_ub *code_ptr, sljit_si type) argument
53 jump->addr = (sljit_uw)code_ptr;
55 if (jump->flags & JUMP_LABEL)
56 jump->flags |= PATCH_MD;
58 *(sljit_sw*)code_ptr = jump->u.target;
H A DsljitLir.c458 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_label(struct sljit_jump *jump, struct sljit_label* label) argument
460 if (SLJIT_LIKELY(!!jump) && SLJIT_LIKELY(!!label)) {
461 jump->flags &= ~JUMP_ADDR;
462 jump->flags |= JUMP_LABEL;
463 jump->u.label = label;
467 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_target(struct sljit_jump *jump, sljit_uw target) argument
469 if (SLJIT_LIKELY(!!jump)) {
470 jump->flags &= ~JUMP_LABEL;
471 jump->flags |= JUMP_ADDR;
472 jump
561 set_jump(struct sljit_jump *jump, struct sljit_compiler *compiler, sljit_si flags) argument
858 struct sljit_jump *jump; local
1980 sljit_set_label(struct sljit_jump *jump, struct sljit_label* label) argument
1987 sljit_set_target(struct sljit_jump *jump, sljit_uw target) argument
[all...]
/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.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/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/chromium_org/media/cast/test/
H A Dend2end_unittest.cc1487 size_t jump = 0; local
1493 EXPECT_EQ(0u, jump);
1494 jump = i;
1497 EXPECT_GT(jump, 199u);
1498 EXPECT_LT(jump, 220u);
/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...]

Completed in 7645 milliseconds

12