Searched refs:input_buffer (Results 1 - 12 of 12) sorted by relevance

/freebsd-10.0-release/usr.bin/dtc/
H A Dinput_buffer.hh51 class input_buffer class in namespace:dtc
75 input_buffer(const char* b, int s, int c) : buffer(b), size(s), function in class:dtc::input_buffer
87 virtual ~input_buffer() {};
91 input_buffer() : buffer(0), size(0), cursor(0) {} function in class:dtc::input_buffer
95 input_buffer(const char* b, int s) : buffer(b), size(s), cursor(0){} function in class:dtc::input_buffer
106 input_buffer buffer_from_offset(int offset, int s=0);
141 inline input_buffer &operator++()
227 input_buffer &next_token();
243 inline bool input_buffer::consume_binary(uint8_t &out)
254 * Subclass of input_buffer tha
[all...]
H A Dstring.hh35 #include "input_buffer.hh"
59 static string parse(input_buffer &s);
70 string(input_buffer &s);
76 static string parse_node_name(input_buffer &s);
82 static string parse_property_name(input_buffer &s);
89 static string parse_node_or_property_name(input_buffer &s,
H A Dinput_buffer.cc33 #include "input_buffer.hh"
54 input_buffer::skip_spaces()
74 input_buffer
75 input_buffer::buffer_from_offset(int offset, int s)
83 return input_buffer();
87 return input_buffer();
89 return input_buffer(&buffer[offset], s);
93 input_buffer::consume(const char *str)
116 input_buffer::consume_integer(long long &outInt)
135 input_buffer
[all...]
H A Dfdt.hh249 void parse_string(input_buffer &input);
253 void parse_cells(input_buffer &input);
257 void parse_bytes(input_buffer &input);
266 void parse_reference(input_buffer &input);
270 void parse_define(input_buffer &input, define_map *defines);
277 property(input_buffer &structs, input_buffer &strings);
281 property(input_buffer &input,
302 static property* parse_dtb(input_buffer &structs,
303 input_buffer
[all...]
H A DMakefile4 SRCS= dtc.cc input_buffer.cc string.cc dtb.cc fdt.cc checking.cc
H A Dstring.cc97 string::parse(input_buffer &s)
105 string::string(input_buffer &s) : start((const char*)s), length(0)
114 string::parse_node_name(input_buffer &s)
120 string::parse_property_name(input_buffer &s)
125 string::parse_node_or_property_name(input_buffer &s, bool &is_property)
H A Dfdt.cc217 property::parse_string(input_buffer &input)
239 property::parse_cells(input_buffer &input)
304 property::parse_bytes(input_buffer &input)
331 property::parse_reference(input_buffer &input)
348 property::property(input_buffer &structs, input_buffer &strings)
360 input_buffer name_buffer = strings.buffer_from_offset(name_offset);
385 void property::parse_define(input_buffer &input, define_map *defines)
406 property::property(input_buffer &input,
455 property::parse_dtb(input_buffer
[all...]
H A Ddtb.hh310 bool read_dtb(input_buffer &input);
H A Ddtb.cc259 header::read_dtb(input_buffer &input)
/freebsd-10.0-release/crypto/openssh/
H A Dcompress.c81 * Compresses the contents of input_buffer into output_buffer. All packets
90 buffer_compress(Buffer * input_buffer, Buffer * output_buffer) argument
96 if (buffer_len(input_buffer) == 0)
100 outgoing_stream.next_in = buffer_ptr(input_buffer);
101 outgoing_stream.avail_in = buffer_len(input_buffer);
126 * Uncompresses the contents of input_buffer into output_buffer. All packets
135 buffer_uncompress(Buffer * input_buffer, Buffer * output_buffer) argument
140 incoming_stream.next_in = buffer_ptr(input_buffer);
141 incoming_stream.avail_in = buffer_len(input_buffer);
/freebsd-10.0-release/contrib/binutils/gas/
H A Dapp.c203 static char input_buffer[32 * 1024]; variable
282 assert (saved->saved_input_len <= (int) (sizeof input_buffer));
283 memcpy (input_buffer, saved->saved_input, saved->saved_input_len);
284 saved_input = input_buffer;
404 fromlen = (*get) (input_buffer, sizeof input_buffer), \
405 from = input_buffer, \
440 fromlen = (*get) (input_buffer, sizeof input_buffer);
443 from = input_buffer;
[all...]
/freebsd-10.0-release/contrib/binutils/bfd/
H A Dieee.c3087 unsigned char input_buffer[IBS];
3089 input_ptr_start = input_ptr = input_buffer;
3090 input_ptr_end = input_buffer + IBS;
3084 unsigned char input_buffer[IBS]; local

Completed in 145 milliseconds