Searched refs:little (Results 1 - 9 of 9) sorted by relevance

/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/src/
H A Dstrstr.c42 PL_strstr(const char *big, const char *little) argument
44 if( ((const char *)0 == big) || ((const char *)0 == little) ) return (char *)0;
45 if( ((char)0 == *big) || ((char)0 == *little) ) return (char *)0;
47 return strstr(big, little);
51 PL_strrstr(const char *big, const char *little) argument
57 if( ((const char *)0 == big) || ((const char *)0 == little) ) return (char *)0;
58 if( ((char)0 == *big) || ((char)0 == *little) ) return (char *)0;
60 ll = strlen(little);
66 if( *little == *p )
67 if( 0 == strncmp(p, little, l
74 PL_strnstr(const char *big, const char *little, PRUint32 max) argument
95 PL_strnrstr(const char *big, const char *little, PRUint32 max) argument
[all...]
H A Dstrcstr.c41 PL_strcasestr(const char *big, const char *little) argument
45 if( ((const char *)0 == big) || ((const char *)0 == little) ) return (char *)0;
46 if( ((char)0 == *big) || ((char)0 == *little) ) return (char *)0;
48 ll = PL_strlen(little);
52 if( 0 == PL_strncasecmp(big, little, ll) )
59 PL_strcaserstr(const char *big, const char *little) argument
64 if( ((const char *)0 == big) || ((const char *)0 == little) ) return (char *)0;
65 if( ((char)0 == *big) || ((char)0 == *little) ) return (char *)0;
67 ll = PL_strlen(little);
73 if( 0 == PL_strncasecmp(p, little, l
80 PL_strncasestr(const char *big, const char *little, PRUint32 max) argument
101 PL_strncaserstr(const char *big, const char *little, PRUint32 max) argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/include/
H A Dplstr.h394 * Returns a pointer to the first instance of the little string within the
399 PL_strstr(const char *big, const char *little);
404 * Returns a pointer to the last instance of the little string within the big one.
409 PL_strrstr(const char *big, const char *little);
414 * Returns a pointer to the first instance of the little string within the first
416 * returns null if the length of the little string is greater than n.
420 PL_strnstr(const char *big, const char *little, PRUint32 n);
425 * Returns a pointer to the last instance of the little string within the first
427 * returns null if the length of the little string is greater than n.
431 PL_strnrstr(const char *big, const char *little, PRUint3
[all...]
/vbox/src/libs/xpcom18a4/xpcom/string/src/
H A DnsStringObsolete.cpp707 const R* little, PRUint32 littleLen,
716 if (nsBufferRoutines<L>::compare(big, little, littleLen, ignoreCase) == 0)
729 const R* little, PRUint32 littleLen,
740 if (nsBufferRoutines<L>::compare(iter, little, littleLen, ignoreCase) == 0)
706 FindSubstring( const L* big, PRUint32 bigLen, const R* little, PRUint32 littleLen, PRBool ignoreCase ) argument
728 RFindSubstring( const L* big, PRUint32 bigLen, const R* little, PRUint32 littleLen, PRBool ignoreCase ) argument
/vbox/src/VBox/RDP/client-1.8.3/
H A Dconfig.sub803 ppcle | powerpclittle | ppc-le | powerpc-little)
813 ppc64le | powerpc64little | ppc64-le | powerpc64-little)
/vbox/src/libs/libxml2-2.6.31/
H A Dconfig.sub864 ppcle | powerpclittle | ppc-le | powerpc-little)
874 ppc64le | powerpc64little | ppc64-le | powerpc64-little)
/vbox/src/VBox/VMM/VMMR0/
H A DHMR0A.asm319 ; value, so there is little problem with interrupts being enabled prior to
1139 ; @remarks This is essentially the same code as HMR0SVMRunWrapXMM, only the parameters differ a little bit.
1267 ; @remarks This is essentially the same code as HMR0VMXStartVMWrapXMM, only the parameters differ a little bit.
/vbox/src/VBox/Devices/Audio/
H A DDevIchAc97.cpp405 # error Please adapt the code (audio buffers are little endian)!
/vbox/src/VBox/Devices/PC/BIOS/
H A Dorgs.asm611 ;; register and memory state as little as possible.

Completed in 67 milliseconds