| /src/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()
|
| /src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zdb/ |
| H A D | zdb_object_range_pos.ksh | 120 end2=${obj_ids[13]} 122 get_object_list_range $TESTPOOL/$TESTFS $start2 $end2) 123 actual=$(get_object_list $TESTPOOL/$TESTFS $start1:$end1 $start2:$end2) 128 get_object_list $TESTPOOL/$TESTFS $start2 $end2) 129 actual=$(get_object_list $TESTPOOL/$TESTFS $start1:$end1 $start2 $end2) 137 end2_hex=$(printf "0x%x" $end2) 143 objects="$start1 $end1 $start2 $end2"
|
| /src/crypto/openssl/apps/ |
| H A D | storeutl.c | 381 goto end2; in process() 390 goto end2; in process() 395 goto end2; in process() 445 goto end2; in process() 509 end2: in process()
|
| H A D | gendsa.c | 136 goto end2; in gendsa_main() 169 end2: in gendsa_main()
|
| /src/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()
|
| /src/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()
|
| /src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/l2arc/ |
| H A D | l2arc_dwpd_reimport_pos.ksh | 157 end2=$(kstat arcstats.l2_write_bytes) 158 typeset writes_after=$((end2 - baseline2))
|
| /src/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()
|
| /src/usr.bin/mkimg/ |
| H A D | mkimg.c | 414 lba_t start, end, start2, end2; in mkimg_validate() local 429 end2 = part2->block + part2->size; in mkimg_validate() 431 if ((start >= start2 && start < end2) || in mkimg_validate() 432 (end > start2 && end <= end2)) { in mkimg_validate()
|
| /src/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()
|
| /src/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
|
| /src/contrib/netbsd-tests/usr.bin/awk/ |
| H A D | t_awk.sh | 62 h_check end2
|
| /src/sys/geom/label/ |
| H A D | g_label.c | 409 goto end2; in g_label_taste() 434 end2: in g_label_taste()
|
| /src/sys/contrib/openzfs/module/zfs/ |
| H A D | dmu.c | 725 uint64_t start, end, start2, end2; in dmu_prefetch_by_dnode() local 751 end2 = dbuf_whichblock(dn, level, offset + len - 1) + 1; in dmu_prefetch_by_dnode() 755 start2 = end = MIN(end2, start + limit); in dmu_prefetch_by_dnode() 763 end2 = start2; in dmu_prefetch_by_dnode() 767 end2 = P2ROUNDUP(end2, 1 << ibps) >> ibps; in dmu_prefetch_by_dnode() 768 } while (end2 - start2 > limit); in dmu_prefetch_by_dnode() 771 start = start2 = end2 = 0; in dmu_prefetch_by_dnode() 777 for (uint64_t i = start2; i < end2; i++) in dmu_prefetch_by_dnode()
|
| /src/contrib/bmake/ |
| H A D | var.c | 2141 IsEscapedModifierPart(const char *p, char end1, char end2, in IsEscapedModifierPart() argument 2146 if (p[1] == end1 || p[1] == end2 || p[1] == '\\' || p[1] == '$') in IsEscapedModifierPart() 2218 char end2, in ParseModifierPart() argument 2238 while (*p != '\0' && *p != end1 && *p != end2) { in ParseModifierPart() 2239 if (IsEscapedModifierPart(p, end1, end2, subst)) { in ParseModifierPart() 2248 } else if (p[1] == end2) { /* Unescaped '$' at end */ in ParseModifierPart() 2260 if (*p != end1 && *p != end2) { in ParseModifierPart() 2263 (int)(p - *pp), *pp, end2); in ParseModifierPart() 2269 if (end1 == end2) in ParseModifierPart()
|
| /src/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()
|
| /src/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()
|
| /src/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()
|
| /src/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()
|
| /src/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()
|
| /src/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()
|