/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_suppressions.cpp | 128 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 D | sanitizer_posix.cpp | 229 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 D | zdb_object_range_pos.ksh | 119 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 D | list_test.c | 241 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 D | storeutl.c | 369 goto end2; in process() 378 goto end2; in process() 383 goto end2; in process() 491 end2: in process()
|
H A D | gendsa.c | 128 goto end2; in gendsa_main() 161 end2: in gendsa_main()
|
/freebsd/sys/compat/linuxkpi/common/src/ |
H A D | linux_aperture.c | 145 resource_size_t base2, resource_size_t end2) in overlap() argument 147 return (base1 < end2) && (end1 > base2); in overlap()
|
/freebsd/contrib/wpa/src/wps/ |
H A D | httpread.c | 103 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 D | wps_upnp_ssdp.c | 43 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 D | mkimg.c | 404 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/llvm/lib/Transforms/Utils/ |
H A D | FlattenCFG.cpp | 330 BasicBlock::iterator end2 = Block2->getTerminator()->getIterator(); in CompareIfRegionBlock() local 334 if (iter2 != end2) in CompareIfRegionBlock()
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | MarkLive.cpp | 160 for (size_t j = firstRelI, end2 = rels.size(); in scanEhFrameSection() local 161 j < end2 && rels[j].r_offset < pieceEnd; ++j) in scanEhFrameSection()
|
H A D | Symbols.h | 531 static Defined *end2; member
|
H A D | Symbols.cpp | 67 Defined *ElfSym::end2; member in ElfSym
|
H A D | Writer.cpp | 243 ElfSym::end2 = add("_end", -1); in addReservedSymbols() 874 if (ElfSym::end2) in setReservedSymbolSections() 875 ElfSym::end2->section = last->lastSec; in setReservedSymbolSections()
|
/freebsd/contrib/netbsd-tests/usr.bin/awk/ |
H A D | t_awk.sh | 62 h_check end2
|
/freebsd/sys/geom/label/ |
H A D | g_label.c | 409 goto end2; in g_label_taste() 434 end2: in g_label_taste()
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | dmu.c | 747 uint64_t start, end, start2, end2; in dmu_prefetch_by_dnode() local 761 end2 = dbuf_whichblock(dn, level, offset + len - 1) + 1; in dmu_prefetch_by_dnode() 765 start2 = end = MIN(end2, start + limit); in dmu_prefetch_by_dnode() 775 end2 = P2ROUNDUP(end2, 1 << ibps) >> ibps; in dmu_prefetch_by_dnode() 776 } while (end2 - start2 > limit); in dmu_prefetch_by_dnode() 779 start = start2 = end2 = 0; in dmu_prefetch_by_dnode() 785 for (uint64_t i = start2; i < end2; i++) in dmu_prefetch_by_dnode()
|
/freebsd/lib/libc/regex/ |
H A D | regcomp.c | 121 static void p_re(struct parse *p, int end1, int end2); 773 int end2) /* second terminating character; ignored for EREs */ in p_re() argument 778 if (end1 == OUT && end2 == OUT) in p_re() 782 #define SEEEND() (!p->bre ? SEE(end1) : SEETWO(end1, end2)) in p_re()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | RangeMap.h | 156 auto end2 = vec2.end(); in GetOverlaps() local 157 while (pos1 != end1 && pos2 != end2) { in GetOverlaps()
|
/freebsd/contrib/bmake/ |
H A D | var.c | 2199 char end2, in ParseModifierPart() argument 2219 while (*p != '\0' && *p != end1 && *p != end2) { in ParseModifierPart() 2220 if (IsEscapedModifierPart(p, end2, subst)) { in ParseModifierPart() 2229 } else if (p[1] == end2) { /* Unescaped '$' at end */ in ParseModifierPart() 2242 if (*p != end1 && *p != end2) { in ParseModifierPart() 2244 "Unfinished modifier ('%c' missing)", end2); in ParseModifierPart() 2248 if (end1 == end2) in ParseModifierPart()
|
/freebsd/contrib/nvi/regex/ |
H A D | regcomp.c | 84 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 D | osu_client.c | 2905 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/contrib/llvm-project/llvm/lib/Support/ |
H A D | regcomp.c | 631 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 D | radius_server.c | 1066 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()
|