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

/freebsd-12-stable/sbin/hastd/
H A Dlzf.c114 const u8 *in_end = ip + in_len; local
147 while (ip < in_end - 2)
158 && ip + 4 < in_end
172 unsigned int maxlen = in_end - ip - len;
232 if (expect_false (ip >= in_end - 2))
282 while (ip < in_end)
319 u8 const *const in_end = ip + in_len; local
337 if (ip + ctrl > in_end)
359 if (ip >= in_end)
369 if (ip >= in_end)
[all...]
/freebsd-12-stable/contrib/wpa/src/tls/
H A Dtlsv1_client.c145 u8 *msg = NULL, *in_msg = NULL, *in_pos, *in_end, alert, ct; local
214 in_end = in_msg + in_msg_len;
218 while (in_pos < in_end) {
219 in_msg_len = in_end - in_pos;
310 const u8 *in_end, *pos; local
332 in_end = in_data + in_len;
334 while (pos < in_end) {
336 if (wpabuf_resize(&buf, in_end - pos) < 0) {
342 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos,
352 partial = wpabuf_alloc_copy(pos, in_end
[all...]
H A Dtlsv1_server.c137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; local
174 in_end = in_msg + in_msg_len;
178 while (in_pos < in_end) {
179 in_msg_len = in_end - in_pos;
264 const u8 *in_end, *pos; local
270 in_end = in_data + in_len;
274 while (pos < in_end) {
277 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos,
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTVector.h184 void append(const ASTContext &C, in_iter in_start, in_iter in_end) { argument
185 size_type NumInputs = std::distance(in_start, in_end);
197 std::uninitialized_copy(in_start, in_end, this->end());
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallVector.h387 void append(in_iter in_start, in_iter in_end) { argument
388 size_type NumInputs = std::distance(in_start, in_end);
392 this->uninitialized_copy(in_start, in_end, this->end());
424 void assign(in_iter in_start, in_iter in_end) { argument
426 append(in_start, in_end);
/freebsd-12-stable/contrib/gdb/gdb/
H A Dregcache.c648 int in_end = in_start + in_len; local
668 if (reg_end <= in_start || in_end <= reg_start)
697 /* end = min (reg_end, in_end) */
698 if (reg_end < in_end)
701 end = in_end;

Completed in 184 milliseconds