Searched defs:nSize (Results 1 - 4 of 4) sorted by relevance
| /PHP_TRUNK/Zend/ |
| H A D | zend_ts_hash.c | 62 ZEND_API int _zend_ts_hash_init(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent ZEND_FILE_LINE_DC) argument 69 return _zend_hash_init(TS_HASH(ht), nSize, pHashFunction, pDestructor, persistent ZEND_FILE_LINE_RELAY_CC); 72 ZEND_API int _zend_ts_hash_init_ex(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent, zend_bool bApplyProtection ZEND_FILE_LINE_DC) argument 79 return _zend_hash_init_ex(TS_HASH(ht), nSize, pHashFunction, pDestructor, persistent, bApplyProtection ZEND_FILE_LINE_RELAY_CC);
|
| H A D | zend_hash.c | 144 ZEND_API int _zend_hash_init(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent ZEND_FILE_LINE_DC) argument 150 if (nSize >= 0x80000000) { 154 while ((1U << i) < nSize) { 175 ZEND_API int _zend_hash_init_ex(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent, zend_bool bApplyProtection ZEND_FILE_LINE_DC) argument 177 int retval = _zend_hash_init(ht, nSize, pHashFunction, pDestructor, persistent ZEND_FILE_LINE_CC);
|
| /PHP_TRUNK/ext/opcache/ |
| H A D | zend_accelerator_util_funcs.c | 92 uint nSize; local 102 nSize = 0x80000000; 107 nSize = 1 << i; 110 if (nSize >= ht->nTableSize) { 115 t = (Bucket **)pemalloc(nSize * sizeof(Bucket *), ht->persistent); 123 ht->nTableSize = nSize;
|
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 27867 i64 nSize; /* Required file size */ local 27872 nSize = ((nByte+pFile->szChunk-1) / pFile->szChunk) * pFile->szChunk; 27873 if( nSize>(i64)buf.st_size ){ 27881 err = osFallocate(pFile->h, buf.st_size, nSize-buf.st_size); 27894 if( robust_ftruncate(pFile->h, nSize) ){ 27899 while( iWrite<nSize ){ 44683 i64 nSize; /* Size of log file */ local 45329 i64 nSize; /* Current size of database file */ local 47054 u16 nSize; /* Size of the cell content on the main b-tree page */ member in struct:CellInfo 48493 u32 nSize; local 71905 int nSize; local 72004 int nSize = exprStructSize(p); local 116656 fts3auxGrowStatArray(Fts3auxCursor *pCsr, int nSize) argument 119782 int nSize; /* Size of allocation at aData */ member in struct:SegmentWriter [all...] |
Completed in 147 milliseconds