Lines Matching refs:from
31 const char* from, in do_length() argument
34 { return (int)(min) ( __STATIC_CAST(size_t, (end - from)), mx); } in do_length()
84 const intern_type* from, in do_out() argument
90 ptrdiff_t len = (min) (from_end - from, to_limit - to); in do_out()
91 copy(from, from + len, to); in do_out()
92 from_next = from + len; in do_out()
99 const extern_type* from, in do_in() argument
105 ptrdiff_t len = (min) (from_end - from, to_limit - to); in do_in()
106 copy(__REINTERPRET_CAST(const unsigned char*, from), in do_in()
107 __REINTERPRET_CAST(const unsigned char*, from) + len, to); in do_in()
108 from_next = from + len; in do_in()
129 const extern_type* from, in do_length() argument
132 { return (int)(min) ((size_t) (end - from), mx); } in do_length()