Home
last modified time | relevance | path

Searched refs:in_end (Results 1 – 6 of 6) sorted by relevance

/external/liblzf/
Dlzf_d.c61 u8 const *const in_end = ip + in_len; in lzf_decompress() local
79 if (ip + ctrl > in_end) in lzf_decompress()
109 if (ip >= in_end) in lzf_decompress()
119 if (ip >= in_end) in lzf_decompress()
181 while (ip < in_end); in lzf_decompress()
Dlzf_c.c111 const u8 *in_end = ip + in_len; in lzf_compress() local
140 while (ip < in_end - 2) in lzf_compress()
164 unsigned int maxlen = in_end - ip - len; in lzf_compress()
225 if (expect_false (ip >= in_end - 2)) in lzf_compress()
275 while (ip < in_end) in lzf_compress()
/external/wpa_supplicant_8/src/tls/
Dtlsv1_server.c112 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; in tlsv1_server_handshake() local
148 in_end = in_msg + in_msg_len; in tlsv1_server_handshake()
152 while (in_pos < in_end) { in tlsv1_server_handshake()
153 in_msg_len = in_end - in_pos; in tlsv1_server_handshake()
237 const u8 *in_end, *pos; in tlsv1_server_decrypt() local
243 in_end = in_data + in_len; in tlsv1_server_decrypt()
247 while (pos < in_end) { in tlsv1_server_decrypt()
250 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_server_decrypt()
Dtlsv1_client.c145 u8 *msg = NULL, *in_msg = NULL, *in_pos, *in_end, alert, ct; in tlsv1_client_handshake() local
214 in_end = in_msg + in_msg_len; in tlsv1_client_handshake()
218 while (in_pos < in_end) { in tlsv1_client_handshake()
219 in_msg_len = in_end - in_pos; in tlsv1_client_handshake()
310 const u8 *in_end, *pos; in tlsv1_client_decrypt() local
332 in_end = in_data + in_len; in tlsv1_client_decrypt()
334 while (pos < in_end) { in tlsv1_client_decrypt()
336 if (wpabuf_resize(&buf, in_end - pos) < 0) { in tlsv1_client_decrypt()
342 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_client_decrypt()
352 partial = wpabuf_alloc_copy(pos, in_end - pos); in tlsv1_client_decrypt()
/external/clang/include/clang/AST/
DASTVector.h181 void append(ASTContext &C, in_iter in_start, in_iter in_end) { in append() argument
182 size_type NumInputs = std::distance(in_start, in_end); in append()
194 std::uninitialized_copy(in_start, in_end, this->end()); in append()
/external/llvm/include/llvm/ADT/
DSmallVector.h445 void append(in_iter in_start, in_iter in_end) { in append() argument
446 size_type NumInputs = std::distance(in_start, in_end); in append()
454 std::uninitialized_copy(in_start, in_end, this->end()); in append()