Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_suppressions.cpp128 const char *end2 = end; in Parse() local
129 while (line != end2 && in Parse()
130 (end2[-1] == ' ' || end2[-1] == '\t' || end2[-1] == '\r')) in Parse()
131 end2--; in Parse()
149 s.templ = (char*)InternalAlloc(end2 - line + 1); in Parse()
150 internal_memcpy(s.templ, line, end2 - line); in Parse()
151 s.templ[end2 - line] = 0; in Parse()
H A Dsanitizer_posix.cpp229 uptr start2, uptr end2) { in IntervalsAreSeparate() argument
231 CHECK(start2 <= end2); in IntervalsAreSeparate()
232 return (end1 < start2) || (end2 < start1); in IntervalsAreSeparate()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zdb/
H A Dzdb_object_range_pos.ksh119 end2=${obj_ids[13]}
121 get_object_list_range $TESTPOOL/$TESTFS $start2 $end2)
122 actual=$(get_object_list $TESTPOOL/$TESTFS $start1:$end1 $start2:$end2)
127 get_object_list $TESTPOOL/$TESTFS $start2 $end2)
128 actual=$(get_object_list $TESTPOOL/$TESTFS $start1:$end1 $start2 $end2)
136 end2_hex=$(printf "0x%x" $end2)
142 objects="$start1 $end1 $start2 $end2"
/freebsd/contrib/atf/atf-c/detail/
H A Dlist_test.c241 atf_list_citer_t end1, end2; in ATF_TC_BODY() local
247 end2 = atf_list_end_c(&l2); in ATF_TC_BODY()
249 ATF_CHECK(end1.m_entry != end2.m_entry); in ATF_TC_BODY()
252 ATF_CHECK(atf_list_end_c(&l1).m_entry == end2.m_entry); in ATF_TC_BODY()
/freebsd/crypto/openssl/apps/
H A Dgendsa.c128 goto end2; in gendsa_main()
161 end2: in gendsa_main()
H A Dstoreutl.c369 goto end2; in process()
378 goto end2; in process()
383 goto end2; in process()
491 end2: in process()
/freebsd/contrib/wpa/src/wps/
H A Dhttpread.c103 int end2 = 0; in word_eq() local
112 end2 = !isgraph(c2); in word_eq()
113 if (end1 || end2 || c1 != c2) in word_eq()
116 return end1 && end2; /* reached end of both words? */ in word_eq()
H A Dwps_upnp_ssdp.c43 int end2 = 0; in token_eq() local
52 end2 = !(isalnum(c2) || c2 == '_' || c2 == '-'); in token_eq()
53 if (end1 || end2 || c1 != c2) in token_eq()
56 return end1 && end2; /* reached end of both words? */ in token_eq()
/freebsd/usr.bin/mkimg/
H A Dmkimg.c404 lba_t start, end, start2, end2; in mkimg_validate() local
419 end2 = part2->block + part2->size; in mkimg_validate()
421 if ((start >= start2 && start < end2) || in mkimg_validate()
422 (end > start2 && end <= end2)) { in mkimg_validate()
/freebsd/contrib/llvm-project/lld/ELF/
H A DMarkLive.cpp154 for (size_t j = firstRelI, end2 = rels.size(); in scanEhFrameSection() local
155 j < end2 && rels[j].r_offset < pieceEnd; ++j) in scanEhFrameSection()
H A DSymbols.h513 static Defined *end2; member
H A DSymbols.cpp67 Defined *ElfSym::end2; member in ElfSym
H A DWriter.cpp247 ElfSym::end2 = add("_end", -1); in addReservedSymbols()
1147 if (ElfSym::end2) in setReservedSymbolSections()
1148 ElfSym::end2->section = last->lastSec; in setReservedSymbolSections()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp330 BasicBlock::iterator end2 = Block2->getTerminator()->getIterator(); in CompareIfRegionBlock() local
334 if (iter2 != end2) in CompareIfRegionBlock()
/freebsd/contrib/netbsd-tests/usr.bin/awk/
H A Dt_awk.sh62 h_check end2
/freebsd/sys/geom/label/
H A Dg_label.c409 goto end2; in g_label_taste()
434 end2: in g_label_taste()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddmu.c736 uint64_t start, end, start2, end2; in dmu_prefetch_by_dnode() local
750 end2 = dbuf_whichblock(dn, level, offset + len - 1) + 1; in dmu_prefetch_by_dnode()
754 start2 = end = MIN(end2, start + limit); in dmu_prefetch_by_dnode()
764 end2 = P2ROUNDUP(end2, 1 << ibps) >> ibps; in dmu_prefetch_by_dnode()
765 } while (end2 - start2 > limit); in dmu_prefetch_by_dnode()
768 start = start2 = end2 = 0; in dmu_prefetch_by_dnode()
774 for (uint64_t i = start2; i < end2; i++) in dmu_prefetch_by_dnode()
/freebsd/lib/libc/regex/
H A Dregcomp.c121 static void p_re(struct parse *p, int end1, int end2);
758 int end2) /* second terminating character; ignored for EREs */ in p_re() argument
763 if (end1 == OUT && end2 == OUT) in p_re()
767 #define SEEEND() (!p->bre ? SEE(end1) : SEETWO(end1, end2)) in p_re()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h156 auto end2 = vec2.end(); in GetOverlaps() local
157 while (pos1 != end1 && pos2 != end2) { in GetOverlaps()
/freebsd/contrib/nvi/regex/
H A Dregcomp.c84 static void p_bre(struct parse *p, int end1, int end2, size_t reclimit);
504 int end2, /* second terminating character */ in p_bre() argument
523 while (MORE() && !SEETWO(end1, end2)) { in p_bre()
/freebsd/contrib/wpa/hs20/client/
H A Dosu_client.c2868 const char *pos, *end, *end2; in get_hostname() local
2883 end2 = os_strchr(pos, ':'); in get_hostname()
2884 if ((end && end2 && end2 < end) || (!end && end2)) in get_hostname()
2885 end = end2; in get_hostname()
/freebsd/contrib/bmake/
H A Dvar.c2115 char end1, end2; in ParseModifierPartSubst() local
2121 end2 = whole ? ch->endc : delim; in ParseModifierPartSubst()
2122 while (*p != '\0' && *p != end1 && *p != end2) { in ParseModifierPartSubst()
2145 if (*p != end1 && *p != end2) { in ParseModifierPartSubst()
2147 ch->expr->name, end2); in ParseModifierPartSubst()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Dregcomp.c631 int end2) /* second terminating character */ in p_bre() argument
642 while (MORE() && !SEETWO(end1, end2)) { in p_bre()
/freebsd/contrib/wpa/src/radius/
H A Dradius_server.c1061 char *url2, *end2, *pos2; in radius_server_encapsulate_eap() local
1094 end2 = url2 + url_len + 1; in radius_server_encapsulate_eap()
1097 os_snprintf(pos2, end2 - pos2, MACSTR, MAC2STR(sess->mac_addr)); in radius_server_encapsulate_eap()
/freebsd/sys/kern/
H A Dvfs_subr.c580 size_t end1, end2, off1, off2; in vnode_dtor() local
589 end2 = off2 + sizeof(((struct vnode *)NULL)->v_dbatchcpu); in vnode_dtor()
611 off2 = roundup2(end2, KASAN_SHADOW_SCALE); in vnode_dtor()