Searched defs:little (Results 1 - 5 of 5) sorted by relevance
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/x2p/ |
H A D | util.c | 134 /* return ptr to little string in big string, NULL if not found */ 137 instr(char *big, char *little) argument 142 for (x=t,s=little; *s; x++,s++) {
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | pp.c | 3144 SV *little; local 3156 little = POPs; 3166 (unsigned char*)tmps + biglen, little, 0))) 3180 SV *little; local 3191 little = POPs; 3193 tmps2 = SvPV(little, llen);
|
H A D | regexec.c | 1972 char *little = SvPV(float_real, len); local 1975 if (memEQ(strend - len + 1, little, len - 1)) 1978 last = memEQ(strend - len, little, len) 1985 last = rninstr(s, strend, little, little + len); 2246 * maybe save a little bit of pushing and popping on the stack. It also takes
|
H A D | util.c | 246 /* return ptr to little string in big string, NULL if not found */ 250 Perl_instr(pTHX_ register const char *big, register const char *little) argument 255 if (!little) 257 first = *little++; 263 for (x=big,s=little; *s; /**/ ) { 280 Perl_ninstr(pTHX_ register const char *big, register const char *bigend, const char *little, const char *lend) argument 283 register I32 first = *little; 286 if (!first && little >= littleend) 288 if (bigend - big < littleend - little) 290 bigend -= littleend - little 309 Perl_rninstr(pTHX_ register const char *big, const char *bigend, const char *little, const char *lend) argument 434 register unsigned char *little = (unsigned char *)SvPV(littlestr,l); local 633 register unsigned char *little; local [all...] |
H A D | sv.c | 4954 Perl_sv_insert(pTHX_ SV *bigstr, STRLEN offset, STRLEN len, char *little, STRLEN littlelen) argument 4984 Move(little,big+offset,littlelen,char); 4990 Move(little,SvPVX(bigstr)+offset,len,char); 5005 Move(little, mid, littlelen,char); 5025 Move(little, mid, littlelen,char); 5030 Move(little,midend,littlelen,char); 11055 * (A little debugging with a watchpoint on it may help.)
|
Completed in 291 milliseconds