Home
last modified time | relevance | path

Searched full:jump (Results 201 - 225 of 1634) sorted by relevance

12345678910>>...66

/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/oal/
H A Dplat_firmware.h70 #define JUMP_CMD_KEYWORD "JUMP"
82 #define MSG_FROM_DEV_JUMP_OK "JUMP OK"
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/
H A Dfilter.h50 u8_t jt; /* jump if true */
51 u8_t jf; /* jump if false */
/third_party/libunwind/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
H A Dlibunwind-setjmp.man58 need to be saved in the jump\-buffer (plus one call to
97 used by the system\-provided routines. Thus, a jump\-buffer created
/third_party/mesa3d/src/compiler/nir/
H A Dnir_loop_analyze.h29 /* Returns true if nir_cf_node contains a jump other than the expected_jump
76 * there must be no other breaks or any other type of jump. Or we pass NULL
H A Dnir_builder.h1613 nir_jump_instr *jump = nir_jump_instr_create(build->shader, jump_type);
1614 nir_builder_instr_insert(build, &jump->instr);
1621 nir_jump_instr *jump = nir_jump_instr_create(build->shader, nir_jump_goto);
1622 jump->target = target;
1623 nir_builder_instr_insert(build, &jump->instr);
1631 nir_jump_instr *jump = nir_jump_instr_create(build->shader, nir_jump_goto_if);
1632 jump->condition = cond;
1633 jump->target = target;
1634 jump->else_target = else_target;
1635 nir_builder_instr_insert(build, &jump
[all...]
H A Dnir_opt_dead_cf.c42 * the branch had a jump at the end.
44 * Another way is that control flow can end in a jump so that code after it
54 * We also consider the case where both branches of an if end in a jump, e.g.:
113 /* The control flow list we're about to paste in may include a jump at the in opt_constant_if()
/third_party/mesa3d/src/panfrost/bifrost/test/
H A Dtest-scheduler-predicates.cpp156 bi_instr *jump = bi_jump(b, TMP()); in TEST_F() local
157 ASSERT_FALSE(bi_reads_t(jump, 0)); in TEST_F()
/third_party/node/deps/v8/src/baseline/
H A Dbaseline-compiler.cc426 __ Jump(&done, Label::kNear); in SelectBooleanConstant()
473 // jump (i.e. forward jumps, excluding jump tables). in VisitSingleBytecode()
483 // Mark position as valid jump target. This is required for the deoptimizer in VisitSingleBytecode()
593 if (label) __ Jump(label); in UpdateInterruptBudgetAndJumpToLabel()
1546 __ Jump(&done, Label::kNear); in VisitTestUndetectable()
1588 __ Jump(&done, Label::kNear); in VisitTestTypeOf()
1605 __ Jump(&done, Label::kNear); in VisitTestTypeOf()
1620 __ Jump(&done, Label::kNear); in VisitTestTypeOf()
1635 __ Jump( in VisitTestTypeOf()
[all...]
/third_party/python/Modules/_sre/
H A Dsre_lib.h496 nextctx->jump = jumpvalue; \
523 int jump; member
565 int jump; in match() local
575 ctx->jump = JUMP_NONE; in match()
806 /* jump forward */ in match()
807 /* <JUMP> <offset> */ in match()
808 TRACE(("|%p|%p|JUMP %d\n", pattern, in match()
815 /* <BRANCH> <0=skip> code <JUMP> ... <NULL> */ in match()
1343 /* Jump to end of pattern indicated by skip, and then skip in match()
1375 /* Jump t in match()
[all...]
/third_party/eudev/src/libudev/
H A Dlibudev-monitor.c261 /* jump if magic matches */ in udev_monitor_filter_update()
284 /* jump to next tag if it does not match */ in udev_monitor_filter_update()
291 /* jump behind end of tag match block if tag matches */ in udev_monitor_filter_update()
308 /* jump if subsystem does not match */ in udev_monitor_filter_update()
311 /* jump if subsystem does not match */ in udev_monitor_filter_update()
316 /* jump if value does not match */ in udev_monitor_filter_update()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DStringTrieBuilder.java215 * Most branch edges "jump" to other nodes but the rightmost branch edges
216 * just continue without a jump.
650 // Write the sub-nodes in reverse order: The jump lengths are deltas from in write()
652 // then its jump delta would be larger. in write()
664 // not jump for it at all. in write()
753 // Encode the greater-or-equal branch last because we do not jump for it at all. in write()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DStringTrieBuilder.java214 * Most branch edges "jump" to other nodes but the rightmost branch edges
215 * just continue without a jump.
649 // Write the sub-nodes in reverse order: The jump lengths are deltas from in write()
651 // then its jump delta would be larger. in write()
663 // not jump for it at all. in write()
752 // Encode the greater-or-equal branch last because we do not jump for it at all. in write()
/third_party/icu/icu4c/source/common/unicode/
H A Dbytestrie.h424 // Reads a jump delta and jumps.
486 // the string/byte sequence so far, or a "jump" delta to the next node.
490 // there is one byte and one "jump" delta.
491 // If the input byte is less than the sub-node byte, then "jump" by delta to
494 // Otherwise, skip the "jump" delta to the next sub-node
511 // If odd, the value is final. (Otherwise, intermediate value or jump delta.)
/third_party/mesa3d/src/imagination/rogue/
H A Drogue.c668 nir_jump_instr *jump) in trans_nir_jump_return()
690 static bool trans_nir_jump(struct rogue_shader *shader, nir_jump_instr *jump) in trans_nir_jump() argument
692 switch (jump->type) { in trans_nir_jump()
694 return trans_nir_jump_return(shader, jump); in trans_nir_jump()
700 unreachable("Unimplemented NIR jump instruction type."); in trans_nir_jump()
744 "Failed to translate NIR jump instruction."); in rogue_nir_to_rogue()
667 trans_nir_jump_return(struct rogue_shader *shader, nir_jump_instr *jump) trans_nir_jump_return() argument
/third_party/node/deps/icu-small/source/common/unicode/
H A Dbytestrie.h424 // Reads a jump delta and jumps.
486 // the string/byte sequence so far, or a "jump" delta to the next node.
490 // there is one byte and one "jump" delta.
491 // If the input byte is less than the sub-node byte, then "jump" by delta to
494 // Otherwise, skip the "jump" delta to the next sub-node
511 // If odd, the value is final. (Otherwise, intermediate value or jump delta.)
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dbytestrie.h424 // Reads a jump delta and jumps.
486 // the string/byte sequence so far, or a "jump" delta to the next node.
490 // there is one byte and one "jump" delta.
491 // If the input byte is less than the sub-node byte, then "jump" by delta to
494 // Otherwise, skip the "jump" delta to the next sub-node
511 // If odd, the value is final. (Otherwise, intermediate value or jump delta.)
/third_party/node/deps/v8/src/codegen/s390/
H A Dmacro-assembler-s390.h86 // Jump, Call, and Ret pseudo instructions implementing inter-working.
87 void Jump(Register target, Condition cond = al);
88 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al);
89 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al);
90 void Jump(const ExternalReference& reference);
91 // Jump the register contains a smi.
1488 void Jump(intptr_t target, RelocInfo::Mode rmode, Condition cond = al);
1531 // Convenience function: tail call a runtime routine (jump).
1578 // Jump to a runtime routine.
1582 // Generates a trampoline to jump t
[all...]
/third_party/node/deps/v8/src/codegen/ppc/
H A Dmacro-assembler-ppc.h693 // Jump, Call, and Ret pseudo instructions implementing inter-working.
694 void Jump(Register target);
695 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al,
697 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al,
699 void Jump(const ExternalReference& reference);
700 void Jump(intptr_t target, RelocInfo::Mode rmode, Condition cond = al,
887 // Jump the register contains a smi.
1220 // Compare the object in a register to a value and jump if they are equal.
1226 // Compare the object in a register to a value and jump if they are not equal.
1268 // Convenience function: tail call a runtime routine (jump)
[all...]
/third_party/node/deps/v8/src/builtins/x64/
H A Dbuiltins-x64.cc47 __ Jump(BUILTIN_CODE(masm->isolate(), AdaptorWithBuiltinExitFrame), in Generate_Adaptor()
456 // Jump to a faked try block that does the invoke, with a faked catch in Generate_JSEntryVariant()
676 __ Jump(BUILTIN_CODE(masm->isolate(), RunMicrotasks), RelocInfo::CODE_TARGET); in Generate_RunMicrotasksTrampoline()
1029 // re-executing the JumpLoop to jump to the correct bytecode.
1088 // If this is a JumpLoop, re-execute it to perform the jump to the beginning in AdvanceBytecodeOffsetOrReturn()
1466 __ Jump(BUILTIN_CODE(masm->isolate(), CallWithSpread), in Generate_InterpreterPushArgsThenCallImpl()
1469 __ Jump(masm->isolate()->builtins()->Call(receiver_mode), in Generate_InterpreterPushArgsThenCallImpl()
1530 // Jump to the constructor function (rax, rbx, rdx passed on). in Generate_InterpreterPushArgsThenConstructImpl()
1531 __ Jump(BUILTIN_CODE(masm->isolate(), ArrayConstructorImpl), in Generate_InterpreterPushArgsThenConstructImpl()
1535 __ Jump(BUILTIN_COD in Generate_InterpreterPushArgsThenConstructImpl()
[all...]
/third_party/ffmpeg/libavcodec/aarch64/
H A Dme_cmp_neon.S29 cmp w4, #4 // if h < 4, jump to completion section
56 cbnz w4, 2f // if iterations remain, jump to completion section
90 cmp w4, #4 // if h < 4 jump to the completion version
172 cbnz w4, 2f // if iterations remain jump to completion section
/third_party/libcoap/include/coap3/
H A Dcoap_option.h56 * jump.
58 * @param opt An option jump or the beginning of the option.
284 * Returns the length of the given option. @p opt must point to an option jump
300 * option jump or the beginning of the option. This function returns @c NULL if
/third_party/mesa3d/src/compiler/glsl/tests/
H A Dlower_jump_cases.py147 This is useful in testing jump lowering, because if <statements>
148 ends in a jump, lower_jumps.cpp won't try to combine this
416 doc_string = """If one branch of an if ends in a jump, and control cannot
418 True, then the jump is lifted outside the if.
/third_party/node/deps/brotli/c/enc/
H A Dhash.h331 #define JUMP 4 macro
335 #undef JUMP macro
340 #define JUMP 1 macro
344 #undef JUMP macro
/third_party/node/deps/v8/src/baseline/riscv64/
H A Dbaseline-assembler-riscv64-inl.h96 void BaselineAssembler::Jump(Label* target, Label::Distance distance) { in Jump() function in v8::internal::baseline::BaselineAssembler
133 __ Jump(temp); in TailCallBuiltin()
459 __ addi(t6, t6, Lo12); // jump PC + Hi20 + Lo12 in Switch()
463 __ Jump(t6); in Switch()

Completed in 37 milliseconds

12345678910>>...66