Searched refs:jump (Results 51 - 75 of 139) sorted by relevance

123456

/external/pcre/dist/sljit/
H A DsljitNativePPC_common.c248 static SLJIT_INLINE sljit_si detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_ins *code) argument
255 if (jump->flags & (SLJIT_REWRITABLE_JUMP | IS_CALL))
258 if (jump->flags & SLJIT_REWRITABLE_JUMP)
262 if (jump->flags & JUMP_ADDR)
263 target_addr = jump->u.target;
265 SLJIT_ASSERT(jump->flags & JUMP_LABEL);
266 target_addr = (sljit_uw)(code + jump->u.label->size);
270 if (jump->flags & IS_CALL)
277 if (jump->flags & IS_COND) {
279 jump
328 struct sljit_jump *jump; local
2148 struct sljit_jump *jump; local
2180 struct sljit_jump *jump = NULL; local
[all...]
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 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/valgrind/main/memcheck/tests/
H A Dfprw.stderr.exp1 Conditional jump or move depends on uninitialised value(s)
4 Conditional jump or move depends on uninitialised value(s)
/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/pcre/dist/
H A Dpcre_jit_compile.c131 ')' backtrack path (If we arrived from "C" jump to the backtrack of "C")
134 jump to D matching path
141 whether there is a next alternative. If so, it needs to jump back to
191 struct sljit_jump *jump; member in struct:jump_list
335 /* Current position where a THEN must jump. */
396 /* Labels and jump lists. */
533 #define JUMPHERE(jump) \
534 sljit_set_label((jump), sljit_emit_label(compiler))
535 #define SET_LABEL(jump, label) \
536 sljit_set_label((jump), (labe
2033 add_jump(struct sljit_compiler *compiler, jump_list **list, struct sljit_jump* jump) argument
2254 struct sljit_jump *jump; local
2297 struct sljit_jump *jump; local
2440 struct sljit_jump *jump = NULL; local
2470 struct sljit_jump *jump; local
2499 struct sljit_jump *jump; local
2531 struct sljit_jump *jump; local
2593 struct sljit_jump *jump; local
2620 struct sljit_jump *jump; local
2751 struct sljit_jump *jump; local
2850 struct sljit_jump *jump; local
2886 struct sljit_jump *jump; local
2934 struct sljit_jump *jump; local
2970 struct sljit_jump *jump; local
3926 struct sljit_jump *jump; local
4061 struct sljit_jump *jump; local
4099 struct sljit_jump *jump; local
4451 struct sljit_jump *jump; local
4480 struct sljit_jump *jump; local
4738 struct sljit_jump *jump = NULL; local
5239 struct sljit_jump *jump[4]; local
5940 struct sljit_jump *jump = NULL; local
6040 struct sljit_jump *jump = NULL; local
6429 struct sljit_jump *jump; local
6947 struct sljit_jump *jump; local
7853 struct sljit_jump *jump = NULL; local
8548 struct sljit_jump *jump = NULL; local
9265 struct sljit_jump *jump; local
9329 struct sljit_jump *jump; local
9390 struct sljit_jump *jump; local
9616 struct sljit_jump *jump; local
9753 struct sljit_jump *jump; local
[all...]
/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/oprofile/events/mips/vr5432/
H A Devents8 event:0x4 counters:0,1 um:zero minimum:500 name:BRANCHES : Branch execution (no jumps or jump registers)
/external/valgrind/main/memcheck/tests/darwin/
H A Daio.stderr.exp7 Conditional jump or move depends on uninitialised value(s)
/external/valgrind/main/none/tests/s390x/
H A Dop_exception.stderr.exp9 warning about a bad jump, it's probably your program's fault.
22 warning about a bad jump, it's probably your program's fault.
35 warning about a bad jump, it's probably your program's fault.
48 warning about a bad jump, it's probably your program's fault.
/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/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 " +
H A DMessage.java419 out.jump(pos);
457 out.jump(startpos);
474 out.jump(startpos);
/external/valgrind/main/exp-bbv/tests/amd64-linux/
H A Dclone_test.S52 jz thread2 # if so, jump to thrad2
/external/valgrind/main/exp-bbv/tests/x86-linux/
H A Dclone_test.S52 jz thread2 # if so, jump to thrad2
/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/libhevc/common/arm/
H A Dihevc_sao_edge_offset_class0.s114 BLT WIDTH_RESIDUE @If not jump to WIDTH_RESIDUE where loop is unrolled for 8 case
120 BNE AU1_MASK_FF @jump to else part
254 BNE PU1_SRC_LOOP @If not equal jump to the inner loop
261 BEQ WIDTH_RESIDUE @If residue remains jump to residue loop
262 BGT WIDTH_LOOP_16 @If not equal jump to width_loop
269 BEQ END_LOOPS @No Residue jump to end function
272 BNE AU1_MASK_FF_RESIDUE @jump to else part
337 BNE PU1_SRC_LOOP_RESIDUE @If not equal jump to the pu1_src loop
H A Dihevc_sao_edge_offset_class0_chroma.s118 BLT WIDTH_RESIDUE @If not jump to WIDTH_RESIDUE where loop is unrolled for 8 case
124 BNE AU1_MASK_FF @jump to else part
272 BNE PU1_SRC_LOOP @If not equal jump to the inner loop
279 BEQ WIDTH_RESIDUE @If residue remains jump to residue loop
280 BGT WIDTH_LOOP_16 @If not equal jump to width_loop
287 BEQ END_LOOPS @No Residue jump to end function
290 BNE AU1_MASK_FF_RESIDUE @jump to else part
423 BNE PU1_SRC_LOOP_RESIDUE @If not equal jump to the pu1_src loop
/external/llvm/test/MC/Mips/
H A Dmicromips-jump-instructions.s6 # for jump and branch instructions.
/external/chromium_org/chrome/browser/resources/print_preview/
H A Dprint_preview.css262 @-webkit-keyframes dancing-dots-jump {
273 -webkit-animation: dancing-dots-jump 1800ms infinite;
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/delay_tool/
H A Dplot_neteq_delay.m175 % negative jump
178 % positive jump
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dbootparam.h55 __u16 jump; member in struct:setup_header
/external/libunwind/doc/
H A Dlibunwind-setjmp.tex31 need to be saved in the jump-buffer (plus one call to
56 used by the system-provided routines. Thus, a jump-buffer created
/external/linux-tools-perf/perf-3.12.0/arch/mn10300/lib/
H A Dmemcpy.S39 bne memcpy_1 # jump if not

Completed in 1426 milliseconds

123456