Searched refs:in_end (Results 1 – 5 of 5) sorted by relevance
/freebsd/sbin/hastd/ |
H A D | lzf.c | 114 const u8 *in_end = ip + in_len; in lzf_compress() local 147 while (ip < in_end - 2) in lzf_compress() 158 && ip + 4 < in_end in lzf_compress() 172 unsigned int maxlen = in_end - ip - len; in lzf_compress() 232 if (expect_false (ip >= in_end - 2)) in lzf_compress() 282 while (ip < in_end) in lzf_compress() 319 u8 const *const in_end = ip + in_len; in lzf_decompress() local 337 if (ip + ctrl > in_end) in lzf_decompress() 359 if (ip >= in_end) in lzf_decompress() 369 if (ip >= in_end) in lzf_decompress() [all...] |
/freebsd/contrib/wpa/src/tls/ |
H A D | tlsv1_client.c | 169 u8 *msg = NULL, *in_msg = NULL, *in_pos, *in_end, alert, ct; in tlsv1_client_handshake() local 238 in_end = in_msg + in_msg_len; in tlsv1_client_handshake() 242 while (in_pos < in_end) { in tlsv1_client_handshake() 243 in_msg_len = in_end - in_pos; in tlsv1_client_handshake() 334 const u8 *in_end, *pos; in tlsv1_client_decrypt() local 356 in_end = in_data + in_len; in tlsv1_client_decrypt() 358 while (pos < in_end) { in tlsv1_client_decrypt() 360 if (wpabuf_resize(&buf, in_end - pos) < 0) { in tlsv1_client_decrypt() 366 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_client_decrypt() 376 partial = wpabuf_alloc_copy(pos, in_end - pos); in tlsv1_client_decrypt()
|
H A D | tlsv1_server.c | 137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; in tlsv1_server_handshake() local 174 in_end = in_msg + in_msg_len; in tlsv1_server_handshake() 178 while (in_pos < in_end) { in tlsv1_server_handshake() 179 in_msg_len = in_end - in_pos; in tlsv1_server_handshake() 264 const u8 *in_end, *pos; in tlsv1_server_decrypt() local 270 in_end = in_data + in_len; in tlsv1_server_decrypt() 274 while (pos < in_end) { in tlsv1_server_decrypt() 277 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_server_decrypt()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTVector.h | 184 void append(const ASTContext &C, in_iter in_start, in_iter in_end) { in append() argument 185 size_type NumInputs = std::distance(in_start, in_end); in append() 197 std::uninitialized_copy(in_start, in_end, this->end()); in append()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | SmallVector.h | 697 void append(ItTy in_start, ItTy in_end) { in append() argument 698 this->assertSafeToAddRange(in_start, in_end); in append() 699 size_type NumInputs = std::distance(in_start, in_end); in append() 701 this->uninitialized_copy(in_start, in_end, this->end()); in append() 738 void assign(ItTy in_start, ItTy in_end) { in assign() argument 739 this->assertSafeToReferenceAfterClear(in_start, in_end); in assign() 741 append(in_start, in_end); in assign()
|