Home
last modified time | relevance | path

Searched refs:in_end (Results 1 – 10 of 10) 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.c116 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; in tlsv1_server_handshake() local
143 in_end = in_msg + in_msg_len; in tlsv1_server_handshake()
147 while (in_pos < in_end) { in tlsv1_server_handshake()
148 in_msg_len = in_end - in_pos; in tlsv1_server_handshake()
234 const u8 *in_end, *pos; in tlsv1_server_decrypt() local
240 in_end = in_data + in_len; in tlsv1_server_decrypt()
244 while (pos < in_end) { in tlsv1_server_decrypt()
254 res = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_server_decrypt()
Dtlsv1_client.c137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; in tlsv1_client_handshake() local
169 in_end = in_msg + in_msg_len; in tlsv1_client_handshake()
173 while (in_pos < in_end) { in tlsv1_client_handshake()
174 in_msg_len = in_end - in_pos; in tlsv1_client_handshake()
260 const u8 *in_end, *pos; in tlsv1_client_decrypt() local
266 in_end = in_data + in_len; in tlsv1_client_decrypt()
270 while (pos < in_end) { in tlsv1_client_decrypt()
280 res = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_client_decrypt()
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
Dtlsv1_server.c116 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; in tlsv1_server_handshake() local
143 in_end = in_msg + in_msg_len; in tlsv1_server_handshake()
147 while (in_pos < in_end) { in tlsv1_server_handshake()
148 in_msg_len = in_end - in_pos; in tlsv1_server_handshake()
234 const u8 *in_end, *pos; in tlsv1_server_decrypt() local
240 in_end = in_data + in_len; in tlsv1_server_decrypt()
244 while (pos < in_end) { in tlsv1_server_decrypt()
254 res = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_server_decrypt()
Dtlsv1_client.c137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; in tlsv1_client_handshake() local
169 in_end = in_msg + in_msg_len; in tlsv1_client_handshake()
173 while (in_pos < in_end) { in tlsv1_client_handshake()
174 in_msg_len = in_end - in_pos; in tlsv1_client_handshake()
260 const u8 *in_end, *pos; in tlsv1_client_decrypt() local
266 in_end = in_data + in_len; in tlsv1_client_decrypt()
270 while (pos < in_end) { in tlsv1_client_decrypt()
280 res = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_client_decrypt()
/external/clang/include/clang/AST/
DASTVector.h177 void append(ASTContext &C, in_iter in_start, in_iter in_end) { in append() argument
178 size_type NumInputs = std::distance(in_start, in_end); in append()
190 std::uninitialized_copy(in_start, in_end, this->end()); in append()
/external/bluetooth/glib/glib/
Dgconvert.c1622 const gchar *in, *in_end; in g_unescape_uri_string() local
1635 for (in = escaped, in_end = escaped + len; in < in_end; in++) in g_unescape_uri_string()
1642 if (in + 3 > in_end) in g_unescape_uri_string()
1668 if (in != in_end) in g_unescape_uri_string()
/external/wpa_supplicant/
Dtlsv1_client.c1828 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; in tlsv1_client_handshake() local
1859 in_end = in_msg + in_msg_len; in tlsv1_client_handshake()
1863 while (in_pos < in_end) { in tlsv1_client_handshake()
1864 in_msg_len = in_end - in_pos; in tlsv1_client_handshake()
1962 const u8 *in_end, *pos; in tlsv1_client_decrypt() local
1968 in_end = in_data + in_len; in tlsv1_client_decrypt()
1972 while (pos < in_end) { in tlsv1_client_decrypt()
1982 res = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_client_decrypt()
/external/llvm/include/llvm/ADT/
DSmallVector.h349 void append(in_iter in_start, in_iter in_end) { in append() argument
350 size_type NumInputs = std::distance(in_start, in_end); in append()
358 std::uninitialized_copy(in_start, in_end, this->end()); in append()