Home
last modified time | relevance | path

Searched refs:hName (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/test/
Dtime_hashlib.py42 hName = sys.argv[1] variable
47 if hName in ('_md5', '_sha'):
48 exec('import '+hName)
49 exec('creatorFunc = '+hName+'.new')
50 print("testing speed of old", hName, "legacy interface")
51 elif hName == '_hashlib' and len(sys.argv) > 3:
55 elif hName == '_hashlib' and len(sys.argv) == 3:
59 elif hasattr(hashlib, hName) and hasattr(getattr(hashlib, hName), '__call__'):
60 creatorFunc = getattr(hashlib, hName)
61 print("testing speed of hashlib."+hName, getattr(hashlib, hName))
[all …]
/external/python/cpython2/Lib/test/
Dtime_hashlib.py41 hName = sys.argv[1] variable
46 if hName in ('_md5', '_sha'):
47 exec 'import '+hName
48 exec 'creatorFunc = '+hName+'.new'
49 print "testing speed of old", hName, "legacy interface"
50 elif hName == '_hashlib' and len(sys.argv) > 3:
54 elif hName == '_hashlib' and len(sys.argv) == 3:
58 elif hasattr(hashlib, hName) and callable(getattr(hashlib, hName)):
59 creatorFunc = getattr(hashlib, hName)
60 print "testing speed of hashlib."+hName, getattr(hashlib, hName)
[all …]
/external/nist-sip/java/gov/nist/javax/sip/header/
DExtensionHeaderList.java53 public ExtensionHeaderList(String hName) { in ExtensionHeaderList() argument
54 super( ExtensionHeaderImpl.class, hName); in ExtensionHeaderList()
/external/rust/crates/libsqlite3-sys/sqlite3/
Dsqlite3.c17341 u8 hName; /* Column name hash for faster lookup */ member
98095 if( pCol->hName==hCol && sqlite3StrICmp(pCol->zName, zCol)==0 ){
98160 if( pCol->hName==hCol && sqlite3StrICmp(pCol->zName, zCol)==0 ){
106289 pCol->hName = sqlite3StrIHash(pCol->zName);
111033 assert( pCol->zName==0 || pCol->hName==sqlite3StrIHash(pCol->zName) );
111683 pCol->hName = sqlite3StrIHash(z);
129569 if( pCol->hName==h && sqlite3StrICmp(pCol->zName, zCol)==0 ) return i;
131335 pCol->hName = sqlite3StrIHash(zName);
/external/sqlite/dist/orig/
Dsqlite3.c17310 u8 hName; /* Column name hash for faster lookup */ member
97875 if( pCol->hName==hCol && sqlite3StrICmp(pCol->zName, zCol)==0 ){
97940 if( pCol->hName==hCol && sqlite3StrICmp(pCol->zName, zCol)==0 ){
106052 pCol->hName = sqlite3StrIHash(pCol->zName);
110742 assert( pCol->zName==0 || pCol->hName==sqlite3StrIHash(pCol->zName) );
111391 pCol->hName = sqlite3StrIHash(z);
130961 pCol->hName = sqlite3StrIHash(zName);
/external/sqlite/dist/
Dsqlite3.c17310 u8 hName; /* Column name hash for faster lookup */ member
97891 if( pCol->hName==hCol && sqlite3StrICmp(pCol->zName, zCol)==0 ){
97956 if( pCol->hName==hCol && sqlite3StrICmp(pCol->zName, zCol)==0 ){
106068 pCol->hName = sqlite3StrIHash(pCol->zName);
110758 assert( pCol->zName==0 || pCol->hName==sqlite3StrIHash(pCol->zName) );
111407 pCol->hName = sqlite3StrIHash(z);
130977 pCol->hName = sqlite3StrIHash(zName);