Home
last modified time | relevance | path

Searched refs:new_out (Results 1 – 8 of 8) sorted by relevance

/netbsd/src/external/bsd/elftosb/dist/elftosb2/
DFlexLexer.h78 int yylex( FLEX_STD istream* new_in, FLEX_STD ostream* new_out = 0 )
80 switch_streams( new_in, new_out );
87 FLEX_STD ostream* new_out = 0 ) = 0;
131 virtual void switch_streams( FLEX_STD istream* new_in, FLEX_STD ostream* new_out = 0 );
Delftosb_lexer.cpp1420 void yyFlexLexer::switch_streams( std::istream* new_in, std::ostream* new_out ) in switch_streams() argument
1428 if ( new_out ) in switch_streams()
1429 yyout = new_out; in switch_streams()
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dgensupport.cc1712 char *new_out, *cp; in alter_output_for_subst_insn() local
1728 new_out = XNEWVEC (char, new_len); in alter_output_for_subst_insn()
1729 new_out[0] = '@'; in alter_output_for_subst_insn()
1731 for (j = 0, cp = new_out + 1; j < alt; j++, cp += old_len + 1) in alter_output_for_subst_insn()
1737 return new_out; in alter_output_for_subst_insn()
/netbsd/src/external/bsd/flex/dist/
DONEWS68 - The FlexLexer::yylex(istream* new_in, ostream* new_out) method
375 ostream* new_out = 0 )
377 reassigns yyin to new_in (if non-nil) and yyout to new_out
381 int yylex( istream* new_in = 0, ostream* new_out = 0 )
DChangeLog8117 * FlexLexer.h: remove first default for yylex(new_in, new_out)
/netbsd/src/external/gpl3/gcc/dist/gcc/config/arm/
Darm.cc31168 arm_split_atomic_op (enum rtx_code code, rtx old_out, rtx new_out, rtx mem, in arm_split_atomic_op() argument
31195 if (new_out) in arm_split_atomic_op()
31196 new_out = gen_lowpart (wmode, new_out); in arm_split_atomic_op()
31200 old_out = new_out; in arm_split_atomic_op()
31208 gcc_assert (!new_out || REG_P (new_out)); in arm_split_atomic_op()
31210 && new_out && REGNO_REG_CLASS (REGNO (new_out)) == LO_REGS in arm_split_atomic_op()
31223 emit_move_insn (new_out, old_out); in arm_split_atomic_op()
31224 old_out = new_out; in arm_split_atomic_op()
31230 new_out = value; in arm_split_atomic_op()
31235 emit_insn (gen_rtx_SET (new_out, x)); in arm_split_atomic_op()
[all …]
/netbsd/src/external/bsd/flex/dist/doc/
Dflex.texi3828 @item virtual void switch_streams(istream* new_in = 0, ostream* new_out = 0)
3829 @item virtual void switch_streams(istream& new_in, ostream& new_out)
3831 @code{new_out} (if non-null), deleting the previous input buffer if
3834 @item int yylex( istream* new_in, ostream* new_out = 0 )
3835 @item int yylex( istream& new_in, ostream& new_out )
3837 new_out )} and then returns the value of @code{yylex()}.
Dflex.info-12973 'virtual void switch_streams(istream* new_in = 0, ostream* new_out = 0)'
2974 'virtual void switch_streams(istream& new_in, ostream& new_out)'
2975 reassigns 'yyin' to 'new_in' (if non-null) and 'yyout' to 'new_out'
2979 'int yylex( istream* new_in, ostream* new_out = 0 )'
2980 'int yylex( istream& new_in, ostream& new_out )'
2982 new_out )' and then returns the value of 'yylex()'.