Home
last modified time | relevance | path

Searched refs:nSize (Results 1 – 7 of 7) sorted by relevance

/PHP-5.5/Zend/
H A Dzend_ts_hash.h40 ZEND_API int _zend_ts_hash_init(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t…
41 ZEND_API int _zend_ts_hash_init_ex(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_fun…
45 #define zend_ts_hash_init(ht, nSize, pHashFunction, pDestructor, persistent) \ argument
46 _zend_ts_hash_init(ht, nSize, pHashFunction, pDestructor, persistent ZEND_FILE_LINE_CC)
47 #define zend_ts_hash_init_ex(ht, nSize, pHashFunction, pDestructor, persistent, bApplyProtection) \ argument
48 …_zend_ts_hash_init_ex(ht, nSize, pHashFunction, pDestructor, persistent, bApplyProtection ZEND_FIL…
H A Dzend_hash.h100 ZEND_API int _zend_hash_init(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDes…
101 ZEND_API int _zend_hash_init_ex(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t p…
104 #define zend_hash_init(ht, nSize, pHashFunction, pDestructor, persistent) _zend_hash_init((ht)… argument
105 …efine zend_hash_init_ex(ht, nSize, pHashFunction, pDestructor, persistent, bApplyProtection) _zen… argument
H A Dzend_ts_hash.c62 ZEND_API int _zend_ts_hash_init(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t… in _zend_ts_hash_init() argument
69 …return _zend_hash_init(TS_HASH(ht), nSize, pHashFunction, pDestructor, persistent ZEND_FILE_LINE_R… in _zend_ts_hash_init()
72 ZEND_API int _zend_ts_hash_init_ex(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_fun… in _zend_ts_hash_init_ex() argument
79 …return _zend_hash_init_ex(TS_HASH(ht), nSize, pHashFunction, pDestructor, persistent, bApplyProtec… in _zend_ts_hash_init_ex()
H A Dzend_hash.c148 ZEND_API int _zend_hash_init(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDes… in _zend_hash_init() argument
154 if (nSize >= 0x80000000) { in _zend_hash_init()
158 while ((1U << i) < nSize) { in _zend_hash_init()
179 ZEND_API int _zend_hash_init_ex(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t p… in _zend_hash_init_ex() argument
181 int retval = _zend_hash_init(ht, nSize, pHashFunction, pDestructor, persistent ZEND_FILE_LINE_CC); in _zend_hash_init_ex()
/PHP-5.5/ext/standard/tests/file/
H A Dsymlink_link_linkinfo_is_link_variation4.phpt49 echo "\nSize of file and hard link are same\n";
65 echo "\nSize of file and hard link are same\n";
83 echo "\nSize of file and hard link are same\n";
/PHP-5.5/ext/opcache/
H A Dzend_accelerator_util_funcs.c92 uint nSize; in compact_hash_table() local
102 nSize = 0x80000000; in compact_hash_table()
107 nSize = 1 << i; in compact_hash_table()
110 if (nSize >= ht->nTableSize) { in compact_hash_table()
115 t = (Bucket **)pemalloc(nSize * sizeof(Bucket *), ht->persistent); in compact_hash_table()
123 ht->nTableSize = nSize; in compact_hash_table()
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c54075 if( pInfo->nSize<4 ) pInfo->nSize = 4;
54140 nSize = *pIter;
54141 if( nSize>=0x80 ){
54143 nSize &= 0x7f;
54145 nSize = (nSize<<7) | (*++pIter & 0x7f);
54160 if( nSize<4 ) nSize = 4;
54171 assert( nSize==debuginfo.nSize || CORRUPT_DB );
83591 int nSize;
83609 return nSize;
83695 memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize);
[all …]

Completed in 394 milliseconds