Lines Matching refs:start
116 size_t start;
186 if( buf->start + buf->content_length < buf->capacity )
191 if( buf->start + buf->content_length + input_len
194 overflow = ( buf->start + buf->content_length + input_len )
198 memcpy( buf->buffer + buf->start + buf->content_length, input,
206 memcpy( buf->buffer + buf->start + buf->content_length - buf->capacity,
242 if( buf->start + output_len > buf->capacity )
244 overflow = ( buf->start + output_len ) % buf->capacity;
249 memcpy( output, buf->buffer + buf->start, output_len - overflow );
254 buf->start = ( buf->start + output_len ) % buf->capacity;
1443 session->start = mbedtls_time( NULL ) - 42;
4123 TEST_ASSERT( original.start == restored.start );