Searched refs:rindex (Results 1 - 25 of 66) sorted by relevance

123

/illumos-gate/usr/src/cmd/dtrace/test/tst/common/funcs/
H A Dtst.index.d.out11 if (rindex("foobarbaz", "barbaz") != 3) {
12 printf("perl => rindex(\"foobarbaz\", \"barbaz\") = %d\n",
13 rindex("foobarbaz", "barbaz"));
14 printf(" D => rindex(\"foobarbaz\", \"barbaz\") = 3\n");
25 if (rindex("foofoofoo", "foo") != 6) {
26 printf("perl => rindex(\"foofoofoo\", \"foo\") = %d\n",
27 rindex("foofoofoo", "foo"));
28 printf(" D => rindex(\"foofoofoo\", \"foo\") = 6\n");
39 if (rindex("boofoofoo", "foo") != 6) {
40 printf("perl => rindex(\"boofoofo
[all...]
H A Dtst.index.d168 this->result = rindex(command[i].str, command[i].substr);
170 printf("\tif (rindex(\"%s\", \"%s\") != %d) {\n",
172 printf("\t\tprintf(\"perl => rindex(\\\"%s\\\", \\\"%s\\\") = ",
174 printf("%%d\\n\",\n\t\t rindex(\"%s\", \"%s\"));\n",
176 printf("\t\tprintf(\" D => rindex(\\\"%s\\\", \\\"%s\\\") = ",
205 this->result = rindex(command[i].str,
208 printf("\tif (rindex(\"%s\", \"%s\", %d) != %d) {\n", command[i].str,
210 printf("\t\tprintf(\"perl => rindex(\\\"%s\\\", \\\"%s\\\", %d) = ",
212 printf("%%d\\n\",\n\t\t rindex(\"%s\", \"%s\", %d));\n",
214 printf("\t\tprintf(\" D => rindex(\\\"
[all...]
/illumos-gate/usr/src/ucbhead/
H A Dstrings.h58 extern char *rindex(char *, char);
64 extern char *rindex();
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dstrrchr.c36 #undef rindex
38 extern char* rindex(const char*, int);
43 return(rindex(s, c));
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dstrings.h46 char *rindex();
/illumos-gate/usr/src/lib/libc/port/gen/
H A Drindex.c53 rindex(const char *sp, int c) function
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Drindex.c33 rindex(sp, c) function
H A Dttyslot.c62 if ((p = rindex(tp, '/')) == NULL)
/illumos-gate/usr/src/ucblib/libucb/port/gen/
H A Drindex.c53 rindex(char *sp, char c) function
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/safety/
H A Dtst.index.d47 trace(rindex((char *)rand(), (char *)(rand() ^ vtimestamp,
60 trace(rindex((char *)arg0, (char *)arg1));
H A Dtst.shortstr.d71 printf("%d\n", rindex(this->str, this->str1));
/illumos-gate/usr/src/boot/lib/libc/string/
H A Dstrrchr.c31 static char sccsid[] = "@(#)rindex.c 8.1 (Berkeley) 6/4/93";
55 __weak_reference(strrchr, rindex);
/illumos-gate/usr/src/head/
H A Dstrings.h48 extern char *rindex(const char *, int);
/illumos-gate/usr/src/boot/include/
H A Dstrings.h61 char *rindex(const char *, int) __pure; /* LEGACY */
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/privs/
H A Dtst.kpriv.ksh60 CANTREAD2(rindex, "bagnoogle")
61 CANTREAD2ARG1(rindex, "bagnoogle")
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/pragma/
H A Dtst.libdepfullyconnected.ksh77 \$pos = rindex(\$_, "/", \$pos);
/illumos-gate/usr/src/uts/common/crypto/api/
H A Dkcf_random.c102 * Cache of random bytes implemented as a circular buffer. findex and rindex
106 static int findex, rindex; variable
157 findex = rindex = 0;
545 rindex = findex = (findex + 1) &
1004 rndpool[rindex] ^= *ptr;
1006 rindex = (rindex + 1) & (RNDPOOLSIZE - 1);
1012 rndpool[rindex] ^= *ptr;
1014 findex = rindex = (rindex
[all...]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.subr.d90 INTFUNC(rindex("The SystemTap, The.", "The"))
/illumos-gate/usr/src/lib/krb5/ss/
H A Dmk_cmds.c70 q = rindex(path, '/');
/illumos-gate/usr/src/cmd/bnu/
H A Dulockf.c80 cp = rindex(name, '/');
197 cp = rindex(name, '/');
/illumos-gate/usr/src/cmd/fs.d/ufs/quotaon/
H A Dquotaon.c54 #define rindex(s, r) strrchr(s, r) macro
104 whoami = (char *)rindex(*argv, '/') + 1;
/illumos-gate/usr/src/cmd/ttymon/
H A Dulockf.c79 cp = rindex(name, '/');
196 cp = rindex(name, '/');
H A Duucp.h487 #define rindex strrchr macro
493 #define strrchr rindex
508 extern char *index(), *rindex(), *getlogin(), *ttyname(); /*, *malloc();
/illumos-gate/usr/src/ucblib/libucb/
H A DMakefile.com66 rindex.o \
/illumos-gate/usr/src/lib/libast/common/include/
H A Dast_std.h319 #define strrchr(s,c) rindex(s,c)

Completed in 57 milliseconds

123