Home
last modified time | relevance | path

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

12

/netbsd/src/sys/arch/sparc/stand/ofwboot/
Dboot.c122 const char *start1 = NULL, *end1 = NULL, *start2 = NULL, *end2 = NULL; in bootoptions() local
153 end2 = ap; in bootoptions()
159 if (end2 == start2) { in bootoptions()
160 start2 = end2 = NULL; in bootoptions()
191 memcpy(kernel, start2, (end2 - start2)); in bootoptions()
192 kernel[end2 - start2] = '\0'; in bootoptions()
/netbsd/src/tests/lib/libc/stdlib/
Dt_strtol.c112 char *end, *end2; in ATF_TC_BODY() local
121 uli = strtoul(t[i].str, &end2, t[i].base); in ATF_TC_BODY()
136 if (end != end2) in ATF_TC_BODY()
138 "strtoul(%s, &end, %d)", end2, t[i].str, t[i].base); in ATF_TC_BODY()
/netbsd/src/external/bsd/atf/dist/atf-c/detail/
Dlist_test.c245 atf_list_citer_t end1, end2; in ATF_TC_BODY() local
251 end2 = atf_list_end_c(&l2); in ATF_TC_BODY()
253 ATF_CHECK(end1.m_entry != end2.m_entry); in ATF_TC_BODY()
256 ATF_CHECK(atf_list_end_c(&l1).m_entry == end2.m_entry); in ATF_TC_BODY()
/netbsd/src/crypto/external/bsd/openssl/dist/apps/
Dstoreutl.c369 goto end2; in process()
378 goto end2; in process()
383 goto end2; in process()
491 end2: in process()
Dgendsa.c128 goto end2; in gendsa_main()
161 end2: in gendsa_main()
/netbsd/src/external/bsd/wpa/dist/src/wps/
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()
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()
/netbsd/src/external/lgpl3/gmp/dist/mpn/sparc32/v9/
Dadd_n.asm58 be,pn %icc,L(end2)
120 L(end2):
Dsub_n.asm58 be,pn %icc,L(end2)
120 L(end2):
/netbsd/src/external/lgpl3/gmp/dist/mpn/pa64/
Dsqr_diagonal.asm66 addib,= -1,n,L(end2)
108 LDEF(end2)
Dmul_1.asm425 addib,= -1, n, L(end2)
533 LDEF(end2)
/netbsd/src/sys/arch/ia64/ia64/
Dpmap.c1372 paddr_t vhpt_start = 0, start1, start2, end1, end2; in pmap_steal_vhpt_memory() local
1395 end2 = uvm_physseg_get_avail_end(upm); in pmap_steal_vhpt_memory()
1399 if (start2 > end2) { in pmap_steal_vhpt_memory()
1413 start2 == end2 && in pmap_steal_vhpt_memory()
1431 if (start1 == end1 && start2 == end2) break; in pmap_steal_vhpt_memory()
1442 if (start2 != end2) in pmap_steal_vhpt_memory()
1443 uvm_page_physload(start2, end2, start2, end2, in pmap_steal_vhpt_memory()
/netbsd/src/tests/usr.bin/awk/
Dt_awk.sh62 h_check end2
/netbsd/src/sys/dev/scsipi/
Dscsiconf.c360 goto end2; in scsi_report_luns()
364 goto end2; in scsi_report_luns()
423 end2: in scsi_report_luns()
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dipa-devirt.cc699 bool end1, end2; in compare_virtual_tables() local
702 end2 = !vtable->iterate_reference (n2, ref2); in compare_virtual_tables()
707 while (!end2 in compare_virtual_tables()
735 end2 = !vtable->iterate_reference (n2, ref2); in compare_virtual_tables()
738 && (end2 in compare_virtual_tables()
748 if (end1 && end2) in compare_virtual_tables()
774 if (!end1 && !end2) in compare_virtual_tables()
811 end2 = true; in compare_virtual_tables()
819 if (end1 || end2) in compare_virtual_tables()
Dgimple-ssa-store-merging.cc465 HOST_WIDE_INT start1, start2, start_sub, end_sub, end1, end2, end; in perform_symbolic_merge() local
502 end2 = start2 + (n2->range - 1); in perform_symbolic_merge()
503 if (end1 < end2) in perform_symbolic_merge()
505 end = end2; in perform_symbolic_merge()
506 end_sub = end2 - end1; in perform_symbolic_merge()
511 end_sub = end1 - end2; in perform_symbolic_merge()
513 n_end = (end2 > end1) ? n2 : n1; in perform_symbolic_merge()
Dgenrecog.cc3551 int_set::iterator end2 = trans2->labels.end (); in mutually_exclusive_p() local
3552 while (i1 != end1 && i2 != end2) in mutually_exclusive_p()
3599 int_set::iterator end2 = trans2->labels.end (); in merge_into_decision() local
3603 while (i1 != end1 && i2 != end2) in merge_into_decision()
3622 if (i2 != end2) in merge_into_decision()
/netbsd/src/lib/libc/regex/
Dregcomp.c143 static void p_re(struct parse *p, int end1, int end2);
834 int end2) /* second terminating character; ignored for EREs */ in p_re() argument
839 if (end1 == OUT && end2 == OUT) in p_re()
843 #define SEEEND() (!p->bre ? SEE(end1) : SEETWO(end1, end2)) in p_re()
/netbsd/src/usr.bin/make/
Dvar.c2188 char end2, in ParseModifierPart() argument
2208 while (*p != '\0' && *p != end1 && *p != end2) { in ParseModifierPart()
2209 if (IsEscapedModifierPart(p, end2, subst)) { in ParseModifierPart()
2218 } else if (p[1] == end2) { /* Unescaped '$' at end */ in ParseModifierPart()
2230 if (*p != end1 && *p != end2) { in ParseModifierPart()
2233 (int)(p - *pp), *pp, end2); in ParseModifierPart()
2239 if (end1 == end2) in ParseModifierPart()
/netbsd/src/external/bsd/nvi/dist/regex/
Dregcomp.c92 static void p_bre __P((struct parse *p, int end1, int end2, size_t reclimit));
525 p_bre(struct parse *p, int end1, int end2, size_t reclimit) in p_bre() argument
546 while (MORE() && !SEETWO(end1, end2)) { in p_bre()
/netbsd/src/external/bsd/wpa/dist/src/radius/
Dradius_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()
/netbsd/src/external/gpl3/gcc/dist/gcc/doc/
Dpoly-int.texi356 [@var{begin2}, @var{end2}) using the @code{poly_int} comparisons is:
359 maybe_gt (@var{end1}, @var{begin2}) && maybe_gt (@var{end2}, @var{begin1})
365 !(known_le (@var{end1}, @var{begin2}) || known_le (@var{end2}, @var{begin1}))
/netbsd/src/external/gpl3/gdb/dist/libiberty/
Dregex.c5297 #define AT_STRINGS_END(d) ((d) == end2)
5567 const CHAR_T *end1, *end2; in wcs_re_match_2_internal() local
5818 end2 = string2 + size2; in wcs_re_match_2_internal()
/netbsd/src/external/gpl3/binutils/dist/libiberty/
Dregex.c5297 #define AT_STRINGS_END(d) ((d) == end2)
5567 const CHAR_T *end1, *end2; in wcs_re_match_2_internal() local
5818 end2 = string2 + size2; in wcs_re_match_2_internal()
/netbsd/src/external/gpl3/gcc/dist/libiberty/
Dregex.c5297 #define AT_STRINGS_END(d) ((d) == end2)
5567 const CHAR_T *end1, *end2; in wcs_re_match_2_internal() local
5818 end2 = string2 + size2; in wcs_re_match_2_internal()

12