Searched defs:fall_through (Results 1 - 11 of 11) sorted by relevance

/external/iproute2/tc/
H A Df_tcindex.c22 fprintf(stderr," [ pass_on | fall_through ]\n");
79 else if (!strcmp(*argv,"fall_through")) {
157 int fall_through; local
160 sizeof(fall_through))
162 fall_through = *(int *) RTA_DATA(tb[TCA_TCINDEX_FALL_THROUGH]);
163 fprintf(f,fall_through ? "fall_through " : "pass_on ");
/external/chromium_org/v8/src/
H A Dfull-codegen.h314 Label* fall_through);
325 Label* fall_through);
332 Label* fall_through);
337 Label* fall_through);
385 Label* fall_through) {
386 TestContext context(this, expr, if_true, if_false, fall_through);
693 Label** fall_through) const = 0;
734 Label** fall_through) const;
755 Label** fall_through) const;
765 Label* fall_through)
382 VisitForControl(Expression* expr, Label* if_true, Label* if_false, Label* fall_through) argument
761 TestContext(FullCodeGenerator* codegen, Expression* condition, Label* true_label, Label* false_label, Label* fall_through) argument
780 Label* fall_through() const { return fall_through_; } function in class:v8::internal::FullCodeGenerator::TestContext
[all...]
H A Djsregexp.cc1766 Label* fall_through,
1769 if (below != fall_through) {
1771 if (above_or_equal != fall_through) masm->GoTo(above_or_equal);
1781 Label* fall_through,
1784 if (in_range == fall_through) {
1796 if (out_of_range != fall_through) masm->GoTo(out_of_range);
1809 Label* fall_through,
1828 if (even_label == fall_through) {
1858 if (on_bit_clear != fall_through) masm->GoTo(on_bit_clear);
1962 // equal to the fall_through labe
1764 EmitBoundaryTest(RegExpMacroAssembler* masm, int border, Label* fall_through, Label* above_or_equal, Label* below) argument
1778 EmitDoubleBoundaryTest(RegExpMacroAssembler* masm, int first, int last, Label* fall_through, Label* in_range, Label* out_of_range) argument
1803 EmitUseLookupTable( RegExpMacroAssembler* masm, ZoneList<int>* ranges, int start_index, int end_index, int min_char, Label* fall_through, Label* even_label, Label* odd_label) argument
1963 GenerateBranches(RegExpMacroAssembler* masm, ZoneList<int>* ranges, int start_index, int end_index, uc16 min_char, uc16 max_char, Label* fall_through, Label* even_label, Label* odd_label) argument
2211 Label fall_through; local
3106 Label fall_through, dummy; local
[all...]
/external/chromium_org/v8/src/arm/
H A Dfull-codegen-arm.cc696 Label* fall_through) {
700 Split(ne, if_true, if_false, fall_through);
707 Label* fall_through) {
708 if (if_false == fall_through) {
710 } else if (if_true == fall_through) {
2997 Label* fall_through = NULL; local
2999 &if_true, &if_false, &fall_through);
3003 Split(eq, if_true, if_false, fall_through);
3018 Label* fall_through = NULL; local
3020 &if_true, &if_false, &fall_through);
693 DoTest(Expression* condition, Label* if_true, Label* if_false, Label* fall_through) argument
704 Split(Condition cond, Label* if_true, Label* if_false, Label* fall_through) argument
3039 Label* fall_through = NULL; local
3072 Label* fall_through = NULL; local
3094 Label* fall_through = NULL; local
3119 Label* fall_through = NULL; local
3207 Label* fall_through = NULL; local
3229 Label* fall_through = NULL; local
3255 Label* fall_through = NULL; local
3277 Label* fall_through = NULL; local
3297 Label* fall_through = NULL; local
3330 Label* fall_through = NULL; local
3886 Label* fall_through = NULL; local
4558 Label* fall_through = NULL; local
4641 Label* fall_through = NULL; local
4707 Label* fall_through = NULL; local
[all...]
/external/chromium_org/v8/src/arm64/
H A Dfull-codegen-arm64.cc686 Label* fall_through) {
689 __ CompareAndSplit(result_register(), 0, ne, if_true, if_false, fall_through); local
695 // fall_through is used as an optimization in cases where only one branch
700 Label* fall_through) {
701 if (if_false == fall_through) {
703 } else if (if_true == fall_through) {
704 DCHECK(if_false != fall_through);
2662 Label* fall_through = NULL; local
2664 &if_true, &if_false, &fall_through);
2667 __ TestAndSplit(x0, kSmiTagMask, if_true, if_false, fall_through);
683 DoTest(Expression* condition, Label* if_true, Label* if_false, Label* fall_through) argument
697 Split(Condition cond, Label* if_true, Label* if_false, Label* fall_through) argument
2682 Label* fall_through = NULL; local
2704 Label* fall_through = NULL; local
2734 Label* fall_through = NULL; local
2757 Label* fall_through = NULL; local
2781 Label* fall_through = NULL; local
2883 Label* fall_through = NULL; local
2905 Label* fall_through = NULL; local
2932 Label* fall_through = NULL; local
2954 Label* fall_through = NULL; local
2974 Label* fall_through = NULL; local
3010 Label* fall_through = NULL; local
3568 Label* fall_through = NULL; local
4224 Label* fall_through = NULL; local
4316 Label* fall_through = NULL; local
4380 Label* fall_through = NULL; local
[all...]
H A Dmacro-assembler-arm64.cc3908 Label* fall_through) {
3909 if ((if_true == if_false) && (if_false == fall_through)) {
3913 } else if (if_false == fall_through) {
3915 } else if (if_true == fall_through) {
3928 Label* fall_through) {
3929 if ((if_all_clear == if_any_set) && (if_any_set == fall_through)) {
3933 } else if (if_all_clear == fall_through) {
3935 } else if (if_any_set == fall_through) {
3903 CompareAndSplit(const Register& lhs, const Operand& rhs, Condition cond, Label* if_true, Label* if_false, Label* fall_through) argument
3924 TestAndSplit(const Register& reg, uint64_t bit_pattern, Label* if_all_clear, Label* if_any_set, Label* fall_through) argument
/external/chromium_org/v8/src/ia32/
H A Dfull-codegen-ia32.cc640 Label* fall_through) {
645 Split(not_zero, if_true, if_false, fall_through);
652 Label* fall_through) {
653 if (if_false == fall_through) {
655 } else if (if_true == fall_through) {
2898 Label* fall_through = NULL; local
2900 &if_true, &if_false, &fall_through);
2904 Split(zero, if_true, if_false, fall_through);
2919 Label* fall_through = NULL; local
2921 &if_true, &if_false, &fall_through);
637 DoTest(Expression* condition, Label* if_true, Label* if_false, Label* fall_through) argument
649 Split(Condition cc, Label* if_true, Label* if_false, Label* fall_through) argument
2940 Label* fall_through = NULL; local
2972 Label* fall_through = NULL; local
2994 Label* fall_through = NULL; local
3019 Label* fall_through = NULL; local
3109 Label* fall_through = NULL; local
3131 Label* fall_through = NULL; local
3159 Label* fall_through = NULL; local
3181 Label* fall_through = NULL; local
3201 Label* fall_through = NULL; local
3237 Label* fall_through = NULL; local
3810 Label* fall_through = NULL; local
4523 Label* fall_through = NULL; local
4603 Label* fall_through = NULL; local
4670 Label* fall_through = NULL; local
[all...]
/external/chromium_org/v8/src/mips/
H A Dfull-codegen-mips.cc684 Label* fall_through) {
689 Split(ne, v0, Operand(at), if_true, if_false, fall_through);
698 Label* fall_through) {
699 if (if_false == fall_through) {
701 } else if (if_true == fall_through) {
2980 Label* fall_through = NULL; local
2982 &if_true, &if_false, &fall_through);
2986 Split(eq, t0, Operand(zero_reg), if_true, if_false, fall_through);
3001 Label* fall_through = NULL; local
3003 &if_true, &if_false, &fall_through);
681 DoTest(Expression* condition, Label* if_true, Label* if_false, Label* fall_through) argument
693 Split(Condition cc, Register lhs, const Operand& rhs, Label* if_true, Label* if_false, Label* fall_through) argument
3022 Label* fall_through = NULL; local
3053 Label* fall_through = NULL; local
3076 Label* fall_through = NULL; local
3101 Label* fall_through = NULL; local
3188 Label* fall_through = NULL; local
3211 Label* fall_through = NULL; local
3241 Label* fall_through = NULL; local
3264 Label* fall_through = NULL; local
3283 Label* fall_through = NULL; local
3319 Label* fall_through = NULL; local
3900 Label* fall_through = NULL; local
4576 Label* fall_through = NULL; local
4658 Label* fall_through = NULL; local
4720 Label* fall_through = NULL; local
[all...]
/external/chromium_org/v8/src/mips64/
H A Dfull-codegen-mips64.cc680 Label* fall_through) {
685 Split(ne, v0, Operand(at), if_true, if_false, fall_through);
694 Label* fall_through) {
695 if (if_false == fall_through) {
697 } else if (if_true == fall_through) {
2979 Label* fall_through = NULL; local
2981 &if_true, &if_false, &fall_through);
2985 Split(eq, a4, Operand(zero_reg), if_true, if_false, fall_through);
3000 Label* fall_through = NULL; local
3002 &if_true, &if_false, &fall_through);
677 DoTest(Expression* condition, Label* if_true, Label* if_false, Label* fall_through) argument
689 Split(Condition cc, Register lhs, const Operand& rhs, Label* if_true, Label* if_false, Label* fall_through) argument
3021 Label* fall_through = NULL; local
3052 Label* fall_through = NULL; local
3075 Label* fall_through = NULL; local
3100 Label* fall_through = NULL; local
3188 Label* fall_through = NULL; local
3211 Label* fall_through = NULL; local
3241 Label* fall_through = NULL; local
3264 Label* fall_through = NULL; local
3283 Label* fall_through = NULL; local
3319 Label* fall_through = NULL; local
3901 Label* fall_through = NULL; local
4577 Label* fall_through = NULL; local
4659 Label* fall_through = NULL; local
4721 Label* fall_through = NULL; local
[all...]
/external/chromium_org/v8/src/x64/
H A Dfull-codegen-x64.cc661 Label* fall_through) {
666 Split(not_zero, if_true, if_false, fall_through);
673 Label* fall_through) {
674 if (if_false == fall_through) {
676 } else if (if_true == fall_through) {
2895 Label* fall_through = NULL; local
2897 &if_true, &if_false, &fall_through);
2916 Label* fall_through = NULL; local
2918 &if_true, &if_false, &fall_through);
2922 Split(non_negative_smi, if_true, if_false, fall_through);
658 DoTest(Expression* condition, Label* if_true, Label* if_false, Label* fall_through) argument
670 Split(Condition cc, Label* if_true, Label* if_false, Label* fall_through) argument
2937 Label* fall_through = NULL; local
2969 Label* fall_through = NULL; local
2991 Label* fall_through = NULL; local
3016 Label* fall_through = NULL; local
3100 Label* fall_through = NULL; local
3122 Label* fall_through = NULL; local
3149 Label* fall_through = NULL; local
3171 Label* fall_through = NULL; local
3191 Label* fall_through = NULL; local
3227 Label* fall_through = NULL; local
3802 Label* fall_through = NULL; local
4533 Label* fall_through = NULL; local
4613 Label* fall_through = NULL; local
4680 Label* fall_through = NULL; local
[all...]
/external/chromium_org/v8/src/x87/
H A Dfull-codegen-x87.cc637 Label* fall_through) {
642 Split(not_zero, if_true, if_false, fall_through);
649 Label* fall_through) {
650 if (if_false == fall_through) {
652 } else if (if_true == fall_through) {
2888 Label* fall_through = NULL; local
2890 &if_true, &if_false, &fall_through);
2894 Split(zero, if_true, if_false, fall_through);
2909 Label* fall_through = NULL; local
2911 &if_true, &if_false, &fall_through);
634 DoTest(Expression* condition, Label* if_true, Label* if_false, Label* fall_through) argument
646 Split(Condition cc, Label* if_true, Label* if_false, Label* fall_through) argument
2930 Label* fall_through = NULL; local
2962 Label* fall_through = NULL; local
2984 Label* fall_through = NULL; local
3009 Label* fall_through = NULL; local
3099 Label* fall_through = NULL; local
3121 Label* fall_through = NULL; local
3149 Label* fall_through = NULL; local
3171 Label* fall_through = NULL; local
3191 Label* fall_through = NULL; local
3227 Label* fall_through = NULL; local
3799 Label* fall_through = NULL; local
4512 Label* fall_through = NULL; local
4592 Label* fall_through = NULL; local
4659 Label* fall_through = NULL; local
[all...]

Completed in 249 milliseconds