Home
last modified time | relevance | path

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

/PHP-7.3/Zend/
H A Dzend_hash.h183 #define ZEND_HASH_INDEX_FIND(_ht, _h, _ret, _not_found) do { \ argument
184 if (EXPECTED(HT_FLAGS(_ht) & HASH_FLAG_PACKED)) { \
185 if (EXPECTED((zend_ulong)(_h) < (zend_ulong)(_ht)->nNumUsed)) { \
186 _ret = &_ht->arData[_h].val; \
194 _ret = _zend_hash_index_find(_ht, _h); \
894 #define ZEND_HASH_FOREACH(_ht, indirect) do { \ argument
895 HashTable *__ht = (_ht); \
905 #define ZEND_HASH_REVERSE_FOREACH(_ht, indirect) do { \ argument
906 HashTable *__ht = (_ht); \
/PHP-7.3/ext/session/
H A Dphp_session.h297 HashTable *_ht = Z_ARRVAL_P(Z_REFVAL(PS(http_session_vars))); \
298 ZEND_HASH_FOREACH_KEY(_ht, num_key, key) { \
/PHP-7.3/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 525 milliseconds