Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
HDsanitizer_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()
HDsanitizer_posix.cpp229 uptr start2, uptr end2) { in IntervalsAreSeparate() argument
231 CHECK(start2 <= end2); in IntervalsAreSeparate()
232 return (end1 < start2) || (end2 < start1); in IntervalsAreSeparate()
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zdb/
HDzdb_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-13-stable/crypto/openssl/apps/
HDgendsa.c102 goto end2; in gendsa_main()
113 goto end2; in gendsa_main()
134 end2: in gendsa_main()
HDstoreutl.c354 goto end2; in process()
363 goto end2; in process()
368 goto end2; in process()
466 end2: in process()
/freebsd-13-stable/contrib/atf/atf-c/detail/
HDlist_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-13-stable/contrib/wpa/src/wps/
HDhttpread.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()
HDwps_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-13-stable/usr.bin/mkimg/
HDmkimg.c405 lba_t start, end, start2, end2; in mkimg_validate() local
420 end2 = part2->block + part2->size; in mkimg_validate()
422 if ((start >= start2 && start < end2) || in mkimg_validate()
423 (end > start2 && end <= end2)) { in mkimg_validate()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
HDFlattenCFG.cpp330 BasicBlock::iterator end2 = Block2->getTerminator()->getIterator(); in CompareIfRegionBlock() local
334 if (iter2 != end2) in CompareIfRegionBlock()
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
HDMarkLive.cpp160 for (size_t j = firstRelI, end2 = rels.size(); in scanEhFrameSection() local
161 j < end2 && rels[j].r_offset < pieceEnd; ++j) in scanEhFrameSection()
HDSymbols.h531 static Defined *end2; member
HDSymbols.cpp67 Defined *ElfSym::end2; member in ElfSym
HDWriter.cpp243 ElfSym::end2 = add("_end", -1); in addReservedSymbols()
874 if (ElfSym::end2) in setReservedSymbolSections()
875 ElfSym::end2->section = last->lastSec; in setReservedSymbolSections()
/freebsd-13-stable/contrib/netbsd-tests/usr.bin/awk/
HDt_awk.sh62 h_check end2
/freebsd-13-stable/sys/geom/label/
HDg_label.c409 goto end2; in g_label_taste()
434 end2: in g_label_taste()
/freebsd-13-stable/lib/libc/regex/
HDregcomp.c127 static void p_re(struct parse *p, int end1, int end2);
764 int end2) /* second terminating character; ignored for EREs */ in p_re() argument
769 if (end1 == OUT && end2 == OUT) in p_re()
773 #define SEEEND() (!p->bre ? SEE(end1) : SEETWO(end1, end2)) in p_re()
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
HDRangeMap.h156 auto end2 = vec2.end(); in GetOverlaps() local
157 while (pos1 != end1 && pos2 != end2) { in GetOverlaps()
/freebsd-13-stable/contrib/nvi/regex/
HDregcomp.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-13-stable/contrib/wpa/hs20/client/
HDosu_client.c2905 const char *pos, *end, *end2; in get_hostname() local
2920 end2 = os_strchr(pos, ':'); in get_hostname()
2921 if ((end && end2 && end2 < end) || (!end && end2)) in get_hostname()
2922 end = end2; in get_hostname()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
HDregcomp.c631 int end2) /* second terminating character */ in p_bre() argument
642 while (MORE() && !SEETWO(end1, end2)) { in p_bre()
/freebsd-13-stable/contrib/wpa/src/radius/
HDradius_server.c1066 char *url2, *end2, *pos2; in radius_server_encapsulate_eap() local
1099 end2 = url2 + url_len + 1; in radius_server_encapsulate_eap()
1102 os_snprintf(pos2, end2 - pos2, MACSTR, MAC2STR(sess->mac_addr)); in radius_server_encapsulate_eap()
/freebsd-13-stable/sys/kern/
HDvfs_subr.c581 size_t end1, end2, off1, off2; in vnode_dtor() local
590 end2 = off2 + sizeof(((struct vnode *)NULL)->v_dbatchcpu); in vnode_dtor()
612 off2 = roundup2(end2, KASAN_SHADOW_SCALE); in vnode_dtor()