Home
last modified time | relevance | path

Searched refs:_ht (Results 1 – 3 of 3) sorted by relevance

/PHP-7.1/Zend/
H A Dzend_hash.h166 #define ZEND_HASH_INDEX_FIND(_ht, _h, _ret, _not_found) do { \ argument
167 if (EXPECTED((_ht)->u.flags & HASH_FLAG_PACKED)) { \
168 if (EXPECTED((zend_ulong)(_h) < (zend_ulong)(_ht)->nNumUsed)) { \
169 _ret = &_ht->arData[_h].val; \
177 _ret = _zend_hash_index_find(_ht, _h); \
797 #define ZEND_HASH_FOREACH(_ht, indirect) do { \ argument
798 Bucket *_p = (_ht)->arData; \
799 Bucket *_end = _p + (_ht)->nNumUsed; \
807 #define ZEND_HASH_REVERSE_FOREACH(_ht, indirect) do { \ argument
809 for (_idx = (_ht)->nNumUsed; _idx > 0; _idx--) { \
[all …]
/PHP-7.1/ext/session/
H A Dphp_session.h295 HashTable *_ht = Z_ARRVAL_P(Z_REFVAL(PS(http_session_vars))); \
296 ZEND_HASH_FOREACH_KEY(_ht, num_key, key) { \
/PHP-7.1/ext/sqlite3/libsqlite/
H A Dsqlite3.c13420 struct _ht { /* the hash table */ struct
31922 struct _ht *pEntry, /* The entry into which pNew is inserted */
31955 struct _ht *new_ht; /* The new hash table */
31959 if( new_size*sizeof(struct _ht)>SQLITE_MALLOC_SOFT_LIMIT ){
31960 new_size = SQLITE_MALLOC_SOFT_LIMIT/sizeof(struct _ht);
31974 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
31980 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
31981 memset(new_ht, 0, new_size*sizeof(struct _ht));
32006 struct _ht *pEntry;
32035 struct _ht *pEntry;

Completed in 356 milliseconds