Home
last modified time | relevance | path

Searched refs:RSTART (Results 1 – 15 of 15) sorted by relevance

/freebsd/stand/common/
H A Dmerge_help.awk25 T = substr($0, RSTART + 2, RLENGTH - 2);
27 SSTART = RSTART
28 S = (RLENGTH == -1) ? "" : substr($0, RSTART + 2, RLENGTH - 2);
30 D = substr($0, RSTART + 2);
31 if (SSTART > RSTART)
/freebsd/contrib/tzdata/
H A Dzishrink.awk182 line = substr(line, 1, RSTART) substr(line, RSTART + 5)
187 line = substr(line, 1, RSTART) substr(line, RSTART + RLENGTH - 1)
189 line = substr(line, 1, RSTART - 1) substr(line, RSTART + 2)
193 end = RSTART + RLENGTH
197 end = RSTART + RLENGTH
225 line = substr(line, 1, RSTART)
/freebsd/crypto/openssl/util/
H A Dcheck-format-commit.sh130 RSTART=$(echo $k | awk -F',' '{print $1}')
134 let REND=$RSTART+$RLEN
135 range_start+=($RSTART)
152 RSTART=${range_start[$k]}
159 awk -v rstart=$RSTART -v rend=$REND -F':' '
/freebsd/contrib/one-true-awk/bugs-fixed/
H A Drstart-rlength.awk5 print RSTART, RLENGTH
7 print RSTART, RLENGTH
9 print RSTART, RLENGTH
/freebsd/contrib/one-true-awk/testdir/
H A Dt.match12 print $0, RSTART, RLENGTH
5 NR, RLENGTH, RSTART >"/dev/tty"
H A DT.utf124 try match { print match($1, $2), RSTART, RLENGTH }
/freebsd/contrib/one-true-awk/
H A Dawk.h80 extern Awkfloat *RSTART;
H A Dtran.c50 Awkfloat *RSTART; /* start of re matched with ~; origin 1 (!) */ variable
99 RSTART = &rstartloc->fval; in syminit()
H A DFIXES131 Fixed a length error in u8_byte2char that set RSTART to
/freebsd/sys/tools/
H A Dmakeobjops.awk246 extra = substr(line, RSTART + RLENGTH);
/freebsd/sys/dev/bhnd/tools/
H A Dnvram_map_gen.awk2665 _count = substr(str, RSTART+1, RLENGTH-2)
2686 _count = substr(str, RSTART+1, RLENGTH-2)
4052 _attrs = substr($0, RSTART+1, RLENGTH-2)
4055 $0 = substr($0, RSTART+RLENGTH, length($0) - RSTART+RLENGTH)
/freebsd/sys/contrib/openzfs/tests/zfs-tests/include/
H A Dblkdev.shlib528 return substr(s, RSTART, RLENGTH)
/freebsd/usr.sbin/bsdconfig/share/
H A Dsysrc.subr483 matchlen = RSTART + RLENGTH - 1
/freebsd/usr.sbin/bsdconfig/share/media/
H A Dwlan.subr288 value = substr($0, RSTART + RLENGTH)
H A Dtcpip.subr715 h = ( match(hn, /\./) ? substr(hn, 0, RSTART-1) : "" )