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

12

/external/llvm/test/MC/Hexagon/instructions/
H A Dj.s12 # Compare and jump
14 { p0 = cmp.eq(r17,#-1); if (p0.new) jump:nt 0 }
16 { p0 = cmp.gt(r17,#-1); if (p0.new) jump:nt 0 }
18 { p0 = tstbit(r17, #0); if (p0.new) jump:nt 0 }
20 { p0 = cmp.eq(r17,#-1); if (p0.new) jump:t 0 }
22 { p0 = cmp.gt(r17,#-1); if (p0.new) jump:t 0 }
24 { p0 = tstbit(r17, #0); if (p0.new) jump:t 0 }
26 { p0 = cmp.eq(r17,#-1); if (!p0.new) jump:nt 0 }
28 { p0 = cmp.gt(r17,#-1); if (!p0.new) jump:nt 0 }
30 { p0 = tstbit(r17, #0); if (!p0.new) jump
160 jump 0 label
[all...]
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dcodegen.cc87 // stay within its true range even if we add a jump for |jf|.
117 // Otherwise, fall back to emitting a jump instruction.
118 Node jump = Append(BPF_JMP | BPF_JA, Offset(target), 0, 0); local
119 equivalent_.at(target) = jump;
120 return jump;
/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.c464 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_label(struct sljit_jump *jump, struct sljit_label* label) argument
466 if (SLJIT_LIKELY(!!jump) && SLJIT_LIKELY(!!label)) {
467 jump->flags &= ~JUMP_ADDR;
468 jump->flags |= JUMP_LABEL;
469 jump->u.label = label;
473 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_target(struct sljit_jump *jump, sljit_uw target) argument
475 if (SLJIT_LIKELY(!!jump)) {
476 jump->flags &= ~JUMP_LABEL;
477 jump->flags |= JUMP_ADDR;
478 jump
601 set_jump(struct sljit_jump *jump, struct sljit_compiler *compiler, sljit_si flags) argument
908 struct sljit_jump *jump; local
1955 sljit_set_label(struct sljit_jump *jump, struct sljit_label* label) argument
1962 sljit_set_target(struct sljit_jump *jump, sljit_uw target) argument
[all...]
H A DsljitNativeARM_32.c392 static SLJIT_INLINE sljit_si detect_jump_type(struct sljit_jump *jump, sljit_uw *code_ptr, sljit_uw *code) argument
396 if (jump->flags & SLJIT_REWRITABLE_JUMP)
400 if (jump->flags & IS_BL)
403 if (jump->flags & JUMP_ADDR)
404 diff = ((sljit_sw)jump->u.target - (sljit_sw)(code_ptr + 2));
406 SLJIT_ASSERT(jump->flags & JUMP_LABEL);
407 diff = ((sljit_sw)(code + jump->u.label->size) - (sljit_sw)(code_ptr + 2));
414 if (jump->flags & IS_BL) {
417 jump->flags |= PATCH_B;
424 jump
575 struct sljit_jump *jump; local
2402 struct sljit_jump *jump; local
2443 struct sljit_jump *jump; local
[all...]
H A DsljitNativeARM_64.c154 static SLJIT_INLINE sljit_si detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_ins *code) argument
159 if (jump->flags & SLJIT_REWRITABLE_JUMP) {
160 jump->flags |= PATCH_ABS64;
164 if (jump->flags & JUMP_ADDR)
165 target_addr = jump->u.target;
167 SLJIT_ASSERT(jump->flags & JUMP_LABEL);
168 target_addr = (sljit_uw)(code + jump->u.label->size);
172 if (jump->flags & IS_COND) {
175 code_ptr[-5] ^= (jump->flags & IS_CBZ) ? (0x1 << 24) : 0x1;
176 jump
218 struct sljit_jump *jump; local
1882 struct sljit_jump *jump; local
1909 struct sljit_jump *jump; local
1942 struct sljit_jump *jump; local
[all...]
H A DsljitNativeSPARC_common.c198 static SLJIT_INLINE sljit_ins* detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_ins *code) argument
205 if (jump->flags & SLJIT_REWRITABLE_JUMP)
208 if (jump->flags & JUMP_ADDR)
209 target_addr = jump->u.target;
211 SLJIT_ASSERT(jump->flags & JUMP_LABEL);
212 target_addr = (sljit_uw)(code + jump->u.label->size);
214 inst = (sljit_ins*)jump->addr;
217 if (jump->flags & IS_CALL) {
219 jump->flags |= PATCH_CALL;
220 if (jump
282 struct sljit_jump *jump; local
1291 struct sljit_jump *jump; local
1337 struct sljit_jump *jump = NULL; local
[all...]
H A DsljitLir.h38 words, it is possible to jump to any label from anywhere, even from
41 - Supports self modifying code: target of (conditional) jump and call
62 - It can jump to any exception handler anytime (even if it belongs
682 - you cannot postpone conditional jump instructions except if noted that
938 /* Label and jump instructions. */
999 /* Unconditional jump types. */
1012 /* Emit a jump instruction. The destination is not set, only the type of the jump.
1045 /* Set the destination of the jump to this label. */
1046 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_label(struct sljit_jump *jump, struc
1090 sljit_get_jump_addr(struct sljit_jump *jump) argument
[all...]
H A DsljitNativeARM_T2_32.c224 static SLJIT_INLINE sljit_si detect_jump_type(struct sljit_jump *jump, sljit_uh *code_ptr, sljit_uh *code) argument
228 if (jump->flags & SLJIT_REWRITABLE_JUMP)
231 if (jump->flags & JUMP_ADDR) {
233 if (!(jump->u.target & 0x1))
235 diff = ((sljit_sw)jump->u.target - (sljit_sw)(code_ptr + 2)) >> 1;
238 SLJIT_ASSERT(jump->flags & JUMP_LABEL);
239 diff = ((sljit_sw)(code + jump->u.label->size) - (sljit_sw)(code_ptr + 2)) >> 1;
242 if (jump->flags & IS_COND) {
243 SLJIT_ASSERT(!(jump->flags & IS_BL));
245 jump
279 set_jump_instruction(struct sljit_jump *jump) argument
352 struct sljit_jump *jump; local
1916 struct sljit_jump *jump; local
1949 struct sljit_jump *jump; local
[all...]
/external/vboot_reference/futility/
H A Dkernel_blob.h44 uint16_t jump; /* 200 */ member in struct:linux_kernel_params
/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/toybox/toys/pending/
H A Dtftpd.c290 int jump = 0, bflag = 0; local
292 for (; rbuflen; rbuflen -= jump, buf += jump) {
300 jump += strlen(buf) + 1;
/external/webrtc/webrtc/modules/audio_processing/aec/
H A Dsystem_delay_unittest.cc400 // ms we jump (add) 10 ms to give a repeated pattern.
414 int jump = 0; local
417 int device_buf_ms = kDeviceBufMs - (j / 10) + jump;
423 jump += 10;
/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/clang/test/CXX/drs/
H A Ddr5xx.cpp682 void jump() { function in namespace:dr568
685 // expected-error@-2 {{cannot jump}}
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dbootparam.h56 __u16 jump; member in struct:setup_header
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
H A DUberColorPickerDialog.java690 //Use it to infer a larger jump and therefore faster palette/slider adjustment.
691 int jump = event.getHistorySize() + 1;
704 changeHSPalette(x, y, jump);
708 changeSlider(mFocusedControl, true, jump);
710 changeSlider(mFocusedControl, false, jump);
731 * @param jump the amount by which to change.
733 private void changeHSPalette(float x, float y, int jump) { argument
736 x2 = -jump;
738 x2 = jump;
740 y2 = -jump;
789 changeSlider(int slider, boolean increase, int jump) argument
[all...]
/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 701 milliseconds

12