Lines Matching refs:byte_stream

34      uint8_t *byte_stream,  in libuna_url_stream_size_from_byte_stream()  argument
42 if( byte_stream == NULL ) in libuna_url_stream_size_from_byte_stream()
87 if( ( byte_stream[ byte_stream_index ] >= (uint8_t) 'A' ) in libuna_url_stream_size_from_byte_stream()
88 && ( byte_stream[ byte_stream_index ] <= (uint8_t) 'I' ) ) in libuna_url_stream_size_from_byte_stream()
92 else if( ( byte_stream[ byte_stream_index ] >= (uint8_t) 'J' ) in libuna_url_stream_size_from_byte_stream()
93 && ( byte_stream[ byte_stream_index ] <= (uint8_t) 'R' ) ) in libuna_url_stream_size_from_byte_stream()
97 else if( ( byte_stream[ byte_stream_index ] >= (uint8_t) 'S' ) in libuna_url_stream_size_from_byte_stream()
98 && ( byte_stream[ byte_stream_index ] <= (uint8_t) 'Z' ) ) in libuna_url_stream_size_from_byte_stream()
105 else if( ( byte_stream[ byte_stream_index ] >= (uint8_t) 'a' ) in libuna_url_stream_size_from_byte_stream()
106 && ( byte_stream[ byte_stream_index ] <= (uint8_t) 'i' ) ) in libuna_url_stream_size_from_byte_stream()
110 else if( ( byte_stream[ byte_stream_index ] >= (uint8_t) 'j' ) in libuna_url_stream_size_from_byte_stream()
111 && ( byte_stream[ byte_stream_index ] <= (uint8_t) 'r' ) ) in libuna_url_stream_size_from_byte_stream()
115 else if( ( byte_stream[ byte_stream_index ] >= (uint8_t) 's' ) in libuna_url_stream_size_from_byte_stream()
116 && ( byte_stream[ byte_stream_index ] <= (uint8_t) 'z' ) ) in libuna_url_stream_size_from_byte_stream()
120 else if( ( byte_stream[ byte_stream_index ] >= (uint8_t) '0' ) in libuna_url_stream_size_from_byte_stream()
121 && ( byte_stream[ byte_stream_index ] <= (uint8_t) '9' ) ) in libuna_url_stream_size_from_byte_stream()
125 else if( ( byte_stream[ byte_stream_index ] == (uint8_t) '-' ) in libuna_url_stream_size_from_byte_stream()
126 || ( byte_stream[ byte_stream_index ] == (uint8_t) '_' ) in libuna_url_stream_size_from_byte_stream()
127 || ( byte_stream[ byte_stream_index ] == (uint8_t) '.' ) in libuna_url_stream_size_from_byte_stream()
128 || ( byte_stream[ byte_stream_index ] == (uint8_t) '`' ) ) in libuna_url_stream_size_from_byte_stream()
147 uint8_t *byte_stream, in libuna_url_stream_copy_from_byte_stream() argument
178 if( byte_stream == NULL ) in libuna_url_stream_copy_from_byte_stream()
221 if( ( byte_stream[ byte_stream_index ] >= (uint8_t) 'A' ) in libuna_url_stream_copy_from_byte_stream()
222 && ( byte_stream[ byte_stream_index ] <= (uint8_t) 'I' ) ) in libuna_url_stream_copy_from_byte_stream()
224 url_stream[ url_stream_index++ ] = byte_stream[ byte_stream_index ]; in libuna_url_stream_copy_from_byte_stream()
226 else if( ( byte_stream[ byte_stream_index ] >= (uint8_t) 'J' ) in libuna_url_stream_copy_from_byte_stream()
227 && ( byte_stream[ byte_stream_index ] <= (uint8_t) 'R' ) ) in libuna_url_stream_copy_from_byte_stream()
229 url_stream[ url_stream_index++ ] = byte_stream[ byte_stream_index ]; in libuna_url_stream_copy_from_byte_stream()
231 else if( ( byte_stream[ byte_stream_index ] >= (uint8_t) 'S' ) in libuna_url_stream_copy_from_byte_stream()
232 && ( byte_stream[ byte_stream_index ] <= (uint8_t) 'Z' ) ) in libuna_url_stream_copy_from_byte_stream()
234 url_stream[ url_stream_index++ ] = byte_stream[ byte_stream_index ]; in libuna_url_stream_copy_from_byte_stream()
239 else if( ( byte_stream[ byte_stream_index ] >= (uint8_t) 'a' ) in libuna_url_stream_copy_from_byte_stream()
240 && ( byte_stream[ byte_stream_index ] <= (uint8_t) 'i' ) ) in libuna_url_stream_copy_from_byte_stream()
242 url_stream[ url_stream_index++ ] = byte_stream[ byte_stream_index ]; in libuna_url_stream_copy_from_byte_stream()
244 else if( ( byte_stream[ byte_stream_index ] >= (uint8_t) 'j' ) in libuna_url_stream_copy_from_byte_stream()
245 && ( byte_stream[ byte_stream_index ] <= (uint8_t) 'r' ) ) in libuna_url_stream_copy_from_byte_stream()
247 url_stream[ url_stream_index++ ] = byte_stream[ byte_stream_index ]; in libuna_url_stream_copy_from_byte_stream()
249 else if( ( byte_stream[ byte_stream_index ] >= (uint8_t) 's' ) in libuna_url_stream_copy_from_byte_stream()
250 && ( byte_stream[ byte_stream_index ] <= (uint8_t) 'z' ) ) in libuna_url_stream_copy_from_byte_stream()
252 url_stream[ url_stream_index++ ] = byte_stream[ byte_stream_index ]; in libuna_url_stream_copy_from_byte_stream()
254 else if( ( byte_stream[ byte_stream_index ] >= (uint8_t) '0' ) in libuna_url_stream_copy_from_byte_stream()
255 && ( byte_stream[ byte_stream_index ] <= (uint8_t) '9' ) ) in libuna_url_stream_copy_from_byte_stream()
257 url_stream[ url_stream_index++ ] = byte_stream[ byte_stream_index ]; in libuna_url_stream_copy_from_byte_stream()
259 else if( ( byte_stream[ byte_stream_index ] == (uint8_t) '-' ) in libuna_url_stream_copy_from_byte_stream()
260 || ( byte_stream[ byte_stream_index ] == (uint8_t) '_' ) in libuna_url_stream_copy_from_byte_stream()
261 || ( byte_stream[ byte_stream_index ] == (uint8_t) '.' ) in libuna_url_stream_copy_from_byte_stream()
262 || ( byte_stream[ byte_stream_index ] == (uint8_t) '`' ) ) in libuna_url_stream_copy_from_byte_stream()
264 url_stream[ url_stream_index++ ] = byte_stream[ byte_stream_index ]; in libuna_url_stream_copy_from_byte_stream()
281 byte_value = byte_stream[ byte_stream_index ] >> 4; in libuna_url_stream_copy_from_byte_stream()
291 byte_value = byte_stream[ byte_stream_index ] & 0x0f; in libuna_url_stream_copy_from_byte_stream()
436 uint8_t *byte_stream, in libuna_url_stream_copy_to_byte_stream() argument
467 if( byte_stream == NULL ) in libuna_url_stream_copy_to_byte_stream()
575 byte_stream[ byte_stream_index++ ] = byte_value; in libuna_url_stream_copy_to_byte_stream()
579 byte_stream[ byte_stream_index++ ] = url_stream[ url_stream_index++ ]; in libuna_url_stream_copy_to_byte_stream()