Home
last modified time | relevance | path

Searched refs:pKey1 (Results 1 – 4 of 4) sorted by relevance

/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dhash.c74 static int intCompare(const void *pKey1, int n1, const void *pKey2, int n2){ in intCompare() argument
86 static int ptrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
87 if( pKey1==pKey2 ) return 0;
88 if( pKey1<pKey2 ) return -1;
99 static int strCompare(const void *pKey1, int n1, const void *pKey2, int n2){ in strCompare() argument
101 return sqliteStrNICmp((const char*)pKey1,(const char*)pKey2,n1); in strCompare()
115 static int binCompare(const void *pKey1, int n1, const void *pKey2, int n2){ in binCompare() argument
117 return memcmp(pKey1,pKey2,n1); in binCompare()
H A Dbtree_rb.c182 static int key_compare(void const*pKey1, int nKey1, void const*pKey2, int nKey2) in key_compare() argument
184 int mcmp = memcmp(pKey1, pKey2, (nKey1 <= nKey2)?nKey1:nKey2); in key_compare()
/PHP-5.3/sapi/litespeed/
H A Dlsapi_main.c213 register char * pKey1 = (char *)pKey; in add_variable() local
220 …zend_symtable_update( symtable1, pKey1, keyLen + 1, &gpc_element, sizeof( zval *), (void **) &gpc_… in add_variable()
222 …zend_hash_update( symtable1, pKey1, keyLen + 1, &gpc_element, sizeof( zval *), (void **) &gpc_elem… in add_variable()
234 register char * pKey1 = (char *)pKey; in add_variable_magic_quote() local
241 …zend_symtable_update( symtable1, pKey1, keyLen + 1, &gpc_element, sizeof( zval *), (void **) &gpc_… in add_variable_magic_quote()
243 …zend_hash_update( symtable1, pKey1, keyLen + 1, &gpc_element, sizeof( zval *), (void **) &gpc_elem… in add_variable_magic_quote()
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c60496 int nKey1, const void *pKey1, /* Left key */
60505 const unsigned char *aKey1 = (const unsigned char *)pKey1;
108506 int nKey1, const void *pKey1,
108511 rc = memcmp(pKey1, pKey2, n);
108514 && allSpaces(((char*)pKey1)+n, nKey1-n)
108536 int nKey1, const void *pKey1,
108540 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
117979 static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
117981 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
117995 static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){
[all …]

Completed in 304 milliseconds