Home
last modified time | relevance | path

Searched refs:rindex (Results 1 – 25 of 89) sorted by relevance

1234

/openbsd/gnu/usr.bin/perl/t/op/
H A Dindex.t46 is(rindex("ababa","a",0), 0);
47 is(rindex("ababa","a",1), 0);
48 is(rindex("ababa","a",2), 2);
49 is(rindex("ababa","a",3), 2);
50 is(rindex("ababa","a",4), 4);
51 is(rindex("ababa","a",5), 4);
61 is(rindex("abc", "", 0), 0);
62 is(rindex("abc", "", 1), 1);
63 is(rindex("abc", "", 2), 2);
64 is(rindex("abc", "", 3), 3);
[all …]
H A Dlex_assign.t324 rindex $posstr, 2 # rindex
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dstring-opt-3.c12 extern char *rindex (const char *, int);
73 if (rindex ("hello", 'z') != 0) in main()
91 rindex (const char *s, int c) in rindex() function
/openbsd/gnu/usr.bin/perl/lib/
H A Dutf8.t319 push @i, $s = rindex($a, '6'); # 60
320 push @i, $s = rindex($a, '.', $s); # previous . before 60 is 58
321 push @i, $s = rindex($a, '5'); # 50
322 push @i, $s = rindex($a, '.', $s); # previous . before 52 is 48
323 push @i, $s = rindex($a, '7'); # 70
324 push @i, $s = rindex($a, '.', $s); # previous . before 70 is 68
325 push @i, $s = rindex($a, '4'); # 40
326 push @i, $s = rindex($a, '.', $s); # previous . before 40 is 38
332 push @i, rindex($a, '.', $s); # previous . before 60 is 58
333 push @i, $s = rindex($a, '5'); # 60
[all …]
/openbsd/lib/libsndio/
H A Dsio_aucat.c343 unsigned int i, bps, le, sig, chan, rindex, rmult; in sio_aucat_getcap() local
396 rindex = 0; in sio_aucat_getcap()
402 cap->rate[i] = rates[rindex] * rmult; in sio_aucat_getcap()
404 rindex++; in sio_aucat_getcap()
405 if (rindex == sizeof(rates) / sizeof(unsigned int)) { in sio_aucat_getcap()
406 rindex = 0; in sio_aucat_getcap()
/openbsd/gnu/lib/libiberty/src/
H A Drindex.c18 rindex (const char *s, int c) in rindex() function
H A DMakefile.in150 random.c regex.c rename.c rindex.c \
199 ./random.o ./rename.o ./rindex.o \
910 ./rindex.o: $(srcdir)/rindex.c
912 $(COMPILE.c) $(PICFLAG) $(srcdir)/rindex.c -o pic/$@; \
914 $(COMPILE.c) $(srcdir)/rindex.c $(OUTPUT_OPTION)
/openbsd/lib/libc/string/
H A Dstrrchr.c33 __weak_alias(rindex, strrchr);
/openbsd/lib/libc/arch/i386/string/
H A Dstrrchr.S9 WEAK_ALIAS(rindex, strrchr)
/openbsd/include/
H A Dstrings.h69 char *rindex(const char *, int);
/openbsd/lib/libc/arch/mips64/string/
H A Dstrrchr.S36 WEAK_ALIAS(rindex, strrchr)
/openbsd/gnu/gcc/libcpp/
H A Dsystem.h421 #undef rindex
422 #pragma GCC poison bcopy bzero bcmp rindex
/openbsd/lib/libc/hidden/
H A Dstring.h41 PROTO_DEPRECATED(rindex);
/openbsd/gnu/usr.bin/gcc/gcc/
H A Dsystem.h639 #undef rindex
640 #pragma GCC poison bcopy bzero bcmp rindex
/openbsd/gnu/usr.bin/perl/
H A D.metaconf-exclusions.txt26 rindex
/openbsd/lib/libc/arch/amd64/string/
H A Dstrrchr.S11 WEAK_ALIAS(rindex, strrchr)
/openbsd/sys/lib/libkern/arch/amd64/
H A Dstrrchr.S11 STRONG_ALIAS(rindex, strrchr)
/openbsd/gnu/usr.bin/cvs/diff/
H A Dsystem.h181 # define strrchr rindex
/openbsd/gnu/gcc/gcc/
H A Dsystem.h767 #undef rindex
768 #pragma GCC poison bcopy bzero bcmp rindex
/openbsd/gnu/usr.bin/perl/lib/B/
H A DDeparse.t2929 $c = rindex($a, $b) == 2;
2931 $c = rindex($a, $b) == -1;
2933 $c = rindex($a, $b) != -1;
2935 $c = (rindex($a, $b) == -1);
2937 $c = (rindex($a, $b) != -1);
2943 $c = rindex($a, $b) == 2;
2945 $c = rindex($a, $b) == -1;
2947 $c = rindex($a, $b) != -1;
2949 $c = (rindex($a, $b) == -1);
2951 $c = (rindex($a, $b) != -1);
H A DDeparse-core.t618 rindex 23 p
/openbsd/gnu/usr.bin/cvs/lib/
H A DChangeLog.fsf44 <bradf@wv.MENTORG.COM>); handle index,rindex,bcmp,bzero better
/openbsd/gnu/gcc/libmudflap/
H A Dmf-runtime.h131 #pragma redefine_extname rindex __mfwrap_rindex
/openbsd/gnu/usr.bin/perl/ext/File-Find/t/
H A Dfind.t187 my $i = rindex($n,'/');
199 my $i = rindex($_,'/');
/openbsd/gnu/usr.bin/perl/regen/
H A Dregcomp.pl445 my $len = length($line); my $rindex = rindex($line, "\n");

1234