Home
last modified time | relevance | path

Searched refs:end (Results 1 – 25 of 5011) sorted by relevance

12345678910>>...201

/freebsd-src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.nested_neg.zcp275 end
277 end
279 end
281 end
283 end
285 end
287 end
289 end
291 end
293 end
[all …]
/freebsd-src/crypto/openssl/crypto/bn/
H A Dbn_sqrt.c33 goto end; in BN_mod_sqrt()
51 goto end; in BN_mod_sqrt()
70 goto end; in BN_mod_sqrt()
75 goto end; in BN_mod_sqrt()
79 goto end; in BN_mod_sqrt()
97 goto end; in BN_mod_sqrt()
100 goto end; in BN_mod_sqrt()
102 goto end; in BN_mod_sqrt()
138 goto end; in BN_mod_sqrt()
142 goto end; in BN_mod_sqrt()
[all …]
/freebsd-src/sys/compat/linuxkpi/common/include/linux/
H A Dkstrtox.h76 char *end; in kstrtoul() local
78 *res = strtoul(cp, &end, base); in kstrtoul()
81 if (*end == '\n') in kstrtoul()
82 end++; in kstrtoul()
83 if (*cp == 0 || *end != 0) in kstrtoul()
91 char *end; in kstrtol() local
93 *res = strtol(cp, &end, base); in kstrtol()
96 if (*end == '\n') in kstrtol()
97 end++; in kstrtol()
98 if (*cp == 0 || *end != 0) in kstrtol()
[all …]
H A Dbitmap.h53 const unsigned int end = BIT_WORD(size); in bitmap_full() local
57 for (i = 0; i != end; i++) { in bitmap_full()
65 if ((addr[end] & mask) != mask) in bitmap_full()
74 const unsigned int end = BIT_WORD(size); in bitmap_empty() local
78 for (i = 0; i != end; i++) { in bitmap_empty()
86 if ((addr[end] & mask) != 0) in bitmap_empty()
145 unsigned int end; in bitmap_find_next_zero_area_off() local
153 end = index + nr; in bitmap_find_next_zero_area_off()
154 if (end > size) in bitmap_find_next_zero_area_off()
155 return (end); in bitmap_find_next_zero_area_off()
[all …]
/freebsd-src/sys/netinet/
H A Dtcp_sack.c166 if (SEQ_LEQ(tp->sackblks[0].end, tp->rcv_nxt)) in tcp_dsack_block_exists()
180 tcp_seq start, end; in tcp_update_dsack_list() local
189 (tp->sackblks[0].end == tp->rcv_nxt))) { in tcp_update_dsack_list()
191 saved_blks[0].end = rcv_end; in tcp_update_dsack_list()
193 saved_blks[0].start = saved_blks[0].end = 0; in tcp_update_dsack_list()
196 head_blk.start = head_blk.end = 0; in tcp_update_dsack_list()
198 mid_blk.end = rcv_end; in tcp_update_dsack_list()
203 end = tp->sackblks[i].end; in tcp_update_dsack_list()
208 if (SEQ_GT(rcv_start, end)) { in tcp_update_dsack_list()
307 tcp_seq end = tp->sackblks[i].end; tcp_update_sack_list() local
423 tcp_seq end = tp->sackblks[i].end; tcp_clean_dsack_blocks() local
465 tcp_sackhole_alloc(struct tcpcb * tp,tcp_seq start,tcp_seq end) tcp_sackhole_alloc() argument
509 tcp_sackhole_insert(struct tcpcb * tp,tcp_seq start,tcp_seq end,struct sackhole * after) tcp_sackhole_insert() argument
[all...]
/freebsd-src/contrib/netbsd-tests/bin/sh/
H A Dt_here.sh187 'x=$(cat << '"${end}${nl}text${nl}${end}${nl}"'); printf %s "$x"' 'text' 0
193 'x=$(cat <<'"'${end}'${nl}text${nl}${end}${nl}"'); printf %s "$x"' 'text' 0
199 'x=$(cat <<'"'${end}'${nl}text${nl}${end%?}${nl}${end}${nl}"'); printf %s "$x"' \
202 'x=$(cat <<'"'${end}'${nl}text${nl}${end#?}${nl}${end}${nl}"'); printf %s "$x"' \
205 'x=$(cat <<'"'${end}'${nl}text${nl}${end%?}+${nl}${end}${nl}"');printf %s "$x"' \
212 'x=$(cat <<'"'${end}'${nl}text${nl}${end}x${nl}${end}${nl}"'); printf %s "$x"' \
213 "text ${end}x" 0
215 'x=$(cat <<'"'${end}'${nl}text${nl}!${end}${nl}${end}${nl}"'); printf %s "$x"' \
216 "text !${end}" 0
220 'x=$(cat <<'"'${end}'${nl}text${nl} ${end}${nl}${end}${nl}"'); printf %s "$x"' \
[all …]
/freebsd-src/stand/kboot/kboot/
H A Dseg.c51 add_avail(uint64_t start, uint64_t end, uint64_t type) in add_avail() argument
58 segs[nr_seg - 1].end + 1 == start && in add_avail()
60 segs[nr_seg - 1].end = end; in add_avail()
70 segs[nr_seg].end = end; in add_avail()
81 remove_avail(uint64_t start, uint64_t end, uint64_t type) in remove_avail() argument
90 if (s->end + 1 == start && in remove_avail()
92 s->end = end; in remove_avail()
95 if (s->end == end) { in remove_avail()
101 s->start = end + 1; in remove_avail()
124 if (s->end == end) { /* (4) */ in remove_avail()
[all …]
/freebsd-src/contrib/expat/lib/
H A Dxmltok_impl.c50 if (end - ptr < n) \
69 # define CHECK_NAME_CASE(n, enc, ptr, end, nextTokPtr) \ argument
71 if (end - ptr < n) \
80 # define CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) \ argument
94 CHECK_NAME_CASE(2, enc, ptr, end, nextTokPtr) \
95 CHECK_NAME_CASE(3, enc, ptr, end, nextTokPtr) \
96 CHECK_NAME_CASE(4, enc, ptr, end, nextTokPtr)
98 # define CHECK_NMSTRT_CASE(n, enc, ptr, end, nextTokPtr) \ argument
100 if ((end) - (ptr) < (n)) \
109 # define CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) \ argument
[all …]
H A Dxmlrole.c123 const char *ptr, const char *end,
141 prolog0(PROLOG_STATE *state, int tok, const char *ptr, const char *end, in prolog0() argument
159 if (! XmlNameMatchesAscii(enc, ptr + 2 * MIN_BYTES_PER_CHAR(enc), end, in prolog0()
172 prolog1(PROLOG_STATE *state, int tok, const char *ptr, const char *end, in prolog1() argument
191 if (! XmlNameMatchesAscii(enc, ptr + 2 * MIN_BYTES_PER_CHAR(enc), end, in prolog1()
204 prolog2(PROLOG_STATE *state, int tok, const char *ptr, const char *end, in prolog2() argument
207 UNUSED_P(end); in prolog2()
224 doctype0(PROLOG_STATE *state, int tok, const char *ptr, const char *end, in doctype0() argument
227 UNUSED_P(end); in doctype0()
241 doctype1(PROLOG_STATE *state, int tok, const char *ptr, const char *end, in doctype1() argument
[all …]
/freebsd-src/crypto/openssl/test/
H A Dsslapitest.c375 goto end; in test_keylog()
379 goto end; in test_keylog()
383 goto end; in test_keylog()
387 goto end; in test_keylog()
397 goto end; in test_keylog()
409 goto end; in test_keylog()
414 goto end; in test_keylog()
418 end: in test_keylog()
456 goto end; in test_keylog_no_master_key()
461 goto end; in test_keylog_no_master_key()
[all...]
H A Dstack_test.c89 goto end; in test_int_stack()
95 goto end; in test_int_stack()
100 goto end; in test_int_stack()
106 goto end; in test_int_stack()
116 goto end; in test_int_stack()
127 goto end; in test_int_stack()
133 goto end; in test_int_stack()
137 goto end; in test_int_stack()
143 goto end; in test_int_stack()
150 goto end; in test_int_stack()
[all …]
H A Dprovider_pkey_test.c34 goto end; in fetch_sig()
40 goto end; in fetch_sig()
44 end: in fetch_sig()
62 goto end; in test_pkey_sig()
67 goto end; in test_pkey_sig()
75 goto end; in test_pkey_sig()
91 goto end; in test_pkey_sig()
99 goto end; in test_pkey_sig()
103 goto end; in test_pkey_sig()
111 end: in test_pkey_sig()
[all …]
H A Ddtlstest.c88 goto end; in test_dtls_unprocessed()
94 goto end; in test_dtls_unprocessed()
99 goto end; in test_dtls_unprocessed()
104 goto end; in test_dtls_unprocessed()
129 goto end; in test_dtls_unprocessed()
133 goto end; in test_dtls_unprocessed()
137 end: in test_dtls_unprocessed()
213 goto end; in test_dtls_drop_records()
217 goto end; in test_dtls_drop_records()
230 goto end; in test_dtls_drop_records()
[all …]
H A Dsslbuffertest.c67 goto end; in test_func()
72 goto end; in test_func()
91 goto end; in test_func()
93 goto end; in test_func()
96 goto end; in test_func()
98 goto end; in test_func()
110 goto end; in test_func()
115 goto end; in test_func()
125 goto end; in test_func()
128 goto end; in test_func()
[all …]
/freebsd-src/usr.sbin/bhyve/amd64/
H A De820.c51 uint64_t end; member
58 e820_element_alloc(uint64_t base, uint64_t end, enum e820_memory_type type) in e820_element_alloc() argument
68 element->end = end; in e820_element_alloc()
102 element->base, element->end, in e820_dump_table()
144 entry->length = element->end - element->base; in e820_get_fwcfg_item()
154 e820_add_entry(const uint64_t base, const uint64_t end, in e820_add_entry() argument
162 assert(end >= base); in e820_add_entry()
164 new_element = e820_element_alloc(base, end, type); in e820_add_entry()
171 * search for a range whose end i in e820_add_entry()
268 e820_add_memory_hole(const uint64_t base,const uint64_t end) e820_add_memory_hole() argument
342 uint64_t address, base, end; e820_alloc_highest() local
376 uint64_t base, end; e820_alloc_lowest() local
[all...]
/freebsd-src/sys/dev/iommu/
H A Diommu_gas.c130 KASSERT(a->start <= a->end, ("inverted entry %p (%jx, %jx)", in iommu_gas_cmp_entries()
131 a, (uintmax_t)a->start, (uintmax_t)a->end)); in iommu_gas_cmp_entries()
132 KASSERT(b->start <= b->end, ("inverted entry %p (%jx, %jx)", in iommu_gas_cmp_entries()
133 b, (uintmax_t)b->start, (uintmax_t)b->end)); in iommu_gas_cmp_entries()
135 a->end <= b->start || b->end <= a->start || in iommu_gas_cmp_entries()
136 a->end == a->start || b->end == b->start, in iommu_gas_cmp_entries()
139 a, (uintmax_t)a->start, (uintmax_t)a->end, a->flags, in iommu_gas_cmp_entries()
140 b, (uintmax_t)b->start, (uintmax_t)b->end, in iommu_gas_cmp_entries()
237 struct iommu_map_entry *begin, *end; iommu_gas_init_domain() local
310 iommu_gas_match_one(struct iommu_gas_match_args * a,iommu_gaddr_t beg,iommu_gaddr_t end,iommu_gaddr_t lbound,iommu_gaddr_t ubound) iommu_gas_match_one() argument
639 iommu_gas_remove_clip_left(struct iommu_domain * domain,iommu_gaddr_t start,iommu_gaddr_t end,struct iommu_map_entry ** r) iommu_gas_remove_clip_left() argument
675 iommu_gas_remove_clip_right(struct iommu_domain * domain,iommu_gaddr_t end,struct iommu_map_entry * entry,struct iommu_map_entry * r) iommu_gas_remove_clip_right() argument
711 iommu_gaddr_t end; iommu_gas_remove_locked() local
887 iommu_gas_reserve_region_locked(struct iommu_domain * domain,iommu_gaddr_t start,iommu_gaddr_t end,struct iommu_map_entry * entry) iommu_gas_reserve_region_locked() argument
903 iommu_gas_reserve_region(struct iommu_domain * domain,iommu_gaddr_t start,iommu_gaddr_t end,struct iommu_map_entry ** entry0) iommu_gas_reserve_region() argument
925 iommu_gas_reserve_region_extend(struct iommu_domain * domain,iommu_gaddr_t start,iommu_gaddr_t end) iommu_gas_reserve_region_extend() argument
[all...]
/freebsd-src/contrib/llvm-project/lldb/source/Symbol/
H A DVariableList.cpp40 variable_list->m_variables.end(), // source end in AddVariables()
64 iterator pos, end = m_variables.end(); in FindVariableIndex() local
65 for (pos = m_variables.begin(); pos != end; ++pos) { in FindVariableIndex()
75 iterator pos, end = m_variables.end(); in FindVariable() local
76 for (pos = m_variables.begin(); pos != end; ++pos) { in FindVariable()
91 iterator pos, end = m_variables.end(); in FindVariable() local
92 for (pos = m_variables.begin(); pos != end; ++pos) { in FindVariable()
105 iterator pos, end = m_variables.end(); in AppendVariablesIfUnique() local
106 for (pos = m_variables.begin(); pos != end; ++pos) in AppendVariablesIfUnique()
115 iterator pos, end = m_variables.end(); in AppendVariablesIfUnique() local
[all …]
/freebsd-src/sys/contrib/openzfs/module/zcommon/
H A Dzfs_namecheck.c184 const char *end; in entity_namecheck() local
214 end = start; in entity_namecheck()
215 while (*end != '/' && *end != '@' && *end != '#' && in entity_namecheck()
216 *end != '\0') in entity_namecheck()
217 end++; in entity_namecheck()
219 if (*end == '\0' && end[-1] == '/') { in entity_namecheck()
227 for (const char *loc = start; loc != end; loc++) { in entity_namecheck()
237 if (*end == '\0' || *end == '/') { in entity_namecheck()
238 int component_length = end - start; in entity_namecheck()
259 if (*end == '@' || *end == '#') { in entity_namecheck()
[all …]
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h80 void SetRangeEnd(BaseType end) { in SetRangeEnd()
81 if (end > base) in SetRangeEnd()
82 size = end - base; in SetRangeEnd()
154 auto end1 = vec1.end(); in GetOverlaps()
156 auto end2 = vec2.end(); in GetOverlaps()
191 auto end = m_entries.end(); in Insert() local
192 auto pos = std::lower_bound(begin, end, entry); in Insert()
194 if (pos != end && pos->Union(entry)) { in Insert()
219 std::stable_sort(m_entries.begin(), m_entries.end()); in Sort()
224 typename Collection::const_iterator pos, end, prev; in IsSorted() local
[all …]
/freebsd-src/contrib/processor-trace/libipt/src/
H A Dpt_event_queue.c69 uint8_t begin, end, gap, idx; in pt_evq_enqueue() local
78 idx = evq->end[evb]; in pt_evq_enqueue()
86 end = pt_evq_inc(idx); in pt_evq_enqueue()
87 gap = pt_evq_inc(end); in pt_evq_enqueue()
93 evq->end[evb] = end; in pt_evq_enqueue()
101 uint8_t begin, end; in pt_evq_dequeue() local
110 end = evq->end[evb]; in pt_evq_dequeue()
115 if (evq_max <= end) in pt_evq_dequeue()
118 if (begin == end) in pt_evq_dequeue()
135 evq->end[evb] = 0; in pt_evq_clear()
[all …]
/freebsd-src/lib/libc/gen/
H A Ddirname.c32 char *end; variable
42 end = path + strlen(path);
43 while (end > path + 1 && *(end - 1) == '/')
44 --end;
47 while (end > path && *(end - 1) != '/')
48 --end;
54 if (end == path) {
64 while (end > path + 1 && *(end - 1) == '/')
65 --end;
68 *end = '\0';
/freebsd-src/tools/debugscripts/
H A Dnetstat-anr.gdb6 end
29 end
40 end
41 end
49 end
51 end
53 end
58 end
61 end
64 end
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAddressRanges.h29 uint64_t end() const { return End; } in end() function
67 return find(Addr, Addr + 1) != Ranges.end(); in contains()
70 return find(Range.start(), Range.end()) != Ranges.end(); in contains()
77 if (It == Ranges.end()) in getRangeThatContains()
84 typename Collection::const_iterator end() const { return Ranges.end(); } in end() function
98 return Ranges.end(); in find()
101 std::partition_point(Ranges.begin(), Ranges.end(), [=](const T &R) { in find()
106 return Ranges.end(); in find()
109 if (End > AddressRange(*It).end()) in find()
110 return Ranges.end(); in find()
[all …]
/freebsd-src/contrib/mandoc/
H A Dmandoc.c19 * Utility functions to handle end of sentence punctuation
95 mandoc_escape(const char ** end,const char ** start,int * sz) mandoc_escape() argument
/freebsd-src/sys/contrib/ncsw/etc/
H A Dmm.c79 p_BusyBlock->end = base + size; in CreateBusyBlock()
118 p_MemBlock->end = base+size; in CreateNewBlock()
151 p_FreeBlock->end = base + size; in CreateFreeBlock()
175 static t_Error AddFree(t_MM *p_MM, uint64_t base, uint64_t end) in AddFree() argument
192 if (alignBase >= end) in AddFree()
198 if ( alignBase <= p_CurrB->end ) in AddFree()
200 if ( end > p_CurrB->end ) in AddFree()
203 while ( p_CurrB->p_Next && end > p_CurrB->p_Next->end ) in AddFree()
211 if ( !p_NextB || (p_NextB && end < p_NextB->base) ) in AddFree()
213 p_CurrB->end = end; in AddFree()
[all …]

12345678910>>...201