h                 101 Zend/zend.h    #  define DL_FETCH_SYMBOL(h,s)		dlsym((h), "_" s)
h                3429 Zend/zend_API.c 	ulong h = zend_get_hash_value(name, name_length+1);
h                3435 Zend/zend_API.c 		if (zend_hash_quick_find(&ce->properties_info, name, name_length + 1, h, (void**)&property_info_ptr) == SUCCESS &&
h                3439 Zend/zend_API.c 			zend_hash_quick_del(&ce->properties_info, name, name_length + 1, h);
h                3449 Zend/zend_API.c 		if (zend_hash_quick_find(&ce->properties_info, name, name_length + 1, h, (void**)&property_info_ptr) == SUCCESS &&
h                3453 Zend/zend_API.c 			zend_hash_quick_del(&ce->properties_info, name, name_length + 1, h);
h                3511 Zend/zend_API.c 	property_info.h = (access_type & ZEND_ACC_PUBLIC) ? h : zend_get_hash_value(property_info.name, property_info.name_length+1);
h                3518 Zend/zend_API.c 	zend_hash_quick_update(&ce->properties_info, name, name_length+1, h, &property_info, sizeof(zend_property_info), NULL);
h                1187 Zend/zend_builtin_functions.c 	ulong h;
h                1209 Zend/zend_builtin_functions.c 	h = zend_get_hash_value(property, property_len+1);
h                1210 Zend/zend_builtin_functions.c 	if (zend_hash_quick_find(&ce->properties_info, property, property_len+1, h, (void **) &property_info) == SUCCESS
h                3623 Zend/zend_compile.c 	if (zend_hash_quick_find(child_function_table, hash_key->arKey, hash_key->nKeyLength, hash_key->h, (void **) &child)==FAILURE) {
h                3642 Zend/zend_compile.c 		if (zend_hash_quick_find(&ce->properties_info, hash_key->arKey, hash_key->nKeyLength, hash_key->h, (void **) &child_info)==SUCCESS) {
h                3645 Zend/zend_compile.c 			zend_hash_quick_update(&ce->properties_info, hash_key->arKey, hash_key->nKeyLength, hash_key->h, parent_info, sizeof(zend_property_info), (void **) &child_info);
h                3657 Zend/zend_compile.c 	if (zend_hash_quick_find(&ce->properties_info, hash_key->arKey, hash_key->nKeyLength, hash_key->h, (void **) &child_info)==SUCCESS) {
h                3878 Zend/zend_compile.c 	if (zend_hash_quick_find(child_constants_table, hash_key->arKey, hash_key->nKeyLength, hash_key->h, (void**)&old_constant) == SUCCESS) {
h                4025 Zend/zend_compile.c 	ulong h = zend_hash_func(arKey, nKeyLength);
h                4027 Zend/zend_compile.c 	if (zend_hash_quick_find(&ce->function_table, arKey, nKeyLength, h, (void**) &existing_fn) == SUCCESS) {
h                4032 Zend/zend_compile.c 				if (zend_hash_quick_find(*overriden, arKey, nKeyLength, h, (void**) &existing_fn) == SUCCESS) {
h                4054 Zend/zend_compile.c 			zend_hash_quick_update(*overriden, arKey, nKeyLength, h, fn, sizeof(zend_function), (void**)&fn);
h                4092 Zend/zend_compile.c 	zend_hash_quick_update(&ce->function_table, arKey, nKeyLength, h, fn, sizeof(zend_function), (void**)&fn);
h                4438 Zend/zend_compile.c 				prop_hash = property_info->h;
h                 227 Zend/zend_compile.h 	ulong h;
h                 559 Zend/zend_exceptions.c 		zend_error(E_WARNING, "Expected array for frame %lu", hash_key->h);
h                 249 Zend/zend_generators.c 	zend_hash_quick_update(target, key->arKey, key->nKeyLength, key->h, var, sizeof(zval *), NULL);
h                 160 Zend/zend_hash.c 		ht->arBuckets[p->h & ht->nTableMask] = p->pNext;
h                 244 Zend/zend_hash.c 	ulong h;
h                 257 Zend/zend_hash.c 	h = zend_inline_hash_func(arKey, nKeyLength);
h                 258 Zend/zend_hash.c 	nIndex = h & ht->nTableMask;
h                 263 Zend/zend_hash.c 			((p->h == h) && (p->nKeyLength == nKeyLength) && !memcmp(p->arKey, arKey, nKeyLength))) {
h                 292 Zend/zend_hash.c 	p->h = h;
h                 308 Zend/zend_hash.c ZEND_API int _zend_hash_quick_add_or_update(HashTable *ht, const char *arKey, uint nKeyLength, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC)
h                 321 Zend/zend_hash.c 	nIndex = h & ht->nTableMask;
h                 326 Zend/zend_hash.c 			((p->h == h) && (p->nKeyLength == nKeyLength) && !memcmp(p->arKey, arKey, nKeyLength))) {
h                 356 Zend/zend_hash.c 	p->h = h;
h                 383 Zend/zend_hash.c ZEND_API int _zend_hash_index_update_or_next_insert(HashTable *ht, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC)
h                 395 Zend/zend_hash.c 		h = ht->nNextFreeElement;
h                 397 Zend/zend_hash.c 	nIndex = h & ht->nTableMask;
h                 401 Zend/zend_hash.c 		if ((p->nKeyLength == 0) && (p->h == h)) {
h                 422 Zend/zend_hash.c 	p->h = h;
h                 435 Zend/zend_hash.c 	if ((long)h >= (long)ht->nNextFreeElement) {
h                 436 Zend/zend_hash.c 		ht->nNextFreeElement = h < LONG_MAX ? h + 1 : LONG_MAX;
h                 476 Zend/zend_hash.c 		nIndex = p->h & ht->nTableMask;
h                 497 Zend/zend_hash.c 			p->h = offset++;
h                 501 Zend/zend_hash.c 		nIndex = p->h & ht->nTableMask;
h                 508 Zend/zend_hash.c ZEND_API int zend_hash_del_key_or_index(HashTable *ht, const char *arKey, uint nKeyLength, ulong h, int flag)
h                 516 Zend/zend_hash.c 		h = zend_inline_hash_func(arKey, nKeyLength);
h                 518 Zend/zend_hash.c 	nIndex = h & ht->nTableMask;
h                 522 Zend/zend_hash.c 		if ((p->h == h) 
h                 700 Zend/zend_hash.c 		hash_key.h = p->h;
h                 761 Zend/zend_hash.c 			zend_hash_quick_update(target, p->arKey, p->nKeyLength, p->h, p->pData, size, &new_entry);
h                 763 Zend/zend_hash.c 			zend_hash_index_update(target, p->h, p->pData, size, &new_entry);
h                 788 Zend/zend_hash.c 			if (_zend_hash_quick_add_or_update(target, p->arKey, p->nKeyLength, p->h, p->pData, size, &t, mode ZEND_FILE_LINE_RELAY_CC)==SUCCESS && pCopyConstructor) {
h                 792 Zend/zend_hash.c 			if ((mode==HASH_UPDATE || !zend_hash_index_exists(target, p->h)) && zend_hash_index_update(target, p->h, p->pData, size, &t)==SUCCESS && pCopyConstructor) {
h                 808 Zend/zend_hash.c 	hash_key.h = p->h;
h                 824 Zend/zend_hash.c 			if (zend_hash_quick_update(target, p->arKey, p->nKeyLength, p->h, p->pData, size, &t)==SUCCESS && pCopyConstructor) {
h                 840 Zend/zend_hash.c 	ulong h;
h                 846 Zend/zend_hash.c 	h = zend_inline_hash_func(arKey, nKeyLength);
h                 847 Zend/zend_hash.c 	nIndex = h & ht->nTableMask;
h                 852 Zend/zend_hash.c 			((p->h == h) && (p->nKeyLength == nKeyLength) && !memcmp(p->arKey, arKey, nKeyLength))) {
h                 862 Zend/zend_hash.c ZEND_API int zend_hash_quick_find(const HashTable *ht, const char *arKey, uint nKeyLength, ulong h, void **pData)
h                 871 Zend/zend_hash.c 	nIndex = h & ht->nTableMask;
h                 876 Zend/zend_hash.c 			((p->h == h) && (p->nKeyLength == nKeyLength) && !memcmp(p->arKey, arKey, nKeyLength))) {
h                 888 Zend/zend_hash.c 	ulong h;
h                 894 Zend/zend_hash.c 	h = zend_inline_hash_func(arKey, nKeyLength);
h                 895 Zend/zend_hash.c 	nIndex = h & ht->nTableMask;
h                 900 Zend/zend_hash.c 			((p->h == h) && (p->nKeyLength == nKeyLength) && !memcmp(p->arKey, arKey, nKeyLength))) {
h                 909 Zend/zend_hash.c ZEND_API int zend_hash_quick_exists(const HashTable *ht, const char *arKey, uint nKeyLength, ulong h)
h                 918 Zend/zend_hash.c 	nIndex = h & ht->nTableMask;
h                 923 Zend/zend_hash.c 			((p->h == h) && (p->nKeyLength == nKeyLength) && !memcmp(p->arKey, arKey, nKeyLength))) {
h                 933 Zend/zend_hash.c ZEND_API int zend_hash_index_find(const HashTable *ht, ulong h, void **pData)
h                 940 Zend/zend_hash.c 	nIndex = h & ht->nTableMask;
h                 944 Zend/zend_hash.c 		if ((p->h == h) && (p->nKeyLength == 0)) {
h                 954 Zend/zend_hash.c ZEND_API int zend_hash_index_exists(const HashTable *ht, ulong h)
h                 961 Zend/zend_hash.c 	nIndex = h & ht->nTableMask;
h                 965 Zend/zend_hash.c 		if ((p->h == h) && (p->nKeyLength == 0)) {
h                 986 Zend/zend_hash.c 		ptr->h = ht->pInternalPointer->h;
h                 989 Zend/zend_hash.c 		ptr->h = 0;
h                1002 Zend/zend_hash.c 		p = ht->arBuckets[ptr->h & ht->nTableMask];
h                1088 Zend/zend_hash.c 			*num_index = p->h;
h                1110 Zend/zend_hash.c 		Z_LVAL_P(key) = p->h;
h                1155 Zend/zend_hash.c 	ulong h;
h                1167 Zend/zend_hash.c 			if (!p->nKeyLength && p->h == num_index) {
h                1173 Zend/zend_hash.c 				if (!q->nKeyLength && q->h == num_index) {
h                1180 Zend/zend_hash.c 				h = INTERNED_HASH(str_index);
h                1182 Zend/zend_hash.c 				h = zend_inline_hash_func(str_index, str_length);
h                1187 Zend/zend_hash.c 			     p->h == h &&
h                1192 Zend/zend_hash.c 			q = ht->arBuckets[h & ht->nTableMask];
h                1196 Zend/zend_hash.c 				    (q->h == h && q->nKeyLength == str_length &&
h                1237 Zend/zend_hash.c 			ht->arBuckets[p->h & ht->nTableMask] = p->pNext;
h                1271 Zend/zend_hash.c 			p->h = num_index;
h                1276 Zend/zend_hash.c 			p->h = h;
h                1286 Zend/zend_hash.c 		CONNECT_TO_BUCKET_DLLIST(p, ht->arBuckets[p->h & ht->nTableMask]);
h                1287 Zend/zend_hash.c 		ht->arBuckets[p->h & ht->nTableMask] = p;
h                1320 Zend/zend_hash.c 				zend_hash_quick_update(removed, p->arKey, p->nKeyLength, p->h, p->pData, sizeof(zval *), &new_entry);
h                1346 Zend/zend_hash.c 			q->h = 0;
h                1449 Zend/zend_hash.c 				if (p1->h != p2->h) {
h                1452 Zend/zend_hash.c 					return p1->h > p2->h ? 1 : -1;
h                1471 Zend/zend_hash.c 				if (zend_hash_index_find(ht2, p1->h, &pData2)==FAILURE) {
h                1477 Zend/zend_hash.c 				if (zend_hash_quick_find(ht2, p1->arKey, p1->nKeyLength, p1->h, &pData2)==FAILURE) {
h                1562 Zend/zend_hash.c 			zend_output_debug_string(0, "%s <==> 0x%lX\n", p->arKey, p->h);
h                1569 Zend/zend_hash.c 		zend_output_debug_string(0, "%s <==> 0x%lX\n", p->arKey, p->h);
h                  56 Zend/zend_hash.h 	ulong h;						/* Used for numeric indexing */
h                  89 Zend/zend_hash.h 	ulong h;
h                 114 Zend/zend_hash.h ZEND_API int _zend_hash_quick_add_or_update(HashTable *ht, const char *arKey, uint nKeyLength, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC);
h                 115 Zend/zend_hash.h #define zend_hash_quick_update(ht, arKey, nKeyLength, h, pData, nDataSize, pDest) \
h                 116 Zend/zend_hash.h 		_zend_hash_quick_add_or_update(ht, arKey, nKeyLength, h, pData, nDataSize, pDest, HASH_UPDATE ZEND_FILE_LINE_CC)
h                 117 Zend/zend_hash.h #define zend_hash_quick_add(ht, arKey, nKeyLength, h, pData, nDataSize, pDest) \
h                 118 Zend/zend_hash.h 		_zend_hash_quick_add_or_update(ht, arKey, nKeyLength, h, pData, nDataSize, pDest, HASH_ADD ZEND_FILE_LINE_CC)
h                 120 Zend/zend_hash.h ZEND_API int _zend_hash_index_update_or_next_insert(HashTable *ht, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC);
h                 121 Zend/zend_hash.h #define zend_hash_index_update(ht, h, pData, nDataSize, pDest) \
h                 122 Zend/zend_hash.h 		_zend_hash_index_update_or_next_insert(ht, h, pData, nDataSize, pDest, HASH_UPDATE ZEND_FILE_LINE_CC)
h                 153 Zend/zend_hash.h ZEND_API int zend_hash_del_key_or_index(HashTable *ht, const char *arKey, uint nKeyLength, ulong h, int flag);
h                 156 Zend/zend_hash.h #define zend_hash_quick_del(ht, arKey, nKeyLength, h) \
h                 157 Zend/zend_hash.h 		zend_hash_del_key_or_index(ht, arKey, nKeyLength, h, HASH_DEL_KEY_QUICK)
h                 158 Zend/zend_hash.h #define zend_hash_index_del(ht, h) \
h                 159 Zend/zend_hash.h 		zend_hash_del_key_or_index(ht, NULL, 0, h, HASH_DEL_INDEX)
h                 165 Zend/zend_hash.h ZEND_API int zend_hash_quick_find(const HashTable *ht, const char *arKey, uint nKeyLength, ulong h, void **pData);
h                 166 Zend/zend_hash.h ZEND_API int zend_hash_index_find(const HashTable *ht, ulong h, void **pData);
h                 170 Zend/zend_hash.h ZEND_API int zend_hash_quick_exists(const HashTable *ht, const char *arKey, uint nKeyLength, ulong h);
h                 171 Zend/zend_hash.h ZEND_API int zend_hash_index_exists(const HashTable *ht, ulong h);
h                 189 Zend/zend_hash.h 	ulong h;
h                  83 Zend/zend_object_handlers.c 					zend_hash_quick_add(zobj->properties, prop_info->name, prop_info->name_length+1, prop_info->h, (void**)&zobj->properties_table[prop_info->offset], sizeof(zval*), (void**)&zobj->properties_table[prop_info->offset]);
h                  96 Zend/zend_object_handlers.c 						zend_hash_quick_add(zobj->properties, prop_info->name, prop_info->name_length+1, prop_info->h, (void**)&zobj->properties_table[prop_info->offset], sizeof(zval*), (void**)&zobj->properties_table[prop_info->offset]);
h                 307 Zend/zend_object_handlers.c 	ulong h;
h                 324 Zend/zend_object_handlers.c 	h = key ? key->hash_value : zend_get_hash_value(Z_STRVAL_P(member), Z_STRLEN_P(member) + 1);
h                 325 Zend/zend_object_handlers.c 	if (zend_hash_quick_find(&ce->properties_info, Z_STRVAL_P(member), Z_STRLEN_P(member)+1, h, (void **) &property_info)==SUCCESS) {
h                 355 Zend/zend_object_handlers.c 		&& zend_hash_quick_find(&EG(scope)->properties_info, Z_STRVAL_P(member), Z_STRLEN_P(member)+1, h, (void **) &scope_property_info)==SUCCESS
h                 378 Zend/zend_object_handlers.c 		EG(std_property_info).h = h;
h                 428 Zend/zend_object_handlers.c 		info.h = zend_get_hash_value(Z_STRVAL_P(member), Z_STRLEN_P(member) + 1);
h                 436 Zend/zend_object_handlers.c 			info.h = zend_get_hash_value(info.name, info.name_length+1);
h                 443 Zend/zend_object_handlers.c 	} else if (zend_hash_quick_find(zobj->guards, property_info->name, property_info->name_length+1, property_info->h, (void **) pguard) == SUCCESS) {
h                 450 Zend/zend_object_handlers.c 	return zend_hash_quick_add(zobj->guards, property_info->name, property_info->name_length+1, property_info->h, (void**)&stub, sizeof(stub), (void**) pguard);
h                 490 Zend/zend_object_handlers.c 	          UNEXPECTED(zend_hash_quick_find(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, (void **) &retval) == FAILURE)))) {
h                 583 Zend/zend_object_handlers.c 	          EXPECTED(zend_hash_quick_find(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, (void **) &variable_ptr) == SUCCESS)))) {
h                 641 Zend/zend_object_handlers.c 						zend_hash_quick_update(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, &value, sizeof(zval *), (void**)&zobj->properties_table[property_info->offset]);
h                 647 Zend/zend_object_handlers.c 				zend_hash_quick_update(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, &value, sizeof(zval *), NULL);
h                 779 Zend/zend_object_handlers.c 	          UNEXPECTED(zend_hash_quick_find(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, (void **) &retval) == FAILURE)))) {
h                 799 Zend/zend_object_handlers.c 					zend_hash_quick_update(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, &new_zval, sizeof(zval *), (void**)&zobj->properties_table[property_info->offset]);
h                 806 Zend/zend_object_handlers.c 				zend_hash_quick_update(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, &new_zval, sizeof(zval *), (void **) &retval);
h                 855 Zend/zend_object_handlers.c 	           UNEXPECTED(zend_hash_quick_del(zobj->properties, property_info->name, property_info->name_length+1, property_info->h) == FAILURE)) {
h                1462 Zend/zend_object_handlers.c 	          UNEXPECTED(zend_hash_quick_find(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, (void **) &value) == FAILURE)))) {
h                 196 Zend/zend_objects.c 					if (zend_hash_quick_find(new_object->properties, prop_info->name, prop_info->name_length+1, prop_info->h, (void**)&new_object->properties_table[prop_info->offset]) == FAILURE) {
h                 470 Zend/zend_operators.h #define Z_OBJ_HANDLER_P(zval_p, h)	Z_OBJ_HANDLER(*zval_p, h)
h                 486 Zend/zend_operators.h #define Z_OBJ_HANDLER_PP(zval_p, h)		Z_OBJ_HANDLER(**zval_p, h)
h                  87 Zend/zend_string.c 	ulong h;
h                  95 Zend/zend_string.c 	h = zend_inline_hash_func(arKey, nKeyLength);
h                  96 Zend/zend_string.c 	nIndex = h & CG(interned_strings).nTableMask;
h                  99 Zend/zend_string.c 		if ((p->h == h) && (p->nKeyLength == nKeyLength)) {
h                 129 Zend/zend_string.c 	p->h = h;
h                  51 Zend/zend_string.h 	(((Bucket*)(((char*)(s))-sizeof(Bucket)))->h)
h                 113 Zend/zend_ts_hash.c ZEND_API int _zend_ts_hash_quick_add_or_update(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC)
h                 118 Zend/zend_ts_hash.c 	retval = _zend_hash_quick_add_or_update(TS_HASH(ht), arKey, nKeyLength, h, pData, nDataSize, pDest, flag ZEND_FILE_LINE_RELAY_CC);
h                 124 Zend/zend_ts_hash.c ZEND_API int _zend_ts_hash_index_update_or_next_insert(TsHashTable *ht, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC)
h                 129 Zend/zend_ts_hash.c 	retval = _zend_hash_index_update_or_next_insert(TS_HASH(ht), h, pData, nDataSize, pDest, flag ZEND_FILE_LINE_RELAY_CC);
h                 190 Zend/zend_ts_hash.c ZEND_API int zend_ts_hash_del_key_or_index(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, int flag)
h                 195 Zend/zend_ts_hash.c 	retval = zend_hash_del_key_or_index(TS_HASH(ht), arKey, nKeyLength, h, flag);
h                 223 Zend/zend_ts_hash.c ZEND_API int zend_ts_hash_quick_find(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, void **pData)
h                 228 Zend/zend_ts_hash.c 	retval = zend_hash_quick_find(TS_HASH(ht), arKey, nKeyLength, h, pData);
h                 234 Zend/zend_ts_hash.c ZEND_API int zend_ts_hash_index_find(TsHashTable *ht, ulong h, void **pData)
h                 239 Zend/zend_ts_hash.c 	retval = zend_hash_index_find(TS_HASH(ht), h, pData);
h                 256 Zend/zend_ts_hash.c ZEND_API int zend_ts_hash_index_exists(TsHashTable *ht, ulong h)
h                 261 Zend/zend_ts_hash.c 	retval = zend_hash_index_exists(TS_HASH(ht), h);
h                  58 Zend/zend_ts_hash.h ZEND_API int _zend_ts_hash_quick_add_or_update(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC);
h                  59 Zend/zend_ts_hash.h #define zend_ts_hash_quick_update(ht, arKey, nKeyLength, h, pData, nDataSize, pDest) \
h                  60 Zend/zend_ts_hash.h 		_zend_ts_hash_quick_add_or_update(ht, arKey, nKeyLength, h, pData, nDataSize, pDest, HASH_UPDATE ZEND_FILE_LINE_CC)
h                  61 Zend/zend_ts_hash.h #define zend_ts_hash_quick_add(ht, arKey, nKeyLength, h, pData, nDataSize, pDest) \
h                  62 Zend/zend_ts_hash.h 		_zend_ts_hash_quick_add_or_update(ht, arKey, nKeyLength, h, pData, nDataSize, pDest, HASH_ADD ZEND_FILE_LINE_CC)
h                  64 Zend/zend_ts_hash.h ZEND_API int _zend_ts_hash_index_update_or_next_insert(TsHashTable *ht, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC);
h                  65 Zend/zend_ts_hash.h #define zend_ts_hash_index_update(ht, h, pData, nDataSize, pDest) \
h                  66 Zend/zend_ts_hash.h 		_zend_ts_hash_index_update_or_next_insert(ht, h, pData, nDataSize, pDest, HASH_UPDATE ZEND_FILE_LINE_CC)
h                  81 Zend/zend_ts_hash.h ZEND_API int zend_ts_hash_del_key_or_index(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, int flag);
h                  84 Zend/zend_ts_hash.h #define zend_ts_hash_index_del(ht, h) \
h                  85 Zend/zend_ts_hash.h 		zend_ts_hash_del_key_or_index(ht, NULL, 0, h, HASH_DEL_INDEX)
h                  91 Zend/zend_ts_hash.h ZEND_API int zend_ts_hash_quick_find(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, void **pData);
h                  92 Zend/zend_ts_hash.h ZEND_API int zend_ts_hash_index_find(TsHashTable *ht, ulong h, void **pData);
h                  96 Zend/zend_ts_hash.h ZEND_API int zend_ts_hash_index_exists(TsHashTable *ht, ulong h);
h                 210 Zend/zend_variables.c 		if (zend_hash_quick_find(EG(active_symbol_table), key->arKey, key->nKeyLength, key->h, (void **) &p) == FAILURE) {
h                 214 Zend/zend_variables.c 				zend_hash_quick_add(EG(active_symbol_table), key->arKey, key->nKeyLength, key->h, &tmp, sizeof(zval*), (void**)&p);
h                 236 Zend/zend_variables.c 	if (zend_hash_quick_add(target, key->arKey, key->nKeyLength, key->h, &tmp, sizeof(zval*), NULL) == SUCCESS) {
h                 587 Zend/zend_virtual_cwd.c 	register unsigned long h;
h                 598 Zend/zend_virtual_cwd.c 	for (h = 2166136261U; bucket_key < e;) {
h                 599 Zend/zend_virtual_cwd.c 		h *= 16777619;
h                 600 Zend/zend_virtual_cwd.c 		h ^= *bucket_key++;
h                 603 Zend/zend_virtual_cwd.c 	return h;
h                 609 Zend/zend_virtual_cwd.c 	register unsigned long h;
h                 612 Zend/zend_virtual_cwd.c 	for (h = 2166136261U; path < e;) {
h                 613 Zend/zend_virtual_cwd.c 		h *= 16777619;
h                 614 Zend/zend_virtual_cwd.c 		h ^= *path++;
h                 617 Zend/zend_virtual_cwd.c 	return h;
h                 229 ext/date/lib/astro.c 	t_loc->h = 12;
h                 238 ext/date/lib/astro.c 	t_utc->h = t_utc->i = t_utc->s = 0;
h                 153 ext/date/lib/dow.c int timelib_valid_time(timelib_sll h, timelib_sll i, timelib_sll s)
h                 155 ext/date/lib/dow.c 	if (h < 0 || h > 23 || i < 0 || i > 59 || s < 0 || s > 59) {
h                  65 ext/date/lib/interval.c 	rt->h = two->h - one->h;
h                  69 ext/date/lib/interval.c 		rt->h += dst_h_corr;
h                  81 ext/date/lib/interval.c 			rt->h = 24;
h                  83 ext/date/lib/interval.c 			rt->h += dst_h_corr;
h                 110 ext/date/lib/interval.c 		t->relative.h = interval->h * bias;
h                 145 ext/date/lib/interval.c 	t->relative.h = 0 - (interval->h * bias);
h                 116 ext/date/lib/parse_date.c #define TIMELIB_HAVE_TIME() { if (s->time->have_time) { add_error(s, "Double time specification"); timelib_string_free(str); return TIMELIB_ERROR; } else { s->time->have_time = 1; s->time->h = 0; s->time->i = 0; s->time->s = 0; s->time->f = 0; } }
h                 117 ext/date/lib/parse_date.c #define TIMELIB_UNHAVE_TIME() { s->time->have_time = 0; s->time->h = 0; s->time->i = 0; s->time->s = 0; s->time->f = 0; }
h                 382 ext/date/lib/parse_date.c static timelib_sll timelib_meridian(char **ptr, timelib_sll h)
h                 390 ext/date/lib/parse_date.c 		if (h == 12) {
h                 393 ext/date/lib/parse_date.c 	} else if (h != 12) {
h                 405 ext/date/lib/parse_date.c static timelib_sll timelib_meridian_with_check(char **ptr, timelib_sll h)
h                 416 ext/date/lib/parse_date.c 		if (h == 12) {
h                 419 ext/date/lib/parse_date.c 	} else if (h != 12) {
h                 657 ext/date/lib/parse_date.c 		case TIMELIB_HOUR:   s->time->relative.h += amount * relunit->multiplier; break;
h                4404 ext/date/lib/parse_date.c 		s->time->h = timelib_get_nr((char **) &ptr, 2);
h                5128 ext/date/lib/parse_date.c 		s->time->h = timelib_get_nr((char **) &ptr, 2);
h                5138 ext/date/lib/parse_date.c 		s->time->h += timelib_meridian((char **) &ptr, s->time->h);
h                7205 ext/date/lib/parse_date.c 		s->time->relative.h = 0 - s->time->relative.h;
h                9690 ext/date/lib/parse_date.c 		s->time->h = timelib_get_nr((char **) &ptr, 2);
h                9697 ext/date/lib/parse_date.c 		s->time->h += timelib_meridian((char **) &ptr, s->time->h);
h                9718 ext/date/lib/parse_date.c 		s->time->h = timelib_get_nr((char **) &ptr, 2);
h                10050 ext/date/lib/parse_date.c 		s->time->h = timelib_get_nr((char **) &ptr, 2);
h                10060 ext/date/lib/parse_date.c 		s->time->h += timelib_meridian((char **) &ptr, s->time->h);
h                11987 ext/date/lib/parse_date.c 		s->time->h = timelib_get_nr((char **) &ptr, 2);
h                13359 ext/date/lib/parse_date.c 		s->time->h = timelib_get_nr((char **) &ptr, 2);
h                15589 ext/date/lib/parse_date.c 				s->time->h = timelib_get_nr((char **) &ptr, 2);
h                15701 ext/date/lib/parse_date.c 		s->time->h = timelib_get_nr((char **) &ptr, 2);
h                19508 ext/date/lib/parse_date.c 			s->time->h = timelib_get_nr((char **) &ptr, 2);
h                19511 ext/date/lib/parse_date.c 			s->time->h = timelib_get_nr((char **) &ptr, 2) - 1;
h                19516 ext/date/lib/parse_date.c 			s->time->h += timelib_meridian((char **) &ptr, s->time->h);
h                21240 ext/date/lib/parse_date.c 		s->time->h = s->time->i = s->time->s = 0;
h                23899 ext/date/lib/parse_date.c 		s->time->h = 12;
h                24652 ext/date/lib/parse_date.c 		in.time->y = in.time->d = in.time->m = in.time->h = in.time->i = in.time->s = in.time->f = in.time->dst = in.time->z = TIMELIB_UNSET;
h                24667 ext/date/lib/parse_date.c 	in.time->h = TIMELIB_UNSET;
h                24686 ext/date/lib/parse_date.c 	if (in.time->have_time && !timelib_valid_time( in.time->h, in.time->i, in.time->s)) {
h                24716 ext/date/lib/parse_date.c 	time->h = time->i = time->s = 0;
h                24728 ext/date/lib/parse_date.c 	if (time->h == TIMELIB_UNSET ) time->h = 0;
h                24755 ext/date/lib/parse_date.c 	in.time->h = TIMELIB_UNSET;
h                24842 ext/date/lib/parse_date.c 				if ((s->time->h = timelib_get_nr((char **) &ptr, 2)) == TIMELIB_UNSET) {
h                24845 ext/date/lib/parse_date.c 				if (s->time->h > 12) {
h                24852 ext/date/lib/parse_date.c 				if ((s->time->h = timelib_get_nr((char **) &ptr, 2)) == TIMELIB_UNSET) {
h                24858 ext/date/lib/parse_date.c 				if (s->time->h == TIMELIB_UNSET) {
h                24860 ext/date/lib/parse_date.c 				} else if ((tmp = timelib_meridian_with_check((char **) &ptr, s->time->h)) == TIMELIB_UNSET) {
h                24863 ext/date/lib/parse_date.c 					s->time->h += tmp;
h                24918 ext/date/lib/parse_date.c 				s->time->h = s->time->i = s->time->s = 0;
h                25036 ext/date/lib/parse_date.c 	if (s->time->h != TIMELIB_UNSET || s->time->i != TIMELIB_UNSET || s->time->s != TIMELIB_UNSET) {
h                25037 ext/date/lib/parse_date.c 		if (s->time->h == TIMELIB_UNSET ) {
h                25038 ext/date/lib/parse_date.c 			s->time->h = 0;
h                25049 ext/date/lib/parse_date.c 	if (s->time->h != TIMELIB_UNSET && s->time->i != TIMELIB_UNSET &&
h                25051 ext/date/lib/parse_date.c 		!timelib_valid_time( s->time->h, s->time->i, s->time->s)) {
h                25072 ext/date/lib/parse_date.c 		parsed->h = 0;
h                25080 ext/date/lib/parse_date.c 	if (parsed->h == TIMELIB_UNSET) parsed->h = now->h != TIMELIB_UNSET ? now->h : 0;
h                25127 ext/date/lib/parse_date.c 		time.y, time.m, time.d, time.h, time.i, time.s, time.f, time.z, time.dst);
h                25130 ext/date/lib/parse_date.c 			time.relative.y, time.relative.m, time.relative.d, time.relative.h, time.relative.i, time.relative.s);
h                 369 ext/date/lib/parse_iso_intervals.c 				case 'H': s->period->h = nr; break;
h                 695 ext/date/lib/parse_iso_intervals.c 		s->period->h = timelib_get_unsigned_nr((char **) &ptr, 2);
h                 823 ext/date/lib/parse_iso_intervals.c 		current->h = timelib_get_nr((char **) &ptr, 2);
h                 960 ext/date/lib/parse_iso_intervals.c 	in.begin->h = TIMELIB_UNSET;
h                 973 ext/date/lib/parse_iso_intervals.c 	in.end->h = TIMELIB_UNSET;
h                 986 ext/date/lib/parse_iso_intervals.c 	in.period->h = 0;
h                 219 ext/date/lib/timelib.c void timelib_decimal_hour_to_hms(double h, int *hour, int *min, int *sec)
h                 221 ext/date/lib/timelib.c 	*hour = floor(h);
h                 222 ext/date/lib/timelib.c 	*min =  floor((h - *hour) * 60);
h                 223 ext/date/lib/timelib.c 	*sec =  (h - *hour - ((float) *min / 60)) * 3600;
h                 232 ext/date/lib/timelib.c 		d->sse, d->y < 0 ? "-" : "", TIMELIB_LLABS(d->y), d->m, d->d, d->h, d->i, d->s);
h                 262 ext/date/lib/timelib.c 				d->relative.y, d->relative.m, d->relative.d, d->relative.h, d->relative.i, d->relative.s);
h                 297 ext/date/lib/timelib.c 		d->y, d->m, d->d, d->h, d->i, d->s, d->days, d->invert ? " inverted" : "");
h                  83 ext/date/lib/timelib.h int timelib_valid_time(timelib_sll h, timelib_sll i, timelib_sll s);
h                 152 ext/date/lib/timelib.h void timelib_decimal_hour_to_hms(double h, int *hour, int *min, int *sec);
h                 218 ext/date/lib/timelib_structs.h 	timelib_sll h, i, s; /* Hours, mInutes and Seconds */
h                 241 ext/date/lib/timelib_structs.h 	timelib_sll      h, i, s;     /* Hour, mInute, Second */
h                 177 ext/date/lib/tm2unixtime.c 	do_range_limit(0, 60, 60, &rt->i, &rt->h);
h                 178 ext/date/lib/tm2unixtime.c 	do_range_limit(0, 24, 24, &rt->h, &rt->d);
h                 188 ext/date/lib/tm2unixtime.c 	if (time->s != TIMELIB_UNSET) do_range_limit(0, 60, 60, &time->i, &time->h);
h                 189 ext/date/lib/tm2unixtime.c 	if (time->s != TIMELIB_UNSET) do_range_limit(0, 24, 24, &time->h, &time->d);
h                 206 ext/date/lib/tm2unixtime.c 		time->h += time->relative.h;
h                 451 ext/date/lib/tm2unixtime.c 	res += do_time(time->h, time->i, time->s);
h                 469 ext/date/lib/tm2unixtime.c 		time.y, time.m, time.d, time.h, time.i, time.s, time.f, time.z, time.dst);
h                 472 ext/date/lib/tm2unixtime.c 			time.relative.y, time.relative.m, time.relative.d, time.relative.h, time.relative.i, time.relative.s);
h                 130 ext/date/lib/unixtime2tm.c 	tm->h = hours;
h                1137 ext/date/php_date.c 			case 'a': length = slprintf(buffer, 32, "%s", t->h >= 12 ? "pm" : "am"); break;
h                1138 ext/date/php_date.c 			case 'A': length = slprintf(buffer, 32, "%s", t->h >= 12 ? "PM" : "AM"); break;
h                1148 ext/date/php_date.c 			case 'g': length = slprintf(buffer, 32, "%d", (t->h % 12) ? (int) t->h % 12 : 12); break;
h                1149 ext/date/php_date.c 			case 'G': length = slprintf(buffer, 32, "%d", (int) t->h); break;
h                1150 ext/date/php_date.c 			case 'h': length = slprintf(buffer, 32, "%02d", (t->h % 12) ? (int) t->h % 12 : 12); break;
h                1151 ext/date/php_date.c 			case 'H': length = slprintf(buffer, 32, "%02d", (int) t->h); break;
h                1192 ext/date/php_date.c 											(int) t->h, (int) t->i, (int) t->s,
h                1201 ext/date/php_date.c 											(int) t->y, (int) t->h, (int) t->i, (int) t->s,
h                1345 ext/date/php_date.c 		case 'g': case 'h': retval = (int) ((t->h % 12) ? (int) t->h % 12 : 12); break;
h                1346 ext/date/php_date.c 		case 'H': case 'G': retval = (int) t->h; break;
h                1557 ext/date/php_date.c 			now->h = hou;
h                1671 ext/date/php_date.c 	ta.tm_hour  = ts->h;
h                1779 ext/date/php_date.c 		add_assoc_long(return_value, "tm_hour",  ts->h);
h                1789 ext/date/php_date.c 		add_next_index_long(return_value, ts->h);
h                1824 ext/date/php_date.c 	add_assoc_long(return_value, "hours", ts->h);
h                2436 ext/date/php_date.c 	PHP_DATE_INTERVAL_ADD_PROPERTY("h", h);
h                2970 ext/date/php_date.c 	PHP_DATE_PARSE_DATE_SET_TIME_ELEMENT(hour,      h);
h                3014 ext/date/php_date.c 		add_assoc_long(element, "hour",   parsed_time->relative.h);
h                3127 ext/date/php_date.c 	if (tmp_time->h != -99999) {
h                3128 ext/date/php_date.c 		dateobj->time->h = tmp_time->h;
h                3436 ext/date/php_date.c static void php_date_time_set(zval *object, long h, long i, long s, zval *return_value TSRMLS_DC)
h                3442 ext/date/php_date.c 	dateobj->time->h = h;
h                3454 ext/date/php_date.c 	long  h, i, s = 0;
h                3456 ext/date/php_date.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Oll|l", &object, date_ce_date, &h, &i, &s) == FAILURE) {
h                3460 ext/date/php_date.c 	php_date_time_set(object, h, i, s, return_value TSRMLS_CC);
h                3471 ext/date/php_date.c 	long  h, i, s = 0;
h                3473 ext/date/php_date.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Oll|l", &object, date_ce_immutable, &h, &i, &s) == FAILURE) {
h                3478 ext/date/php_date.c 	php_date_time_set(new_object, h, i, s, return_value TSRMLS_CC);
h                4075 ext/date/php_date.c 		GET_VALUE_FROM_STRUCT(h, "h");
h                4150 ext/date/php_date.c 		SET_VALUE_FROM_STRUCT(h, "h");
h                4226 ext/date/php_date.c 	PHP_DATE_INTERVAL_READ_PROPERTY("h", h, timelib_sll, -1)
h                4327 ext/date/php_date.c 				case 'H': length = slprintf(buffer, 32, "%02d", (int) t->h); break;
h                4328 ext/date/php_date.c 				case 'h': length = slprintf(buffer, 32, "%d", (int) t->h); break;
h                  70 ext/dba/libcdb/cdb.c 	uint32 h;
h                  73 ext/dba/libcdb/cdb.c 	h = CDB_HASHSTART;
h                  75 ext/dba/libcdb/cdb.c 		h = ( h + (h << 5)) ^ (*b++);
h                  77 ext/dba/libcdb/cdb.c 	return h;
h                  76 ext/dba/libcdb/cdb_make.c int cdb_make_addend(struct cdb_make *c, unsigned int keylen, unsigned int datalen, uint32 h TSRMLS_DC)
h                  89 ext/dba/libcdb/cdb_make.c 	head->hp[head->num].h = h;
h                 156 ext/dba/libcdb/cdb_make.c 		++c->count[255 & x->hp[i].h];
h                 189 ext/dba/libcdb/cdb_make.c 		c->split[--c->start[255 & x->hp[i].h]] = x->hp[i];
h                 200 ext/dba/libcdb/cdb_make.c 			c->hash[u].h = c->hash[u].p = 0;
h                 204 ext/dba/libcdb/cdb_make.c 			where = (hp->h >> 8) % len;
h                 212 ext/dba/libcdb/cdb_make.c 			uint32_pack(buf, c->hash[u].h);
h                  32 ext/dba/libcdb/cdb_make.h 	uint32 h;
h                1092 ext/ereg/regex/regcomp.c 	register uch h = cs->hash;
h                1100 ext/ereg/regex/regcomp.c 		if (cs2->hash == h && cs2 != cs) {
h                  42 ext/fileinfo/libmagic/apprentice.c #include <stdlib.h>
h                  33 ext/fileinfo/libmagic/apptype.c #include <stdlib.h>
h                  34 ext/fileinfo/libmagic/apptype.c #include <string.h>
h                  37 ext/fileinfo/libmagic/apptype.c #include <io.h>
h                  42 ext/fileinfo/libmagic/ascmagic.c #include <string.h>
h                  43 ext/fileinfo/libmagic/ascmagic.c #include <memory.h>
h                  44 ext/fileinfo/libmagic/ascmagic.c #include <ctype.h>
h                  45 ext/fileinfo/libmagic/ascmagic.c #include <stdlib.h>
h                  47 ext/fileinfo/libmagic/ascmagic.c #include <unistd.h>
h                  41 ext/fileinfo/libmagic/cdf.c #include <assert.h>
h                  43 ext/fileinfo/libmagic/cdf.c #include <err.h>
h                  45 ext/fileinfo/libmagic/cdf.c #include <stdlib.h>
h                  50 ext/fileinfo/libmagic/cdf.c #include <unistd.h>
h                 175 ext/fileinfo/libmagic/cdf.c cdf_swap_header(cdf_header_t *h)
h                 179 ext/fileinfo/libmagic/cdf.c 	h->h_magic = CDF_TOLE8(h->h_magic);
h                 180 ext/fileinfo/libmagic/cdf.c 	h->h_uuid[0] = CDF_TOLE8(h->h_uuid[0]);
h                 181 ext/fileinfo/libmagic/cdf.c 	h->h_uuid[1] = CDF_TOLE8(h->h_uuid[1]);
h                 182 ext/fileinfo/libmagic/cdf.c 	h->h_revision = CDF_TOLE2(h->h_revision);
h                 183 ext/fileinfo/libmagic/cdf.c 	h->h_version = CDF_TOLE2(h->h_version);
h                 184 ext/fileinfo/libmagic/cdf.c 	h->h_byte_order = CDF_TOLE2(h->h_byte_order);
h                 185 ext/fileinfo/libmagic/cdf.c 	h->h_sec_size_p2 = CDF_TOLE2(h->h_sec_size_p2);
h                 186 ext/fileinfo/libmagic/cdf.c 	h->h_short_sec_size_p2 = CDF_TOLE2(h->h_short_sec_size_p2);
h                 187 ext/fileinfo/libmagic/cdf.c 	h->h_num_sectors_in_sat = CDF_TOLE4(h->h_num_sectors_in_sat);
h                 188 ext/fileinfo/libmagic/cdf.c 	h->h_secid_first_directory = CDF_TOLE4(h->h_secid_first_directory);
h                 189 ext/fileinfo/libmagic/cdf.c 	h->h_min_size_standard_stream =
h                 190 ext/fileinfo/libmagic/cdf.c 	    CDF_TOLE4(h->h_min_size_standard_stream);
h                 191 ext/fileinfo/libmagic/cdf.c 	h->h_secid_first_sector_in_short_sat =
h                 192 ext/fileinfo/libmagic/cdf.c 	    CDF_TOLE4((uint32_t)h->h_secid_first_sector_in_short_sat);
h                 193 ext/fileinfo/libmagic/cdf.c 	h->h_num_sectors_in_short_sat =
h                 194 ext/fileinfo/libmagic/cdf.c 	    CDF_TOLE4(h->h_num_sectors_in_short_sat);
h                 195 ext/fileinfo/libmagic/cdf.c 	h->h_secid_first_sector_in_master_sat =
h                 196 ext/fileinfo/libmagic/cdf.c 	    CDF_TOLE4((uint32_t)h->h_secid_first_sector_in_master_sat);
h                 197 ext/fileinfo/libmagic/cdf.c 	h->h_num_sectors_in_master_sat =
h                 198 ext/fileinfo/libmagic/cdf.c 	    CDF_TOLE4(h->h_num_sectors_in_master_sat);
h                 199 ext/fileinfo/libmagic/cdf.c 	for (i = 0; i < __arraycount(h->h_master_sat); i++)
h                 200 ext/fileinfo/libmagic/cdf.c 		h->h_master_sat[i] = CDF_TOLE4((uint32_t)h->h_master_sat[i]);
h                 204 ext/fileinfo/libmagic/cdf.c cdf_unpack_header(cdf_header_t *h, char *buf)
h                 209 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_magic);
h                 210 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACKA(h->h_uuid);
h                 211 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_revision);
h                 212 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_version);
h                 213 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_byte_order);
h                 214 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_sec_size_p2);
h                 215 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_short_sec_size_p2);
h                 216 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACKA(h->h_unused0);
h                 217 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_num_sectors_in_sat);
h                 218 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_secid_first_directory);
h                 219 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACKA(h->h_unused1);
h                 220 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_min_size_standard_stream);
h                 221 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_secid_first_sector_in_short_sat);
h                 222 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_num_sectors_in_short_sat);
h                 223 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_secid_first_sector_in_master_sat);
h                 224 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_num_sectors_in_master_sat);
h                 225 ext/fileinfo/libmagic/cdf.c 	for (i = 0; i < __arraycount(h->h_master_sat); i++)
h                 226 ext/fileinfo/libmagic/cdf.c 		CDF_UNPACK(h->h_master_sat[i]);
h                 275 ext/fileinfo/libmagic/cdf.c cdf_check_stream_offset(const cdf_stream_t *sst, const cdf_header_t *h,
h                 280 ext/fileinfo/libmagic/cdf.c 	size_t ss = sst->sst_dirlen < h->h_min_size_standard_stream ?
h                 281 ext/fileinfo/libmagic/cdf.c 	    CDF_SHORT_SEC_SIZE(h) : CDF_SEC_SIZE(h);
h                 321 ext/fileinfo/libmagic/cdf.c cdf_read_header(const cdf_info_t *info, cdf_header_t *h)
h                 328 ext/fileinfo/libmagic/cdf.c 	cdf_unpack_header(h, buf);
h                 329 ext/fileinfo/libmagic/cdf.c 	cdf_swap_header(h);
h                 330 ext/fileinfo/libmagic/cdf.c 	if (h->h_magic != CDF_MAGIC) {
h                 333 ext/fileinfo/libmagic/cdf.c 		    (unsigned long long)h->h_magic,
h                 337 ext/fileinfo/libmagic/cdf.c 	if (h->h_sec_size_p2 > 20) {
h                 338 ext/fileinfo/libmagic/cdf.c 		DPRINTF(("Bad sector size 0x%u\n", h->h_sec_size_p2));
h                 341 ext/fileinfo/libmagic/cdf.c 	if (h->h_short_sec_size_p2 > 20) {
h                 343 ext/fileinfo/libmagic/cdf.c 		    h->h_short_sec_size_p2));
h                 355 ext/fileinfo/libmagic/cdf.c     const cdf_header_t *h, cdf_secid_t id)
h                 357 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SEC_SIZE(h);
h                 358 ext/fileinfo/libmagic/cdf.c 	size_t pos = CDF_SEC_POS(h, id);
h                 365 ext/fileinfo/libmagic/cdf.c     size_t len, const cdf_header_t *h, cdf_secid_t id)
h                 367 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SHORT_SEC_SIZE(h);
h                 368 ext/fileinfo/libmagic/cdf.c 	size_t pos = CDF_SHORT_SEC_POS(h, id);
h                 370 ext/fileinfo/libmagic/cdf.c 	if (pos + len > CDF_SEC_SIZE(h) * sst->sst_len) {
h                 373 ext/fileinfo/libmagic/cdf.c 		    pos + len, CDF_SEC_SIZE(h) * sst->sst_len));
h                 385 ext/fileinfo/libmagic/cdf.c cdf_read_sat(const cdf_info_t *info, cdf_header_t *h, cdf_sat_t *sat)
h                 388 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SEC_SIZE(h);
h                 392 ext/fileinfo/libmagic/cdf.c 	for (i = 0; i < __arraycount(h->h_master_sat); i++)
h                 393 ext/fileinfo/libmagic/cdf.c 		if (h->h_master_sat[i] == CDF_SECID_FREE)
h                 398 ext/fileinfo/libmagic/cdf.c 	    h->h_num_sectors_in_master_sat > CDF_SEC_LIMIT / nsatpersec) ||
h                 401 ext/fileinfo/libmagic/cdf.c 		    SIZE_T_FORMAT "u\n", h->h_num_sectors_in_master_sat, i));
h                 406 ext/fileinfo/libmagic/cdf.c 	sat->sat_len = h->h_num_sectors_in_master_sat * nsatpersec + i;
h                 413 ext/fileinfo/libmagic/cdf.c 	for (i = 0; i < __arraycount(h->h_master_sat); i++) {
h                 414 ext/fileinfo/libmagic/cdf.c 		if (h->h_master_sat[i] < 0)
h                 416 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_sector(info, sat->sat_tab, ss * i, ss, h,
h                 417 ext/fileinfo/libmagic/cdf.c 		    h->h_master_sat[i]) != (ssize_t)ss) {
h                 418 ext/fileinfo/libmagic/cdf.c 			DPRINTF(("Reading sector %d", h->h_master_sat[i]));
h                 426 ext/fileinfo/libmagic/cdf.c 	mid = h->h_secid_first_sector_in_master_sat;
h                 427 ext/fileinfo/libmagic/cdf.c 	for (j = 0; j < h->h_num_sectors_in_master_sat; j++) {
h                 435 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_sector(info, msa, 0, ss, h, mid) != (ssize_t)ss) {
h                 449 ext/fileinfo/libmagic/cdf.c 			if (cdf_read_sector(info, sat->sat_tab, ss * i, ss, h,
h                 496 ext/fileinfo/libmagic/cdf.c cdf_read_long_sector_chain(const cdf_info_t *info, const cdf_header_t *h,
h                 499 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SEC_SIZE(h), i, j;
h                 524 ext/fileinfo/libmagic/cdf.c 		if ((nr = cdf_read_sector(info, scn->sst_tab, i * ss, ss, h,
h                 542 ext/fileinfo/libmagic/cdf.c cdf_read_short_sector_chain(const cdf_header_t *h,
h                 546 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SHORT_SEC_SIZE(h), i, j;
h                 547 ext/fileinfo/libmagic/cdf.c 	scn->sst_len = cdf_count_chain(ssat, sid, CDF_SEC_SIZE(h));
h                 570 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_short_sector(sst, scn->sst_tab, i * ss, ss, h,
h                 584 ext/fileinfo/libmagic/cdf.c cdf_read_sector_chain(const cdf_info_t *info, const cdf_header_t *h,
h                 589 ext/fileinfo/libmagic/cdf.c 	if (len < h->h_min_size_standard_stream && sst->sst_tab != NULL)
h                 590 ext/fileinfo/libmagic/cdf.c 		return cdf_read_short_sector_chain(h, ssat, sst, sid, len,
h                 593 ext/fileinfo/libmagic/cdf.c 		return cdf_read_long_sector_chain(info, h, sat, sid, len, scn);
h                 597 ext/fileinfo/libmagic/cdf.c cdf_read_dir(const cdf_info_t *info, const cdf_header_t *h,
h                 601 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SEC_SIZE(h), ns, nd;
h                 603 ext/fileinfo/libmagic/cdf.c 	cdf_secid_t sid = h->h_secid_first_directory;
h                 628 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_sector(info, buf, 0, ss, h, sid) != (ssize_t)ss) {
h                 651 ext/fileinfo/libmagic/cdf.c cdf_read_ssat(const cdf_info_t *info, const cdf_header_t *h,
h                 655 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SEC_SIZE(h);
h                 656 ext/fileinfo/libmagic/cdf.c 	cdf_secid_t sid = h->h_secid_first_sector_in_short_sat;
h                 658 ext/fileinfo/libmagic/cdf.c 	ssat->sat_len = cdf_count_chain(sat, sid, CDF_SEC_SIZE(h));
h                 679 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_sector(info, ssat->sat_tab, i * ss, ss, h, sid) !=
h                 693 ext/fileinfo/libmagic/cdf.c cdf_read_short_stream(const cdf_info_t *info, const cdf_header_t *h,
h                 715 ext/fileinfo/libmagic/cdf.c 	return	cdf_read_long_sector_chain(info, h, sat,
h                 734 ext/fileinfo/libmagic/cdf.c cdf_read_summary_info(const cdf_info_t *info, const cdf_header_t *h,
h                 754 ext/fileinfo/libmagic/cdf.c 	return cdf_read_sector_chain(info, h, sat, ssat, sst,
h                 759 ext/fileinfo/libmagic/cdf.c cdf_read_property_info(const cdf_stream_t *sst, const cdf_header_t *h,
h                 780 ext/fileinfo/libmagic/cdf.c 	if (cdf_check_stream_offset(sst, h, shp, sizeof(*shp), __LINE__) == -1)
h                 815 ext/fileinfo/libmagic/cdf.c 	if (cdf_check_stream_offset(sst, h, e, 0, __LINE__) == -1)
h                 819 ext/fileinfo/libmagic/cdf.c 		if (cdf_check_stream_offset(sst, h, p, tail * sizeof(uint32_t),
h                 958 ext/fileinfo/libmagic/cdf.c cdf_unpack_summary_info(const cdf_stream_t *sst, const cdf_header_t *h,
h                 968 ext/fileinfo/libmagic/cdf.c 	if (cdf_check_stream_offset(sst, h, si, sizeof(*si), __LINE__) == -1 ||
h                 969 ext/fileinfo/libmagic/cdf.c 	    cdf_check_stream_offset(sst, h, sd, sizeof(*sd), __LINE__) == -1)
h                 980 ext/fileinfo/libmagic/cdf.c 	if (cdf_read_property_info(sst, h, CDF_TOLE4(sd->sd_offset), info,
h                1073 ext/fileinfo/libmagic/cdf.c cdf_dump_header(const cdf_header_t *h)
h                1077 ext/fileinfo/libmagic/cdf.c #define DUMP(a, b) (void)fprintf(stderr, "%40.40s = " a "\n", # b, h->h_ ## b)
h                1079 ext/fileinfo/libmagic/cdf.c     h->h_ ## b, 1 << h->h_ ## b)
h                1092 ext/fileinfo/libmagic/cdf.c 	for (i = 0; i < __arraycount(h->h_master_sat); i++) {
h                1093 ext/fileinfo/libmagic/cdf.c 		if (h->h_master_sat[i] == CDF_SECID_FREE)
h                1096 ext/fileinfo/libmagic/cdf.c 		    "master_sat", i, h->h_master_sat[i]);
h                1140 ext/fileinfo/libmagic/cdf.c cdf_dump_stream(const cdf_header_t *h, const cdf_stream_t *sst)
h                1142 ext/fileinfo/libmagic/cdf.c 	size_t ss = sst->sst_dirlen < h->h_min_size_standard_stream ?
h                1143 ext/fileinfo/libmagic/cdf.c 	    CDF_SHORT_SEC_SIZE(h) : CDF_SEC_SIZE(h);
h                1148 ext/fileinfo/libmagic/cdf.c cdf_dump_dir(const cdf_info_t *info, const cdf_header_t *h,
h                1189 ext/fileinfo/libmagic/cdf.c 			if (cdf_read_sector_chain(info, h, sat, ssat, sst,
h                1195 ext/fileinfo/libmagic/cdf.c 			cdf_dump_stream(h, &scn);
h                1279 ext/fileinfo/libmagic/cdf.c cdf_dump_summary_info(const cdf_header_t *h, const cdf_stream_t *sst)
h                1286 ext/fileinfo/libmagic/cdf.c 	(void)&h;
h                1287 ext/fileinfo/libmagic/cdf.c 	if (cdf_unpack_summary_info(sst, h, &ssi, &info, &count) == -1)
h                1307 ext/fileinfo/libmagic/cdf.c 	cdf_header_t h;
h                1324 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_header(&info, &h) == -1)
h                1327 ext/fileinfo/libmagic/cdf.c 		cdf_dump_header(&h);
h                1330 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_sat(&info, &h, &sat) == -1)
h                1333 ext/fileinfo/libmagic/cdf.c 		cdf_dump_sat("SAT", &sat, CDF_SEC_SIZE(&h));
h                1336 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_ssat(&info, &h, &sat, &ssat) == -1)
h                1339 ext/fileinfo/libmagic/cdf.c 		cdf_dump_sat("SSAT", &ssat, CDF_SHORT_SEC_SIZE(&h));
h                1342 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_dir(&info, &h, &sat, &dir) == -1)
h                1345 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_short_stream(&info, &h, &sat, &dir, &sst) == -1)
h                1348 ext/fileinfo/libmagic/cdf.c 		cdf_dump_stream(&h, &sst);
h                1352 ext/fileinfo/libmagic/cdf.c 		cdf_dump_dir(&info, &h, &sat, &ssat, &sst, &dir);
h                1356 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_summary_info(&info, &h, &sat, &ssat, &sst, &dir,
h                1360 ext/fileinfo/libmagic/cdf.c 		cdf_dump_summary_info(&h, &scn);
h                  85 ext/fileinfo/libmagic/cdf.h #define CDF_SEC_SIZE(h) ((size_t)(1 << (h)->h_sec_size_p2))
h                  86 ext/fileinfo/libmagic/cdf.h #define CDF_SEC_POS(h, secid) (CDF_SEC_SIZE(h) + (secid) * CDF_SEC_SIZE(h))
h                  87 ext/fileinfo/libmagic/cdf.h #define CDF_SHORT_SEC_SIZE(h)	((size_t)(1 << (h)->h_short_sec_size_p2))
h                  88 ext/fileinfo/libmagic/cdf.h #define CDF_SHORT_SEC_POS(h, secid) ((secid) * CDF_SHORT_SEC_SIZE(h))
h                  33 ext/fileinfo/libmagic/cdf_time.c #include <time.h>
h                  35 ext/fileinfo/libmagic/cdf_time.c #include <err.h>
h                  37 ext/fileinfo/libmagic/cdf_time.c #include <string.h>
h                  43 ext/fileinfo/libmagic/compress.c #include <stdlib.h>
h                  45 ext/fileinfo/libmagic/compress.c #include <unistd.h>
h                  47 ext/fileinfo/libmagic/compress.c #include <string.h>
h                  48 ext/fileinfo/libmagic/compress.c #include <errno.h>
h                  49 ext/fileinfo/libmagic/compress.c #include <sys/types.h>
h                  51 ext/fileinfo/libmagic/compress.c #include <sys/ioctl.h>
h                  54 ext/fileinfo/libmagic/compress.c #include <sys/wait.h>
h                  57 ext/fileinfo/libmagic/compress.c #include <sys/time.h>
h                  42 ext/fileinfo/libmagic/encoding.c #include <string.h>
h                  43 ext/fileinfo/libmagic/encoding.c #include <memory.h>
h                  44 ext/fileinfo/libmagic/encoding.c #include <stdlib.h>
h                 148 ext/fileinfo/libmagic/file.h 	uint16_t h;
h                  39 ext/fileinfo/libmagic/fsmagic.c #include <string.h>
h                  41 ext/fileinfo/libmagic/fsmagic.c #include <unistd.h>
h                  43 ext/fileinfo/libmagic/fsmagic.c #include <stdlib.h>
h                  46 ext/fileinfo/libmagic/fsmagic.c # include <sys/mkdev.h>
h                  34 ext/fileinfo/libmagic/funcs.c #include <stdarg.h>
h                  35 ext/fileinfo/libmagic/funcs.c #include <stdlib.h>
h                  36 ext/fileinfo/libmagic/funcs.c #include <string.h>
h                  37 ext/fileinfo/libmagic/funcs.c #include <ctype.h>
h                  39 ext/fileinfo/libmagic/funcs.c #include <wchar.h>
h                  42 ext/fileinfo/libmagic/funcs.c #include <wctype.h>
h                  45 ext/fileinfo/libmagic/funcs.c #include <locale.h>
h                  47 ext/fileinfo/libmagic/is_tar.c #include <string.h>
h                  48 ext/fileinfo/libmagic/is_tar.c #include <ctype.h>
h                  36 ext/fileinfo/libmagic/magic.c #include <stdlib.h>
h                  40 ext/fileinfo/libmagic/magic.c #include <unistd.h>
h                  42 ext/fileinfo/libmagic/magic.c #include <string.h>
h                  50 ext/fileinfo/libmagic/magic.c #include <shlwapi.h>
h                  53 ext/fileinfo/libmagic/magic.c #include <limits.h>	/* for PIPE_BUF */
h                  56 ext/fileinfo/libmagic/magic.c # include <sys/time.h>
h                  59 ext/fileinfo/libmagic/magic.c #  include <sys/utime.h>
h                  61 ext/fileinfo/libmagic/magic.c #  include <utime.h>
h                  66 ext/fileinfo/libmagic/magic.c #include <unistd.h>	/* for read() */
h                  41 ext/fileinfo/libmagic/print.c #include <stdio.h>
h                  42 ext/fileinfo/libmagic/print.c #include <string.h>
h                  43 ext/fileinfo/libmagic/print.c #include <stdarg.h>
h                  44 ext/fileinfo/libmagic/print.c #include <stdlib.h>
h                  46 ext/fileinfo/libmagic/print.c #include <unistd.h>
h                  48 ext/fileinfo/libmagic/print.c #include <time.h>
h                  32 ext/fileinfo/libmagic/readcdf.c #include <stdlib.h>
h                  36 ext/fileinfo/libmagic/readcdf.c #include <unistd.h>
h                  38 ext/fileinfo/libmagic/readcdf.c #include <string.h>
h                  39 ext/fileinfo/libmagic/readcdf.c #include <time.h>
h                  40 ext/fileinfo/libmagic/readcdf.c #include <ctype.h>
h                  42 ext/fileinfo/libmagic/readcdf.c #include <locale.h>
h                 262 ext/fileinfo/libmagic/readcdf.c cdf_file_summary_info(struct magic_set *ms, const cdf_header_t *h,
h                 270 ext/fileinfo/libmagic/readcdf.c         if (cdf_unpack_summary_info(sst, h, &si, &info, &count) == -1)
h                 322 ext/fileinfo/libmagic/readcdf.c         cdf_header_t h;
h                 336 ext/fileinfo/libmagic/readcdf.c         if (cdf_read_header(&info, &h) == -1)
h                 339 ext/fileinfo/libmagic/readcdf.c         cdf_dump_header(&h);
h                 342 ext/fileinfo/libmagic/readcdf.c         if ((i = cdf_read_sat(&info, &h, &sat)) == -1) {
h                 347 ext/fileinfo/libmagic/readcdf.c         cdf_dump_sat("SAT", &sat, CDF_SEC_SIZE(&h));
h                 350 ext/fileinfo/libmagic/readcdf.c         if ((i = cdf_read_ssat(&info, &h, &sat, &ssat)) == -1) {
h                 355 ext/fileinfo/libmagic/readcdf.c         cdf_dump_sat("SSAT", &ssat, CDF_SHORT_SEC_SIZE(&h));
h                 358 ext/fileinfo/libmagic/readcdf.c         if ((i = cdf_read_dir(&info, &h, &sat, &dir)) == -1) {
h                 363 ext/fileinfo/libmagic/readcdf.c         if ((i = cdf_read_short_stream(&info, &h, &sat, &dir, &sst,
h                 369 ext/fileinfo/libmagic/readcdf.c         cdf_dump_dir(&info, &h, &sat, &ssat, &sst, &dir);
h                 372 ext/fileinfo/libmagic/readcdf.c         if ((i = cdf_read_summary_info(&info, &h, &sat, &ssat, &sst, &dir,
h                 383 ext/fileinfo/libmagic/readcdf.c         cdf_dump_summary_info(&h, &scn);
h                 385 ext/fileinfo/libmagic/readcdf.c         if ((i = cdf_file_summary_info(ms, &h, &scn, root_storage)) < 0)
h                  40 ext/fileinfo/libmagic/softmagic.c #include <stdio.h>
h                 411 ext/fileinfo/libmagic/softmagic.c 		v = file_signextend(ms, m, (uint64_t)p->h);
h                 838 ext/fileinfo/libmagic/softmagic.c 	DO_CVT(h, (uint16_t));
h                 939 ext/fileinfo/libmagic/softmagic.c 		p->h = (short)((p->hs[0]<<8)|(p->hs[1]));
h                 961 ext/fileinfo/libmagic/softmagic.c 		p->h = (short)((p->hs[1]<<8)|(p->hs[0]));
h                1198 ext/fileinfo/libmagic/softmagic.c 				off = q->h;
h                1373 ext/fileinfo/libmagic/softmagic.c 					offset = p->h & off;
h                1376 ext/fileinfo/libmagic/softmagic.c 					offset = p->h | off;
h                1379 ext/fileinfo/libmagic/softmagic.c 					offset = p->h ^ off;
h                1382 ext/fileinfo/libmagic/softmagic.c 					offset = p->h + off;
h                1385 ext/fileinfo/libmagic/softmagic.c 					offset = p->h - off;
h                1388 ext/fileinfo/libmagic/softmagic.c 					offset = p->h * off;
h                1391 ext/fileinfo/libmagic/softmagic.c 					offset = p->h / off;
h                1394 ext/fileinfo/libmagic/softmagic.c 					offset = p->h % off;
h                1399 ext/fileinfo/libmagic/softmagic.c 				offset = p->h;
h                1941 ext/fileinfo/libmagic/softmagic.c 		v = p->h;
h                 192 ext/gd/gd.c    	ZEND_ARG_INFO(0, h)
h                 201 ext/gd/gd.c    	ZEND_ARG_INFO(0, h)
h                 533 ext/gd/gd.c    	ZEND_ARG_INFO(0, h)
h                 544 ext/gd/gd.c    	ZEND_ARG_INFO(0, h)
h                1482 ext/gd/gd.c    	body_size = font->w * font->h * font->nchars;
h                1485 ext/gd/gd.c    		font->h = FLIPWORD(font->h);
h                1487 ext/gd/gd.c    		body_size = font->w * font->h * font->nchars;
h                1490 ext/gd/gd.c    	if (overflow2(font->nchars, font->h) || overflow2(font->nchars * font->h, font->w )) {
h                1735 ext/gd/gd.c    	long cx, cy, w, h, color;
h                1738 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllll", &IM, &cx, &cy, &w, &h, &color) == FAILURE) {
h                1744 ext/gd/gd.c    	gdImageFilledEllipse(im, cx, cy, w, h, color);
h                1755 ext/gd/gd.c    	long cx, cy, w, h, ST, E, col, style;
h                1759 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rllllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col, &style) == FAILURE) {
h                1775 ext/gd/gd.c    	gdImageFilledArc(im, cx, cy, w, h, st, e, col, style);
h                3193 ext/gd/gd.c    	long cx, cy, w, h, ST, E, col;
h                3197 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col) == FAILURE) {
h                3213 ext/gd/gd.c    	gdImageArc(im, cx, cy, w, h, st, e, col);
h                3223 ext/gd/gd.c    	long cx, cy, w, h, color;
h                3226 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllll", &IM, &cx, &cy, &w, &h, &color) == FAILURE) {
h                3232 ext/gd/gd.c    	gdImageEllipse(im, cx, cy, w, h, color);
h                3479 ext/gd/gd.c    	RETURN_LONG(arg ? font->h : font->w);
h                3511 ext/gd/gd.c    	fline = (c - f->offset) * f->h * f->w;
h                3513 ext/gd/gd.c    		for (px = x; (px < (x + f->h)); px++) {
h                 302 ext/gd/libgd/gd.c #define RETURN_HWB(h, w, b) {HWB->H = h; HWB->W = w; HWB->B = b; return HWB;}
h                 399 ext/gd/libgd/gd.c 	float h = HWB.H, w = HWB.W, b = HWB.B, v, n, f;
h                 403 ext/gd/libgd/gd.c 	if (h == HWB_UNDEFINED) {
h                 406 ext/gd/libgd/gd.c 	i = floor(h);
h                 407 ext/gd/libgd/gd.c 	f = h - i;
h                1555 ext/gd/libgd/gd.c 	fline = (c - f->offset) * f->h * f->w;
h                1556 ext/gd/libgd/gd.c 	for (py = y; (py < (y + f->h)); py++) {
h                1581 ext/gd/libgd/gd.c 	fline = (c - f->offset) * f->h * f->w;
h                1583 ext/gd/libgd/gd.c 		for (px = x; px < (x + f->h); px++) {
h                1668 ext/gd/libgd/gd.c void gdImageArc (gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color)
h                1671 ext/gd/libgd/gd.c 		gdImageEllipse(im, cx, cy, w, h, color);
h                1673 ext/gd/libgd/gd.c 		gdImageFilledArc(im, cx, cy, w, h, s, e, color, gdNoFill);
h                1677 ext/gd/libgd/gd.c void gdImageFilledArc (gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color, int style)
h                1711 ext/gd/libgd/gd.c 		y = ((long) gdSinT[i % 360] * (long) h / (2 * 1024)) + cy;
h                2162 ext/gd/libgd/gd.c void gdImageCopy (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h)
h                2177 ext/gd/libgd/gd.c 			for (y = 0; (y < h); y++) {
h                2185 ext/gd/libgd/gd.c 			for (y = 0; (y < h); y++) {
h                2200 ext/gd/libgd/gd.c 		for (y = srcY; (y < (srcY + h)); y++) {
h                2222 ext/gd/libgd/gd.c 	for (y = srcY; y < (srcY + h); y++) {
h                2261 ext/gd/libgd/gd.c void gdImageCopyMerge (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h, int pct)
h                2269 ext/gd/libgd/gd.c 	for (y = srcY; y < (srcY + h); y++) {
h                2301 ext/gd/libgd/gd.c void gdImageCopyMergeGray (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h, int pct)
h                2310 ext/gd/libgd/gd.c 	for (y = srcY; (y < (srcY + h)); y++) {
h                 292 ext/gd/libgd/gd.h 	int h;
h                 399 ext/gd/libgd/gd.h gdImagePtr gdImageCreateFromGd2Part(FILE *in, int srcx, int srcy, int w, int h);
h                 400 ext/gd/libgd/gd.h gdImagePtr gdImageCreateFromGd2PartCtx(gdIOCtxPtr in, int srcx, int srcy, int w, int h);
h                 647 ext/gd/libgd/gd.h void gdImageEllipse(gdImagePtr im, int cx, int cy, int w, int h, int c);
h                 666 ext/gd/libgd/gd.h void gdImageFilledArc(gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color, int style);
h                 667 ext/gd/libgd/gd.h void gdImageArc(gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color);
h                 668 ext/gd/libgd/gd.h void gdImageFilledEllipse(gdImagePtr im, int cx, int cy, int w, int h, int color);
h                 671 ext/gd/libgd/gd.h void gdImageCopy(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h);
h                 673 ext/gd/libgd/gd.h 			int srcX, int srcY, int w, int h, int pct);
h                 675 ext/gd/libgd/gd.h                         int srcX, int srcY, int w, int h, int pct);
h                  17 ext/gd/libgd/gd2time.c   int x, y, w, h;
h                  32 ext/gd/libgd/gd2time.c   h = atoi (argv[6]);
h                  34 ext/gd/libgd/gd2time.c   printf ("Extracting %d times from (%d, %d), size is %dx%d\n", c, x, y, w, h);
h                  46 ext/gd/libgd/gd2time.c       im = gdImageCreateFromGd2Part (in, x, y, w, h);
h                  17 ext/gd/libgd/gd_arc.c void gdImageEllipse(gdImagePtr im, int mx, int my, int w, int h, int c)
h                  23 ext/gd/libgd/gd_arc.c 	b=h>>1;
h                  56 ext/gd/libgd/gd_arc.c void gdImageFilledEllipse (gdImagePtr im, int mx, int my, int w, int h, int c)
h                  64 ext/gd/libgd/gd_arc.c 	b=h>>1;
h                  51 ext/gd/libgd/gd_arc_f_buggy.c   long h;			/* b * 2 */
h                 260 ext/gd/libgd/gd_arc_f_buggy.c   h = (long) height;
h                 263 ext/gd/libgd/gd_arc_f_buggy.c   hs = h * h;
h                 284 ext/gd/libgd/gd_arc_f_buggy.c   pt[2].y = h / 2;
h                 329 ext/gd/libgd/gd_arc_f_buggy.c   y2 = h;			/* Starting point is exactly on ellipse */
h                 477 ext/gd/libgd/gd_arc_f_buggy.c       y2 = h;			/* Starting point is exactly on ellipse */
h                 545 ext/gd/libgd/gd_arc_f_buggy.c   long h;			/* b * 2 */
h                 558 ext/gd/libgd/gd_arc_f_buggy.c   h = (long) ((height & 1) ? (height + 1) : (height));
h                 574 ext/gd/libgd/gd_arc_f_buggy.c       pt.y = h / 2;
h                 586 ext/gd/libgd/gd_arc_f_buggy.c       pt.y = -h / 2;
h                 614 ext/gd/libgd/gd_arc_f_buggy.c   hs = h * h;
h                 661 ext/gd/libgd/gd_arc_f_buggy.c       y2 = h;			/* Starting point is exactly on ellipse */
h                 390 ext/gd/libgd/gd_gd2.c gdImagePtr gdImageCreateFromGd2PartPtr (int size, void *data, int srcx, int srcy, int w, int h)
h                 394 ext/gd/libgd/gd_gd2.c 	im = gdImageCreateFromGd2PartCtx(in, srcx, srcy, w, h);
h                 400 ext/gd/libgd/gd_gd2.c gdImagePtr gdImageCreateFromGd2Part (FILE * inFile, int srcx, int srcy, int w, int h)
h                 405 ext/gd/libgd/gd_gd2.c 	im = gdImageCreateFromGd2PartCtx(in, srcx, srcy, w, h);
h                 412 ext/gd/libgd/gd_gd2.c gdImagePtr gdImageCreateFromGd2PartCtx (gdIOCtx * in, int srcx, int srcy, int w, int h)
h                 433 ext/gd/libgd/gd_gd2.c 	if (w<1 || h <1) {
h                 449 ext/gd/libgd/gd_gd2.c 		im = gdImageCreateTrueColor(w, h);
h                 451 ext/gd/libgd/gd_gd2.c 		im = gdImageCreate(w, h);
h                 499 ext/gd/libgd/gd_gd2.c 	ecy = (srcy + h) / cs;
h                 582 ext/gd/libgd/gd_gd2.c 					if ((x >= srcx) && (x < (srcx + w)) && (x < fsx) && (x >= 0) && (y >= srcy) && (y < (srcy + h)) && (y < fsy) && (y >= 0)) {
h                 123 ext/gd/libgd/gd_png.c 	png_uint_32 width, height, rowbytes, w, h;
h                 328 ext/gd/libgd/gd_png.c 	for (h = 0; h < height; ++h) {
h                 329 ext/gd/libgd/gd_png.c 		row_pointers[h] = image_data + h * rowbytes;
h                 360 ext/gd/libgd/gd_png.c 			for (h = 0; h < height; h++) {
h                 363 ext/gd/libgd/gd_png.c 					register png_byte r = row_pointers[h][boffset++];
h                 364 ext/gd/libgd/gd_png.c 					register png_byte g = row_pointers[h][boffset++];
h                 365 ext/gd/libgd/gd_png.c 					register png_byte b = row_pointers[h][boffset++];
h                 366 ext/gd/libgd/gd_png.c 					im->tpixels[h][w] = gdTrueColor (r, g, b);
h                 373 ext/gd/libgd/gd_png.c 			for (h = 0; h < height; h++) {
h                 376 ext/gd/libgd/gd_png.c 					register png_byte r = row_pointers[h][boffset++];
h                 377 ext/gd/libgd/gd_png.c 					register png_byte g = row_pointers[h][boffset++];
h                 378 ext/gd/libgd/gd_png.c 					register png_byte b = row_pointers[h][boffset++];
h                 385 ext/gd/libgd/gd_png.c 					register png_byte a = gdAlphaMax - (row_pointers[h][boffset++] >> 1);
h                 386 ext/gd/libgd/gd_png.c 					im->tpixels[h][w] = gdTrueColorAlpha(r, g, b, a);
h                 393 ext/gd/libgd/gd_png.c 			for (h = 0; h < height; ++h) {
h                 395 ext/gd/libgd/gd_png.c 					register png_byte idx = row_pointers[h][w];
h                 396 ext/gd/libgd/gd_png.c 					im->pixels[h][w] = idx;
h                  15 ext/gd/libgd/gdparttopng.c   int x, y, w, h;
h                  32 ext/gd/libgd/gdparttopng.c   h = atoi (argv[6]);
h                  34 ext/gd/libgd/gdparttopng.c   printf ("Extracting from (%d, %d), size is %dx%d\n", x, y, w, h);
h                  36 ext/gd/libgd/gdparttopng.c   im = gdImageCreateFromGd2Part (in, x, y, w, h);
h                 223 ext/gd/libgd/webpimg.c   int w = 0, h = 0;
h                 232 ext/gd/libgd/webpimg.c              &h);
h                 234 ext/gd/libgd/webpimg.c   psnr = GetPSNRYuv(Y1, U1, V1, Y2, U2, V2, w, h);
h                 904 ext/gd/libgd/webpimg.c 				const int h = ((data[9] << 8) | data[8]) & 0x3fff;
h                 906 ext/gd/libgd/webpimg.c 				if (height) *height = h;
h                  47 ext/gd/libgd/xbm.c 	char h[8];
h                 104 ext/gd/libgd/xbm.c 	h[2] = '\0';
h                 105 ext/gd/libgd/xbm.c 	h[4] = '\0';
h                 123 ext/gd/libgd/xbm.c 		h[0] = ch;
h                 127 ext/gd/libgd/xbm.c 		h[1] = ch;
h                 132 ext/gd/libgd/xbm.c 			h[2] = ch;
h                 136 ext/gd/libgd/xbm.c 			h[3] = ch;
h                 138 ext/gd/libgd/xbm.c 		sscanf(h, "%x", &b);
h                  38 ext/hash/hash_gost.c #define R(tables, key, h, i, t, l, r) \
h                  39 ext/hash/hash_gost.c 	r = h[i]; \
h                  40 ext/hash/hash_gost.c 	l = h[i + 1]; \
h                 156 ext/hash/hash_gost.c #define SHIFT16(h, v, u) \
h                 157 ext/hash/hash_gost.c 	v[0] = h[0] ^ (u[1] << 16) ^ (u[0] >> 16); \
h                 158 ext/hash/hash_gost.c 	v[1] = h[1] ^ (u[2] << 16) ^ (u[1] >> 16); \
h                 159 ext/hash/hash_gost.c 	v[2] = h[2] ^ (u[3] << 16) ^ (u[2] >> 16); \
h                 160 ext/hash/hash_gost.c 	v[3] = h[3] ^ (u[4] << 16) ^ (u[3] >> 16); \
h                 161 ext/hash/hash_gost.c 	v[4] = h[4] ^ (u[5] << 16) ^ (u[4] >> 16); \
h                 162 ext/hash/hash_gost.c 	v[5] = h[5] ^ (u[6] << 16) ^ (u[5] >> 16); \
h                 163 ext/hash/hash_gost.c 	v[6] = h[6] ^ (u[7] << 16) ^ (u[6] >> 16); \
h                 164 ext/hash/hash_gost.c 	v[7] = h[7] ^ (u[0] & 0xffff0000) ^ (u[0] << 16) ^ (u[7] >> 16) ^ \
h                 167 ext/hash/hash_gost.c #define SHIFT61(h, v) \
h                 168 ext/hash/hash_gost.c 	h[0] = (v[0] & 0xffff0000) ^ (v[0] << 16) ^ (v[0] >> 16) ^ (v[1] >> 16) ^ \
h                 172 ext/hash/hash_gost.c 	h[1] = (v[0] << 16) ^ (v[0] >> 16) ^ (v[0] & 0xffff0000) ^ (v[1] & 0xffff) ^ \
h                 175 ext/hash/hash_gost.c 	h[2] = (v[0] & 0xffff) ^ (v[0] << 16) ^ (v[1] << 16) ^ (v[1] >> 16) ^ \
h                 179 ext/hash/hash_gost.c 	h[3] = (v[0] << 16) ^ (v[0] >> 16) ^ (v[0] & 0xffff0000) ^ \
h                 183 ext/hash/hash_gost.c 	h[4] = (v[0] >> 16) ^ (v[1] << 16) ^ v[1] ^ (v[2] >> 16) ^ v[2] ^ \
h                 186 ext/hash/hash_gost.c 	h[5] = (v[0] << 16) ^ (v[0] & 0xffff0000) ^ (v[1] << 16) ^ (v[1] >> 16) ^ \
h                 190 ext/hash/hash_gost.c 	h[6] = v[0] ^ v[2] ^ (v[2] >> 16) ^ v[3] ^ (v[3] << 16) ^ v[4] ^ \
h                 193 ext/hash/hash_gost.c 	h[7] = v[0] ^ (v[0] >> 16) ^ (v[1] << 16) ^ (v[1] >> 16) ^ (v[2] << 16) ^ \
h                 200 ext/hash/hash_gost.c 	R((tables), key, h, i, t, l, r); \
h                 213 ext/hash/hash_gost.c 	php_hash_uint32 l, r, t, key[8], u[8], v[8], w[8], s[8], *h = context->state, *m = data;
h                 222 ext/hash/hash_gost.c 	SHIFT16(h, v, u);
h                 223 ext/hash/hash_gost.c 	SHIFT61(h, v);
h                 483 ext/hash/hash_sha.c 	php_hash_uint32 e = state[4], f = state[5], g = state[6], h = state[7];
h                 498 ext/hash/hash_sha.c 		T1 = h + SHA256_F3(e) + SHA256_F0(e,f,g) + SHA256_K[i] + W[i];
h                 500 ext/hash/hash_sha.c 		h = g; g = f; f = e; e = d + T1;
h                 511 ext/hash/hash_sha.c 	state[7] += h;
h                 793 ext/hash/hash_sha.c 	php_hash_uint64 e = state[4], f = state[5], g = state[6], h = state[7];
h                 808 ext/hash/hash_sha.c 		T1 = h + SHA512_F3(e) + SHA512_F0(e,f,g) + SHA512_K[i] + W[i];
h                 810 ext/hash/hash_sha.c 		h = g; g = f; f = e; e = d + T1;
h                 821 ext/hash/hash_sha.c 	state[7] += h;
h                  36 ext/hash/hash_snefru.c void ph(php_hash_uint32 h[16])
h                  40 ext/hash/hash_snefru.c 		printf ("%08lx", h[i]); printf("\n");
h                 886 ext/mbstring/libmbfl/mbfl/mbfilter.c 	int *p, *h, *m, n;
h                 902 ext/mbstring/libmbfl/mbfl/mbfilter.c 			h = (int *)pc->needle.buffer;
h                 903 ext/mbstring/libmbfl/mbfl/mbfilter.c 			h++;
h                 906 ext/mbstring/libmbfl/mbfl/mbfilter.c 				p = h;
h                 920 ext/mbstring/libmbfl/mbfl/mbfilter.c 					h++;
h                  84 ext/mbstring/libmbfl/tests/emoji.c 			int h = (result.val[i] & 0x07)<<8 | result.val[i+1];
h                  86 ext/mbstring/libmbfl/tests/emoji.c 			int c = (h<<(2+8)) | l;
h                 534 ext/mbstring/oniguruma/st.c     register unsigned int h = 0, g;
h                 537 ext/mbstring/oniguruma/st.c 	h = ( h << 4 ) + c;
h                 538 ext/mbstring/oniguruma/st.c 	if ( g = h & 0xF0000000 )
h                 539 ext/mbstring/oniguruma/st.c 	    h ^= g >> 24;
h                 540 ext/mbstring/oniguruma/st.c 	h &= ~g;
h                 542 ext/mbstring/oniguruma/st.c     return h;
h                 402 ext/mysqli/mysqli.c void mysqli_add_property(HashTable *h, const char *pname, size_t pname_len, mysqli_read_t r_func, mysqli_write_t w_func TSRMLS_DC) {
h                 409 ext/mysqli/mysqli.c 	zend_hash_add(h, pname, pname_len + 1, &p, sizeof(mysqli_prop_handler), NULL);
h                  94 ext/opcache/Optimizer/compact_literals.c 	ulong h;
h                 374 ext/opcache/Optimizer/compact_literals.c 						h = zend_hash_func(key, key_len);
h                 375 ext/opcache/Optimizer/compact_literals.c 						h += info[i].flags;
h                 378 ext/opcache/Optimizer/compact_literals.c 						zend_hash_quick_find(&hash, key, key_len, h, (void**)&pos) == SUCCESS &&
h                 396 ext/opcache/Optimizer/compact_literals.c 							zend_hash_quick_add(&hash, key, key_len, h, (void**)&j, sizeof(int), NULL);
h                 316 ext/opcache/ZendAccelerator.c 	ulong h;
h                 325 ext/opcache/ZendAccelerator.c 	h = zend_inline_hash_func(arKey, nKeyLength);
h                 326 ext/opcache/ZendAccelerator.c 	nIndex = h & ZCSG(interned_strings).nTableMask;
h                 331 ext/opcache/ZendAccelerator.c 		if ((p->h == h) && (p->nKeyLength == (uint)nKeyLength)) {
h                 356 ext/opcache/ZendAccelerator.c 	p->h = h;
h                  46 ext/opcache/shared_alloc_win32.c 	HANDLE h;
h                  61 ext/opcache/shared_alloc_win32.c 	h = RegisterEventSource(NULL, TEXT(ACCEL_EVENT_SOURCE));
h                  64 ext/opcache/shared_alloc_win32.c 	ReportEvent(h,				  // event log handle
h                  73 ext/opcache/shared_alloc_win32.c 	DeregisterEventSource(h);
h                 183 ext/opcache/zend_accelerator_util_funcs.c 		zend_hash_quick_update(function_table, hash_key->arKey, hash_key->nKeyLength, hash_key->h, function, sizeof(zend_function), NULL);
h                 357 ext/opcache/zend_accelerator_util_funcs.c 		nIndex = p->h & ht->nTableMask;
h                 378 ext/opcache/zend_accelerator_util_funcs.c 		q->h = p->h;
h                 484 ext/opcache/zend_accelerator_util_funcs.c 		nIndex = p->h & ht->nTableMask;
h                 505 ext/opcache/zend_accelerator_util_funcs.c 		q->h = p->h;
h                 595 ext/opcache/zend_accelerator_util_funcs.c 		nIndex = p->h & ht->nTableMask;
h                 616 ext/opcache/zend_accelerator_util_funcs.c 		q->h = p->h;
h                 899 ext/opcache/zend_accelerator_util_funcs.c 			if (zend_hash_quick_add(target, p->arKey, p->nKeyLength, p->h, p->pData, size, &t) == SUCCESS) {
h                 907 ext/opcache/zend_accelerator_util_funcs.c 					if (zend_hash_quick_update(target, p->arKey, p->nKeyLength, p->h, p->pData, size, &t) == SUCCESS) {
h                 913 ext/opcache/zend_accelerator_util_funcs.c 				} else if (!ignore_dups && zend_hash_quick_find(target, p->arKey, p->nKeyLength, p->h, &t) == SUCCESS) {
h                 920 ext/opcache/zend_accelerator_util_funcs.c 			if (!zend_hash_index_exists(target, p->h) && zend_hash_index_update(target, p->h, p->pData, size, &t) == SUCCESS) {
h                 924 ext/opcache/zend_accelerator_util_funcs.c 			} else if (!ignore_dups && zend_hash_index_find(target,p->h, &t) == SUCCESS) {
h                 415 ext/pdo_firebird/firebird_statement.c 	isc_blob_handle h = NULL;
h                 420 ext/pdo_firebird/firebird_statement.c 	if (isc_create_blob(H->isc_status, &H->db, &H->tr, &h, blob_id)) {
h                 433 ext/pdo_firebird/firebird_statement.c 		if (isc_put_segment(H->isc_status, &h, chunk_size, &Z_STRVAL_P(param)[put_cnt])) {
h                 443 ext/pdo_firebird/firebird_statement.c 	if (isc_close_blob(H->isc_status, &h)) {
h                  47 ext/phar/zip.c 	} h;
h                  51 ext/phar/zip.c 		if (sizeof(h.header) != php_stream_read(fp, (char *) &h.header, sizeof(h.header))) {
h                  55 ext/phar/zip.c 		if (h.header.tag[0] != 'n' || h.header.tag[1] != 'u') {
h                  57 ext/phar/zip.c 			php_stream_seek(fp, PHAR_GET_16(h.header.size), SEEK_CUR);
h                  58 ext/phar/zip.c 			len -= PHAR_GET_16(h.header.size) + 4;
h                  63 ext/phar/zip.c 		read = php_stream_read(fp, (char *) &(h.unix3.crc32), sizeof(h.unix3) - sizeof(h.header));
h                  66 ext/phar/zip.c 		if (sizeof(h.unix3) - sizeof(h.header) != read) {
h                  70 ext/phar/zip.c 		if (PHAR_GET_16(h.unix3.size) > sizeof(h.unix3) - 4) {
h                  72 ext/phar/zip.c 			php_stream_seek(fp, PHAR_GET_16(h.unix3.size) - sizeof(h.unix3.size), SEEK_CUR);
h                  79 ext/phar/zip.c 			entry->flags |= PHAR_GET_16(h.unix3.perms) & PHAR_ENT_PERM_MASK;
h                  81 ext/phar/zip.c 			entry->flags |= PHAR_GET_16(h.unix3.perms) & PHAR_ENT_PERM_MASK;
h                3934 ext/reflection/php_reflection.c 			property_info_tmp.h = zend_get_hash_value(name, name_len+1);
h                4926 ext/reflection/php_reflection.c 		reference->prop.h = zend_get_hash_value(name_str, name_len+1);
h                  75 ext/session/mod_mm.c 	php_uint32 h;
h                  78 ext/session/mod_mm.c 	for (h = 2166136261U; data < e; ) {
h                  79 ext/session/mod_mm.c 		h *= 16777619;
h                  80 ext/session/mod_mm.c 		h ^= *data++;
h                  83 ext/session/mod_mm.c 	return h;
h                 252 ext/session/mod_mm.c 	int h;
h                 262 ext/session/mod_mm.c 	for (h = 0; h < data->hash_max + 1; h++) {
h                 263 ext/session/mod_mm.c 		for (sd = data->hash[h]; sd; sd = next) {
h                1040 ext/simplexml/simplexml.c 	ulong h = zend_hash_func(name, namelen);
h                1042 ext/simplexml/simplexml.c 	if (zend_hash_quick_find(rv, name, namelen, h, (void **) &data_ptr) == SUCCESS) {
h                1053 ext/simplexml/simplexml.c 			zend_hash_quick_update(rv, name, namelen, h, &newptr, sizeof(zval *), NULL);
h                1056 ext/simplexml/simplexml.c 		zend_hash_quick_update(rv, name, namelen, h, &value, sizeof(zval *), NULL);
h                1962 ext/snmp/snmp.c void php_snmp_add_property(HashTable *h, const char *name, size_t name_length, php_snmp_read_t read_func, php_snmp_write_t write_func TSRMLS_DC)
h                1970 ext/snmp/snmp.c 	zend_hash_add(h, (char *)name, name_length + 1, &p, sizeof(php_snmp_prop_handler), NULL);
h                1259 ext/soap/php_encoding.c 			if (property_info && zend_hash_quick_exists(Z_OBJPROP_P(object), property_info->name, property_info->name_length+1, property_info->h)) {
h                2282 ext/soap/php_encoding.c 		return ht->pListTail->h-1;
h                 454 ext/soap/php_sdl.c 	sdlSoapBindingFunctionHeaderPtr h;
h                 480 ext/soap/php_sdl.c 	h = emalloc(sizeof(sdlSoapBindingFunctionHeader));
h                 481 ext/soap/php_sdl.c 	memset(h, 0, sizeof(sdlSoapBindingFunctionHeader));
h                 482 ext/soap/php_sdl.c 	h->name = estrdup((char*)tmp->children->content);
h                 486 ext/soap/php_sdl.c 		h->use = SOAP_ENCODED;
h                 488 ext/soap/php_sdl.c 		h->use = SOAP_LITERAL;
h                 493 ext/soap/php_sdl.c 		h->ns = estrdup((char*)tmp->children->content);
h                 496 ext/soap/php_sdl.c 	if (h->use == SOAP_ENCODED) {
h                 500 ext/soap/php_sdl.c 				h->encodingStyle = SOAP_ENCODING_1_1;
h                 502 ext/soap/php_sdl.c 				h->encodingStyle = SOAP_ENCODING_1_2;
h                 513 ext/soap/php_sdl.c 		h->encode = get_encoder_from_prefix(ctx->sdl, part, tmp->children->content);
h                 517 ext/soap/php_sdl.c 			h->element = get_element(ctx->sdl, part, tmp->children->content);
h                 518 ext/soap/php_sdl.c 			if (h->element) {
h                 519 ext/soap/php_sdl.c 				h->encode = h->element->encode;
h                 520 ext/soap/php_sdl.c 				if (!h->ns && h->element->namens) {
h                 521 ext/soap/php_sdl.c 					h->ns = estrdup(h->element->namens);
h                 523 ext/soap/php_sdl.c 				if (h->element->name) {
h                 524 ext/soap/php_sdl.c 					efree(h->name);
h                 525 ext/soap/php_sdl.c 					h->name = estrdup(h->element->name);
h                 537 ext/soap/php_sdl.c 				if (h->headerfaults == NULL) {
h                 538 ext/soap/php_sdl.c 					h->headerfaults = emalloc(sizeof(HashTable));
h                 539 ext/soap/php_sdl.c 					zend_hash_init(h->headerfaults, 0, NULL, delete_header, 0);
h                 548 ext/soap/php_sdl.c 				if (zend_hash_add(h->headerfaults, key.c, key.len+1, (void**)&hf, sizeof(sdlSoapBindingFunctionHeaderPtr), NULL) != SUCCESS) {
h                 558 ext/soap/php_sdl.c 	return h;
h                 639 ext/soap/php_sdl.c 			sdlSoapBindingFunctionHeaderPtr h = wsdl_soap_binding_header(ctx, trav, wsdl_soap_namespace, 0);
h                 647 ext/soap/php_sdl.c 			if (h->ns) {
h                 648 ext/soap/php_sdl.c 				smart_str_appends(&key,h->ns);
h                 651 ext/soap/php_sdl.c 			smart_str_appends(&key,h->name);
h                 653 ext/soap/php_sdl.c 			if (zend_hash_add(binding->headers, key.c, key.len+1, (void**)&h, sizeof(sdlSoapBindingFunctionHeaderPtr), NULL) != SUCCESS) {
h                 654 ext/soap/php_sdl.c 				delete_header((void**)&h);
h                1783 ext/soap/soap.c 			soapHeader *h = header;
h                1787 ext/soap/soap.c 			if (service->sdl && !h->function && !h->hdr) {
h                1788 ext/soap/soap.c 				if (h->mustUnderstand) {
h                1795 ext/soap/soap.c 			fn_name = estrndup(Z_STRVAL(h->function_name),Z_STRLEN(h->function_name));
h                1796 ext/soap/soap.c 			if (zend_hash_exists(function_table, php_strtolower(fn_name, Z_STRLEN(h->function_name)), Z_STRLEN(h->function_name) + 1) ||
h                1800 ext/soap/soap.c 					call_status = call_user_function(NULL, &soap_obj, &h->function_name, &h->retval, h->num_params, h->parameters TSRMLS_CC);
h                1802 ext/soap/soap.c 					call_status = call_user_function(EG(function_table), NULL, &h->function_name, &h->retval, h->num_params, h->parameters TSRMLS_CC);
h                1805 ext/soap/soap.c 					php_error_docref(NULL TSRMLS_CC, E_WARNING, "Function '%s' call failed", Z_STRVAL(h->function_name));
h                1808 ext/soap/soap.c 				if (Z_TYPE(h->retval) == IS_OBJECT &&
h                1809 ext/soap/soap.c 				    instanceof_function(Z_OBJCE(h->retval), soap_fault_class_entry TSRMLS_CC)) {
h                1812 ext/soap/soap.c 					if (zend_hash_find(Z_OBJPROP(h->retval), "headerfault", sizeof("headerfault"), (void**)&tmp) == SUCCESS &&
h                1817 ext/soap/soap.c 					soap_server_fault_ex(function, &h->retval, h TSRMLS_CC);
h                1831 ext/soap/soap.c 						soap_server_fault_ex(function, EG(exception), h TSRMLS_CC);
h                1837 ext/soap/soap.c 			} else if (h->mustUnderstand) {
h                1972 ext/soap/soap.c 		soapHeader *h = soap_headers;
h                1976 ext/soap/soap.c 		if (h->parameters) {
h                1977 ext/soap/soap.c 			i = h->num_params;
h                1979 ext/soap/soap.c 				zval_ptr_dtor(&h->parameters[--i]);
h                1981 ext/soap/soap.c 			efree(h->parameters);
h                1983 ext/soap/soap.c 		zval_dtor(&h->function_name);
h                1984 ext/soap/soap.c 		zval_dtor(&h->retval);
h                1985 ext/soap/soap.c 		efree(h);
h                3596 ext/soap/soap.c 		soapHeader *h, *last = NULL;
h                3655 ext/soap/soap.c 				h = emalloc(sizeof(soapHeader));
h                3656 ext/soap/soap.c 				memset(h, 0, sizeof(soapHeader));
h                3657 ext/soap/soap.c 				h->mustUnderstand = mustUnderstand;
h                3658 ext/soap/soap.c 				h->function = find_function(sdl, hdr_func, &h->function_name);
h                3659 ext/soap/soap.c 				if (!h->function && sdl && function && function->binding && function->binding->bindingType == BINDING_SOAP) {
h                3669 ext/soap/soap.c 						smart_str_appendl(&key, Z_STRVAL(h->function_name), Z_STRLEN(h->function_name));
h                3672 ext/soap/soap.c 							h->hdr = *hdr;
h                3677 ext/soap/soap.c 				if (h->hdr) {
h                3678 ext/soap/soap.c 					h->num_params = 1;
h                3679 ext/soap/soap.c 					h->parameters = emalloc(sizeof(zval*));
h                3680 ext/soap/soap.c 					h->parameters[0] = master_to_zval(h->hdr->encode, hdr_func TSRMLS_CC);
h                3682 ext/soap/soap.c 					if (h->function && h->function->binding && h->function->binding->bindingType == BINDING_SOAP) {
h                3683 ext/soap/soap.c 						sdlSoapBindingFunctionPtr fnb = (sdlSoapBindingFunctionPtr)h->function->bindingAttributes;
h                3688 ext/soap/soap.c 					deserialize_parameters(hdr_func, h->function, &h->num_params, &h->parameters TSRMLS_CC);
h                3690 ext/soap/soap.c 				INIT_ZVAL(h->retval);
h                3692 ext/soap/soap.c 					*headers = h;
h                3694 ext/soap/soap.c 					last->next = h;
h                3696 ext/soap/soap.c 				last = h;
h                3718 ext/soap/soap.c static void set_soap_header_attributes(xmlNodePtr h, HashTable *ht, int version)
h                3725 ext/soap/soap.c 			xmlSetProp(h, BAD_CAST(SOAP_1_1_ENV_NS_PREFIX":mustUnderstand"), BAD_CAST("1"));
h                3727 ext/soap/soap.c 			xmlSetProp(h, BAD_CAST(SOAP_1_2_ENV_NS_PREFIX":mustUnderstand"), BAD_CAST("true"));
h                3733 ext/soap/soap.c 				xmlSetProp(h, BAD_CAST(SOAP_1_1_ENV_NS_PREFIX":actor"), BAD_CAST(Z_STRVAL_PP(tmp)));
h                3735 ext/soap/soap.c 				xmlSetProp(h, BAD_CAST(SOAP_1_2_ENV_NS_PREFIX":role"), BAD_CAST(Z_STRVAL_PP(tmp)));
h                3740 ext/soap/soap.c 					xmlSetProp(h, BAD_CAST(SOAP_1_1_ENV_NS_PREFIX":actor"), BAD_CAST(SOAP_1_1_ACTOR_NEXT));
h                3744 ext/soap/soap.c 					xmlSetProp(h, BAD_CAST(SOAP_1_2_ENV_NS_PREFIX":role"), BAD_CAST(SOAP_1_2_ACTOR_NEXT));
h                3746 ext/soap/soap.c 					xmlSetProp(h, BAD_CAST(SOAP_1_2_ENV_NS_PREFIX":role"), BAD_CAST(SOAP_1_2_ACTOR_NONE));
h                3748 ext/soap/soap.c 					xmlSetProp(h, BAD_CAST(SOAP_1_2_ENV_NS_PREFIX":role"), BAD_CAST(SOAP_1_2_ACTOR_UNLIMATERECEIVER));
h                4116 ext/soap/soap.c 			soapHeader *h;
h                4119 ext/soap/soap.c 			h = headers;
h                4120 ext/soap/soap.c 			while (h != NULL) {
h                4121 ext/soap/soap.c 				if (Z_TYPE(h->retval) != IS_NULL) {
h                4124 ext/soap/soap.c 					zval *hdr_ret = &h->retval;
h                4125 ext/soap/soap.c 					char *hdr_ns   = h->hdr?h->hdr->ns:NULL;
h                4126 ext/soap/soap.c 					char *hdr_name = Z_STRVAL(h->function_name);
h                4129 ext/soap/soap.c 					if (Z_TYPE(h->retval) == IS_OBJECT &&
h                4130 ext/soap/soap.c 					    instanceof_function(Z_OBJCE(h->retval), soap_header_class_entry TSRMLS_CC)) {
h                4135 ext/soap/soap.c 						ht = Z_OBJPROP(h->retval);
h                4165 ext/soap/soap.c 					if (h->function) {
h                4168 ext/soap/soap.c 						if (serialize_response_call2(head, h->function, Z_STRVAL(h->function_name), uri, hdr_ret, version, 0, &xmlHdr TSRMLS_CC) == SOAP_ENCODED) {
h                4188 ext/soap/soap.c 				h = h->next;
h                4367 ext/soap/soap.c 				xmlNodePtr h;
h                4391 ext/soap/soap.c 					h = master_to_xml(enc, *tmp, hdr_use, head TSRMLS_CC);
h                4392 ext/soap/soap.c 					xmlNodeSetName(h, BAD_CAST(Z_STRVAL_PP(name)));
h                4394 ext/soap/soap.c 					h = xmlNewNode(NULL, BAD_CAST(Z_STRVAL_PP(name)));
h                4395 ext/soap/soap.c 					xmlAddChild(head, h);
h                4397 ext/soap/soap.c 				nsptr = encode_add_ns(h, Z_STRVAL_PP(ns));
h                4398 ext/soap/soap.c 				xmlSetNs(h, nsptr);
h                4399 ext/soap/soap.c 				set_soap_header_attributes(h, ht, version);
h                 108 ext/spl/spl_array.c 		intern->pos_h = pos->h;
h                13415 ext/sqlite3/libsqlite/sqlite3.c SQLITE_PRIVATE u8 sqlite3HexToInt(int h);
h                15385 ext/sqlite3/libsqlite/sqlite3.c   int h, m;          /* Hour and minutes */
h                15496 ext/sqlite3/libsqlite/sqlite3.c   int h, m, s;
h                15498 ext/sqlite3/libsqlite/sqlite3.c   if( getDigits(zDate, 2, 0, 24, ':', &h, 2, 0, 59, 0, &m)!=2 ){
h                15523 ext/sqlite3/libsqlite/sqlite3.c   p->h = h;
h                15561 ext/sqlite3/libsqlite/sqlite3.c     p->iJD += p->h*3600000 + p->m*60000 + (sqlite3_int64)(p->s*1000);
h                15703 ext/sqlite3/libsqlite/sqlite3.c   p->h = s/3600;
h                15704 ext/sqlite3/libsqlite/sqlite3.c   s -= p->h*3600;
h                15821 ext/sqlite3/libsqlite/sqlite3.c     x.h = 0;
h                15840 ext/sqlite3/libsqlite/sqlite3.c   y.h = sLocal.tm_hour;
h                15964 ext/sqlite3/libsqlite/sqlite3.c       p->h = p->m = 0;
h                16150 ext/sqlite3/libsqlite/sqlite3.c                      x.Y, x.M, x.D, x.h, x.m, (int)(x.s));
h                16169 ext/sqlite3/libsqlite/sqlite3.c     sqlite3_snprintf(sizeof(zBuf), zBuf, "%02d:%02d:%02d", x.h, x.m, (int)x.s);
h                16293 ext/sqlite3/libsqlite/sqlite3.c         case 'H':  sqlite3_snprintf(3, &z[j],"%02d",x.h); j+=2; break;
h                24526 ext/sqlite3/libsqlite/sqlite3.c SQLITE_PRIVATE u8 sqlite3HexToInt(int h){
h                24527 ext/sqlite3/libsqlite/sqlite3.c   assert( (h>='0' && h<='9') ||  (h>='a' && h<='f') ||  (h>='A' && h<='F') );
h                24529 ext/sqlite3/libsqlite/sqlite3.c   h += 9*(1&(h>>6));
h                24532 ext/sqlite3/libsqlite/sqlite3.c   h += 9*(1&~(h>>4));
h                24534 ext/sqlite3/libsqlite/sqlite3.c   return (u8)(h & 0xf);
h                24859 ext/sqlite3/libsqlite/sqlite3.c   unsigned int h = 0;
h                24862 ext/sqlite3/libsqlite/sqlite3.c     h = (h<<3) ^ h ^ sqlite3UpperToLower[c];
h                24864 ext/sqlite3/libsqlite/sqlite3.c   return h;
h                24934 ext/sqlite3/libsqlite/sqlite3.c     unsigned int h = strHash(elem->pKey) % new_size;
h                24936 ext/sqlite3/libsqlite/sqlite3.c     insertElement(pH, &new_ht[h], elem);
h                24952 ext/sqlite3/libsqlite/sqlite3.c   unsigned int h;                /* The computed hash */
h                24956 ext/sqlite3/libsqlite/sqlite3.c     h = strHash(pKey) % pH->htsize;
h                24957 ext/sqlite3/libsqlite/sqlite3.c     pEntry = &pH->ht[h];
h                24961 ext/sqlite3/libsqlite/sqlite3.c     h = 0;
h                24965 ext/sqlite3/libsqlite/sqlite3.c   *pHash = h;
h                24982 ext/sqlite3/libsqlite/sqlite3.c   unsigned int h    /* Hash value for the element */
h                24994 ext/sqlite3/libsqlite/sqlite3.c     pEntry = &pH->ht[h];
h                25016 ext/sqlite3/libsqlite/sqlite3.c   unsigned int h;    /* A hash on key */
h                25020 ext/sqlite3/libsqlite/sqlite3.c   elem = findElementWithHash(pH, pKey, &h);
h                25039 ext/sqlite3/libsqlite/sqlite3.c   unsigned int h;       /* the hash of the key modulo hash table size */
h                25045 ext/sqlite3/libsqlite/sqlite3.c   elem = findElementWithHash(pH,pKey,&h);
h                25049 ext/sqlite3/libsqlite/sqlite3.c       removeElementGivenHash(pH,elem,h);
h                25065 ext/sqlite3/libsqlite/sqlite3.c       h = strHash(pKey) % pH->htsize;
h                25068 ext/sqlite3/libsqlite/sqlite3.c   insertElement(pH, pH->ht ? &pH->ht[h] : 0, new_elem);
h                25435 ext/sqlite3/libsqlite/sqlite3.c   int h;                              /* The file descriptor */
h                26173 ext/sqlite3/libsqlite/sqlite3.c static int robust_ftruncate(int h, sqlite3_int64 sz){
h                26184 ext/sqlite3/libsqlite/sqlite3.c   do{ rc = osFtruncate(h,sz); }while( rc<0 && errno==EINTR );
h                26623 ext/sqlite3/libsqlite/sqlite3.c static void robust_close(unixFile *pFile, int h, int lineno){
h                26624 ext/sqlite3/libsqlite/sqlite3.c   if( osClose(h) ){
h                26708 ext/sqlite3/libsqlite/sqlite3.c   fd = pFile->h;
h                26804 ext/sqlite3/libsqlite/sqlite3.c   rc = osFstat(pFile->h, &buf);
h                26858 ext/sqlite3/libsqlite/sqlite3.c     if( osFcntl(pFile->h, F_GETLK, &lock) ){
h                26868 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("TEST WR-LOCK %d %d %d (unix)\n", pFile->h, rc, reserved));
h                26908 ext/sqlite3/libsqlite/sqlite3.c       rc = osFcntl(pFile->h, F_SETLK, &lock);
h                26916 ext/sqlite3/libsqlite/sqlite3.c     rc = osFcntl(pFile->h, F_SETLK, pLock);
h                26991 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("LOCK    %d %s was %s(%s,%d) pid=%d (unix)\n", pFile->h,
h                27001 ext/sqlite3/libsqlite/sqlite3.c     OSTRACE(("LOCK    %d %s ok (already held) (unix)\n", pFile->h,
h                27162 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("LOCK    %d %s %s (unix)\n", pFile->h, azFileLock(eFileLock), 
h                27176 ext/sqlite3/libsqlite/sqlite3.c   pFile->h = -1;
h                27200 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("UNLOCK  %d %d was %d(%d,%d) pid=%d (unix)\n", pFile->h, eFileLock,
h                27384 ext/sqlite3/libsqlite/sqlite3.c   if( pFile->h>=0 ){
h                27385 ext/sqlite3/libsqlite/sqlite3.c     robust_close(pFile, pFile->h, __LINE__);
h                27386 ext/sqlite3/libsqlite/sqlite3.c     pFile->h = -1;
h                27404 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("CLOSE   %-3d\n", pFile->h));
h                27540 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("TEST WR-LOCK %d %d %d (dotlock)\n", pFile->h, rc, reserved));
h                27628 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("UNLOCK  %d %d was %d pid=%d (dotlock)\n", pFile->h, eFileLock,
h                27733 ext/sqlite3/libsqlite/sqlite3.c     int lrc = robust_flock(pFile->h, LOCK_EX | LOCK_NB);
h                27736 ext/sqlite3/libsqlite/sqlite3.c       lrc = robust_flock(pFile->h, LOCK_UN);
h                27757 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("TEST WR-LOCK %d %d %d (flock)\n", pFile->h, rc, reserved));
h                27813 ext/sqlite3/libsqlite/sqlite3.c   if (robust_flock(pFile->h, LOCK_EX | LOCK_NB)) {
h                27824 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("LOCK    %d %s %s (flock)\n", pFile->h, azFileLock(eFileLock), 
h                27846 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("UNLOCK  %d %d was %d pid=%d (flock)\n", pFile->h, eFileLock,
h                27862 ext/sqlite3/libsqlite/sqlite3.c   if( robust_flock(pFile->h, LOCK_UN) ){
h                27940 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("TEST WR-LOCK %d %d %d (sem)\n", pFile->h, rc, reserved));
h                28014 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("UNLOCK  %d %d was %d pid=%d (sem)\n", pFile->h, eFileLock,
h                28118 ext/sqlite3/libsqlite/sqlite3.c   pb.fd = pFile->h;
h                28121 ext/sqlite3/libsqlite/sqlite3.c     (setLockFlag?"ON":"OFF"), pFile->h, (pb.fd==-1?"[testval-1]":""),
h                28190 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("TEST WR-LOCK %d %d %d (afp)\n", pFile->h, rc, reserved));
h                28227 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("LOCK    %d %s was %s(%s,%d) pid=%d (afp)\n", pFile->h,
h                28236 ext/sqlite3/libsqlite/sqlite3.c     OSTRACE(("LOCK    %d %s ok (already held) (afp)\n", pFile->h,
h                28390 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("LOCK    %d %s %s (afp)\n", pFile->h, azFileLock(eFileLock), 
h                28409 ext/sqlite3/libsqlite/sqlite3.c   int h = pFile->h;
h                28413 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("UNLOCK  %d %d was %d(%d,%d) pid=%d (afp)\n", pFile->h, eFileLock,
h                28427 ext/sqlite3/libsqlite/sqlite3.c     SimulateIOError( h=(-1) )
h                28478 ext/sqlite3/libsqlite/sqlite3.c       SimulateIOError( h=(-1) )
h                28592 ext/sqlite3/libsqlite/sqlite3.c   assert( id->h>2 );
h                28596 ext/sqlite3/libsqlite/sqlite3.c     got = osPread(id->h, pBuf, cnt, offset);
h                28599 ext/sqlite3/libsqlite/sqlite3.c     got = osPread64(id->h, pBuf, cnt, offset);
h                28602 ext/sqlite3/libsqlite/sqlite3.c     newOffset = lseek(id->h, offset, SEEK_SET);
h                28612 ext/sqlite3/libsqlite/sqlite3.c     got = osRead(id->h, pBuf, cnt);
h                28629 ext/sqlite3/libsqlite/sqlite3.c             id->h, got+prior, offset-prior, TIMER_ELAPSED));
h                28744 ext/sqlite3/libsqlite/sqlite3.c   return seekAndWriteFd(id->h, offset, pBuf, cnt, &id->lastErrno);
h                29029 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("SYNC    %-3d\n", pFile->h));
h                29030 ext/sqlite3/libsqlite/sqlite3.c   rc = full_fsync(pFile->h, isFullsync, isDataOnly);
h                29075 ext/sqlite3/libsqlite/sqlite3.c   rc = robust_ftruncate(pFile->h, nByte);
h                29114 ext/sqlite3/libsqlite/sqlite3.c   rc = osFstat(((unixFile*)id)->h, &buf);
h                29153 ext/sqlite3/libsqlite/sqlite3.c     if( osFstat(pFile->h, &buf) ){
h                29166 ext/sqlite3/libsqlite/sqlite3.c         err = osFallocate(pFile->h, buf.st_size, nSize-buf.st_size);
h                29201 ext/sqlite3/libsqlite/sqlite3.c       if( robust_ftruncate(pFile->h, nByte) ){
h                29357 ext/sqlite3/libsqlite/sqlite3.c     if( fstatvfs(pFile->h, &fsInfo) == -1 ) {
h                29504 ext/sqlite3/libsqlite/sqlite3.c   int h;                     /* Open file descriptor */
h                29572 ext/sqlite3/libsqlite/sqlite3.c   if( pShmNode->h>=0 ){
h                29582 ext/sqlite3/libsqlite/sqlite3.c     rc = osFcntl(pShmNode->h, lkType, &f);
h                29657 ext/sqlite3/libsqlite/sqlite3.c       if( p->h>=0 ){
h                29664 ext/sqlite3/libsqlite/sqlite3.c     if( p->h>=0 ){
h                29665 ext/sqlite3/libsqlite/sqlite3.c       robust_close(pFd, p->h, __LINE__);
h                29666 ext/sqlite3/libsqlite/sqlite3.c       p->h = -1;
h                29738 ext/sqlite3/libsqlite/sqlite3.c     if( osFstat(pDbFd->h, &sStat) && pInode->bProcessLock==0 ){
h                29763 ext/sqlite3/libsqlite/sqlite3.c     pShmNode->h = -1;
h                29778 ext/sqlite3/libsqlite/sqlite3.c       pShmNode->h = robust_open(zShmFilename, openFlags, (sStat.st_mode&0777));
h                29779 ext/sqlite3/libsqlite/sqlite3.c       if( pShmNode->h<0 ){
h                29788 ext/sqlite3/libsqlite/sqlite3.c       osFchown(pShmNode->h, sStat.st_uid, sStat.st_gid);
h                29795 ext/sqlite3/libsqlite/sqlite3.c         if( robust_ftruncate(pShmNode->h, 0) ){
h                29880 ext/sqlite3/libsqlite/sqlite3.c   assert( pShmNode->h>=0 || pDbFd->pInode->bProcessLock==1 );
h                29881 ext/sqlite3/libsqlite/sqlite3.c   assert( pShmNode->h<0 || pDbFd->pInode->bProcessLock==0 );
h                29893 ext/sqlite3/libsqlite/sqlite3.c     if( pShmNode->h>=0 ){
h                29898 ext/sqlite3/libsqlite/sqlite3.c       if( osFstat(pShmNode->h, &sStat) ){
h                29925 ext/sqlite3/libsqlite/sqlite3.c             if( seekAndWriteFd(pShmNode->h, iPg*pgsz + pgsz-1, "", 1, 0)!=1 ){
h                29948 ext/sqlite3/libsqlite/sqlite3.c       if( pShmNode->h>=0 ){
h                29951 ext/sqlite3/libsqlite/sqlite3.c             MAP_SHARED, pShmNode->h, szRegion*(i64)pShmNode->nRegion
h                30014 ext/sqlite3/libsqlite/sqlite3.c   assert( pShmNode->h>=0 || pDbFd->pInode->bProcessLock==1 );
h                30015 ext/sqlite3/libsqlite/sqlite3.c   assert( pShmNode->h<0 || pDbFd->pInode->bProcessLock==0 );
h                30153 ext/sqlite3/libsqlite/sqlite3.c     if( deleteFlag && pShmNode->h>=0 ){
h                30205 ext/sqlite3/libsqlite/sqlite3.c   int h = pFd->h;                      /* File descriptor open on db file */
h                30238 ext/sqlite3/libsqlite/sqlite3.c     pNew = osMmap(pReq, nNew-nReuse, flags, MAP_SHARED, h, nReuse);
h                30257 ext/sqlite3/libsqlite/sqlite3.c     pNew = osMmap(0, nNew, flags, MAP_SHARED, h, 0);
h                30299 ext/sqlite3/libsqlite/sqlite3.c     rc = osFstat(pFd->h, &statbuf);
h                30627 ext/sqlite3/libsqlite/sqlite3.c   if( osFcntl(pNew->h, F_GETLK, &lockInfo)!=-1 ) {
h                30667 ext/sqlite3/libsqlite/sqlite3.c   if( osFcntl(pNew->h, F_GETLK, &lockInfo)!=-1 ) {
h                30696 ext/sqlite3/libsqlite/sqlite3.c   int h,                  /* Open file descriptor of file being opened */
h                30721 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("OPEN    %-3d %s\n", h, zFilename));
h                30722 ext/sqlite3/libsqlite/sqlite3.c   pNew->h = h;
h                30783 ext/sqlite3/libsqlite/sqlite3.c       robust_close(pNew, h, __LINE__);
h                30784 ext/sqlite3/libsqlite/sqlite3.c       h = -1;
h                30809 ext/sqlite3/libsqlite/sqlite3.c         robust_close(pNew, h, __LINE__);
h                30810 ext/sqlite3/libsqlite/sqlite3.c         h = -1;
h                30861 ext/sqlite3/libsqlite/sqlite3.c     if( h>=0 ) robust_close(pNew, h, __LINE__);
h                30862 ext/sqlite3/libsqlite/sqlite3.c     h = -1;
h                30868 ext/sqlite3/libsqlite/sqlite3.c     if( h>=0 ) robust_close(pNew, h, __LINE__);
h                32129 ext/sqlite3/libsqlite/sqlite3.c   readLen = osPread(conchFile->h, buf, PROXY_MAXCONCHLEN, 0);
h                32150 ext/sqlite3/libsqlite/sqlite3.c   robust_close(pFile, conchFile->h, __LINE__);
h                32151 ext/sqlite3/libsqlite/sqlite3.c   conchFile->h = fd;
h                32187 ext/sqlite3/libsqlite/sqlite3.c       if( osFstat(conchFile->h, &buf) ){
h                32206 ext/sqlite3/libsqlite/sqlite3.c         int len = osPread(conchFile->h, tBuf, PROXY_MAXCONCHLEN, 0);
h                32265 ext/sqlite3/libsqlite/sqlite3.c     OSTRACE(("TAKECONCH  %d for %s pid=%d\n", conchFile->h,
h                32345 ext/sqlite3/libsqlite/sqlite3.c       futimes(conchFile->h, NULL);
h                32370 ext/sqlite3/libsqlite/sqlite3.c         robust_ftruncate(conchFile->h, writeSize);
h                32372 ext/sqlite3/libsqlite/sqlite3.c         fsync(conchFile->h);
h                32378 ext/sqlite3/libsqlite/sqlite3.c           int err = osFstat(pFile->h, &buf);
h                32384 ext/sqlite3/libsqlite/sqlite3.c             osFchmod(conchFile->h, cmode);
h                32387 ext/sqlite3/libsqlite/sqlite3.c               rc = osFchmod(conchFile->h, cmode);
h                32407 ext/sqlite3/libsqlite/sqlite3.c       OSTRACE(("TRANSPROXY: CLOSE  %d\n", pFile->h));
h                32410 ext/sqlite3/libsqlite/sqlite3.c         if( pFile->h>=0 ){
h                32411 ext/sqlite3/libsqlite/sqlite3.c           robust_close(pFile, pFile->h, __LINE__);
h                32413 ext/sqlite3/libsqlite/sqlite3.c         pFile->h = -1;
h                32417 ext/sqlite3/libsqlite/sqlite3.c           pFile->h = fd;
h                32457 ext/sqlite3/libsqlite/sqlite3.c       OSTRACE(("TAKECONCH  %d %s\n", conchFile->h,
h                32475 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("RELEASECONCH  %d for %s pid=%d\n", conchFile->h,
h                32482 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("RELEASECONCH  %d %s\n", conchFile->h,
h                32618 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("TRANSPROXY  %d for %s pid=%d\n", pFile->h,
h                32679 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("TRANSPROXY  %d %s\n", pFile->h,
h                33457 ext/sqlite3/libsqlite/sqlite3.c   HANDLE h;               /* Handle for accessing the file */
h                35230 ext/sqlite3/libsqlite/sqlite3.c #define HANDLE_TO_WINFILE(a) (winFile*)&((char*)a)[-(int)offsetof(winFile,h)]
h                35235 ext/sqlite3/libsqlite/sqlite3.c static void winceMutexAcquire(HANDLE h){
h                35238 ext/sqlite3/libsqlite/sqlite3.c      dwErr = osWaitForSingleObject(h, INFINITE);
h                35244 ext/sqlite3/libsqlite/sqlite3.c #define winceMutexRelease(h) ReleaseMutex(h)
h                35597 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("SEEK file=%p, offset=%lld\n", pFile->h, iOffset));
h                35609 ext/sqlite3/libsqlite/sqlite3.c   dwRet = osSetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
h                35616 ext/sqlite3/libsqlite/sqlite3.c     OSTRACE(("SEEK file=%p, rc=SQLITE_IOERR_SEEK\n", pFile->h));
h                35620 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("SEEK file=%p, rc=SQLITE_OK\n", pFile->h));
h                35631 ext/sqlite3/libsqlite/sqlite3.c   bRet = osSetFilePointerEx(pFile->h, x, 0, FILE_BEGIN);
h                35637 ext/sqlite3/libsqlite/sqlite3.c     OSTRACE(("SEEK file=%p, rc=SQLITE_IOERR_SEEK\n", pFile->h));
h                35641 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("SEEK file=%p, rc=SQLITE_OK\n", pFile->h));
h                35671 ext/sqlite3/libsqlite/sqlite3.c   assert( pFile->h!=NULL && pFile->h!=INVALID_HANDLE_VALUE );
h                35673 ext/sqlite3/libsqlite/sqlite3.c            osGetCurrentProcessId(), pFile, pFile->h));
h                35680 ext/sqlite3/libsqlite/sqlite3.c     rc = osCloseHandle(pFile->h);
h                35699 ext/sqlite3/libsqlite/sqlite3.c     pFile->h = NULL;
h                35703 ext/sqlite3/libsqlite/sqlite3.c            osGetCurrentProcessId(), pFile, pFile->h, rc ? "ok" : "failed"));
h                35733 ext/sqlite3/libsqlite/sqlite3.c            pFile->h, pBuf, amt, offset, pFile->locktype));
h                35742 ext/sqlite3/libsqlite/sqlite3.c                osGetCurrentProcessId(), pFile, pFile->h));
h                35757 ext/sqlite3/libsqlite/sqlite3.c              osGetCurrentProcessId(), pFile, pFile->h));
h                35760 ext/sqlite3/libsqlite/sqlite3.c   while( !osReadFile(pFile->h, pBuf, amt, &nRead, 0) ){
h                35765 ext/sqlite3/libsqlite/sqlite3.c   while( !osReadFile(pFile->h, pBuf, amt, &nRead, &overlapped) &&
h                35772 ext/sqlite3/libsqlite/sqlite3.c              osGetCurrentProcessId(), pFile, pFile->h));
h                35781 ext/sqlite3/libsqlite/sqlite3.c              osGetCurrentProcessId(), pFile, pFile->h));
h                35786 ext/sqlite3/libsqlite/sqlite3.c            osGetCurrentProcessId(), pFile, pFile->h));
h                35811 ext/sqlite3/libsqlite/sqlite3.c            pFile->h, pBuf, amt, offset, pFile->locktype));
h                35820 ext/sqlite3/libsqlite/sqlite3.c                osGetCurrentProcessId(), pFile, pFile->h));
h                35854 ext/sqlite3/libsqlite/sqlite3.c       if( !osWriteFile(pFile->h, aRem, nRem, &nWrite, 0) ){
h                35856 ext/sqlite3/libsqlite/sqlite3.c       if( !osWriteFile(pFile->h, aRem, nRem, &nWrite, &overlapped) ){
h                35884 ext/sqlite3/libsqlite/sqlite3.c                osGetCurrentProcessId(), pFile, pFile->h));
h                35889 ext/sqlite3/libsqlite/sqlite3.c              osGetCurrentProcessId(), pFile, pFile->h));
h                35896 ext/sqlite3/libsqlite/sqlite3.c            osGetCurrentProcessId(), pFile, pFile->h));
h                35911 ext/sqlite3/libsqlite/sqlite3.c            osGetCurrentProcessId(), pFile, pFile->h, nByte, pFile->locktype));
h                35926 ext/sqlite3/libsqlite/sqlite3.c   }else if( 0==osSetEndOfFile(pFile->h) &&
h                35944 ext/sqlite3/libsqlite/sqlite3.c            osGetCurrentProcessId(), pFile, pFile->h, sqlite3ErrName(rc)));
h                35990 ext/sqlite3/libsqlite/sqlite3.c            osGetCurrentProcessId(), pFile, pFile->h, flags,
h                36007 ext/sqlite3/libsqlite/sqlite3.c            osGetCurrentProcessId(), pFile, pFile->h));
h                36026 ext/sqlite3/libsqlite/sqlite3.c   rc = osFlushFileBuffers(pFile->h);
h                36030 ext/sqlite3/libsqlite/sqlite3.c              osGetCurrentProcessId(), pFile, pFile->h));
h                36035 ext/sqlite3/libsqlite/sqlite3.c              osGetCurrentProcessId(), pFile, pFile->h));
h                36052 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("SIZE file=%p, pSize=%p\n", pFile->h, pSize));
h                36057 ext/sqlite3/libsqlite/sqlite3.c     if( osGetFileInformationByHandleEx(pFile->h, FileStandardInfo,
h                36072 ext/sqlite3/libsqlite/sqlite3.c     lowerBits = osGetFileSize(pFile->h, &upperBits);
h                36083 ext/sqlite3/libsqlite/sqlite3.c            pFile->h, pSize, *pSize, sqlite3ErrName(rc)));
h                36125 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("READ-LOCK file=%p, lock=%d\n", pFile->h, pFile->locktype));
h                36132 ext/sqlite3/libsqlite/sqlite3.c     res = winceLockFile(&pFile->h, SHARED_FIRST, 0, 1, 0);
h                36134 ext/sqlite3/libsqlite/sqlite3.c     res = winLockFile(&pFile->h, SQLITE_LOCKFILEEX_FLAGS, SHARED_FIRST, 0,
h                36143 ext/sqlite3/libsqlite/sqlite3.c     res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS,
h                36151 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("READ-LOCK file=%p, result=%d\n", pFile->h, res));
h                36161 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("READ-UNLOCK file=%p, lock=%d\n", pFile->h, pFile->locktype));
h                36163 ext/sqlite3/libsqlite/sqlite3.c     res = winUnlockFile(&pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0);
h                36167 ext/sqlite3/libsqlite/sqlite3.c     res = winUnlockFile(&pFile->h, SHARED_FIRST+pFile->sharedLockByte, 0, 1, 0);
h                36175 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("READ-UNLOCK file=%p, result=%d\n", pFile->h, res));
h                36215 ext/sqlite3/libsqlite/sqlite3.c            pFile->h, pFile->locktype, pFile->sharedLockByte, locktype));
h                36222 ext/sqlite3/libsqlite/sqlite3.c     OSTRACE(("LOCK-HELD file=%p, rc=SQLITE_OK\n", pFile->h));
h                36242 ext/sqlite3/libsqlite/sqlite3.c     while( cnt-->0 && (res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS,
h                36252 ext/sqlite3/libsqlite/sqlite3.c                pFile->h, cnt, res));
h                36257 ext/sqlite3/libsqlite/sqlite3.c                  pFile->h, cnt, sqlite3ErrName(rc)));
h                36284 ext/sqlite3/libsqlite/sqlite3.c     res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, RESERVED_BYTE, 0, 1, 0);
h                36304 ext/sqlite3/libsqlite/sqlite3.c     res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, SHARED_FIRST, 0,
h                36318 ext/sqlite3/libsqlite/sqlite3.c     winUnlockFile(&pFile->h, PENDING_BYTE, 0, 1, 0);
h                36330 ext/sqlite3/libsqlite/sqlite3.c              pFile->h, locktype, newLocktype));
h                36334 ext/sqlite3/libsqlite/sqlite3.c            pFile->h, pFile->locktype, sqlite3ErrName(rc)));
h                36348 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("TEST-WR-LOCK file=%p, pResOut=%p\n", pFile->h, pResOut));
h                36353 ext/sqlite3/libsqlite/sqlite3.c     OSTRACE(("TEST-WR-LOCK file=%p, result=%d (local)\n", pFile->h, res));
h                36355 ext/sqlite3/libsqlite/sqlite3.c     res = winLockFile(&pFile->h, SQLITE_LOCKFILEEX_FLAGS,RESERVED_BYTE, 0, 1, 0);
h                36357 ext/sqlite3/libsqlite/sqlite3.c       winUnlockFile(&pFile->h, RESERVED_BYTE, 0, 1, 0);
h                36360 ext/sqlite3/libsqlite/sqlite3.c     OSTRACE(("TEST-WR-LOCK file=%p, result=%d (remote)\n", pFile->h, res));
h                36364 ext/sqlite3/libsqlite/sqlite3.c            pFile->h, pResOut, *pResOut));
h                36386 ext/sqlite3/libsqlite/sqlite3.c            pFile->h, pFile->locktype, pFile->sharedLockByte, locktype));
h                36389 ext/sqlite3/libsqlite/sqlite3.c     winUnlockFile(&pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0);
h                36398 ext/sqlite3/libsqlite/sqlite3.c     winUnlockFile(&pFile->h, RESERVED_BYTE, 0, 1, 0);
h                36404 ext/sqlite3/libsqlite/sqlite3.c     winUnlockFile(&pFile->h, PENDING_BYTE, 0, 1, 0);
h                36408 ext/sqlite3/libsqlite/sqlite3.c            pFile->h, pFile->locktype, sqlite3ErrName(rc)));
h                36438 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("FCNTL file=%p, op=%d, pArg=%p\n", pFile->h, op, pArg));
h                36442 ext/sqlite3/libsqlite/sqlite3.c       OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h));
h                36447 ext/sqlite3/libsqlite/sqlite3.c       OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h));
h                36452 ext/sqlite3/libsqlite/sqlite3.c       OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h));
h                36467 ext/sqlite3/libsqlite/sqlite3.c         OSTRACE(("FCNTL file=%p, rc=%s\n", pFile->h, sqlite3ErrName(rc)));
h                36470 ext/sqlite3/libsqlite/sqlite3.c       OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h));
h                36475 ext/sqlite3/libsqlite/sqlite3.c       OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h));
h                36480 ext/sqlite3/libsqlite/sqlite3.c       OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h));
h                36485 ext/sqlite3/libsqlite/sqlite3.c       OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h));
h                36500 ext/sqlite3/libsqlite/sqlite3.c       OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h));
h                36506 ext/sqlite3/libsqlite/sqlite3.c       HANDLE hOldFile = pFile->h;
h                36507 ext/sqlite3/libsqlite/sqlite3.c       pFile->h = *phFile;
h                36510 ext/sqlite3/libsqlite/sqlite3.c                hOldFile, pFile->h));
h                36520 ext/sqlite3/libsqlite/sqlite3.c       OSTRACE(("FCNTL file=%p, rc=%s\n", pFile->h, sqlite3ErrName(rc)));
h                36538 ext/sqlite3/libsqlite/sqlite3.c       OSTRACE(("FCNTL file=%p, rc=%s\n", pFile->h, sqlite3ErrName(rc)));
h                36543 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("FCNTL file=%p, rc=SQLITE_NOTFOUND\n", pFile->h));
h                36705 ext/sqlite3/libsqlite/sqlite3.c            pFile->hFile.h, lockType, ofst, nByte));
h                36709 ext/sqlite3/libsqlite/sqlite3.c     rc = winUnlockFile(&pFile->hFile.h, ofst, 0, nByte, 0);
h                36714 ext/sqlite3/libsqlite/sqlite3.c     rc = winLockFile(&pFile->hFile.h, dwFlags, ofst, 0, nByte, 0);
h                36725 ext/sqlite3/libsqlite/sqlite3.c            pFile->hFile.h, (lockType == _SHM_UNLCK) ? "winUnlockFile" :
h                36762 ext/sqlite3/libsqlite/sqlite3.c       if( p->hFile.h!=NULL && p->hFile.h!=INVALID_HANDLE_VALUE ){
h                36829 ext/sqlite3/libsqlite/sqlite3.c     ((winFile*)(&pShmNode->hFile))->h = INVALID_HANDLE_VALUE;
h                37150 ext/sqlite3/libsqlite/sqlite3.c       hMap = osCreateFileMappingFromApp(pShmNode->hFile.h,
h                37154 ext/sqlite3/libsqlite/sqlite3.c       hMap = osCreateFileMappingW(pShmNode->hFile.h,
h                37158 ext/sqlite3/libsqlite/sqlite3.c       hMap = osCreateFileMappingA(pShmNode->hFile.h,
h                37306 ext/sqlite3/libsqlite/sqlite3.c     pFd->hMap = osCreateFileMappingFromApp(pFd->h, NULL, protect, nMap, NULL);
h                37308 ext/sqlite3/libsqlite/sqlite3.c     pFd->hMap = osCreateFileMappingW(pFd->h, NULL, protect,
h                37312 ext/sqlite3/libsqlite/sqlite3.c     pFd->hMap = osCreateFileMappingA(pFd->h, NULL, protect,
h                37810 ext/sqlite3/libsqlite/sqlite3.c   HANDLE h;
h                37879 ext/sqlite3/libsqlite/sqlite3.c   pFile->h = INVALID_HANDLE_VALUE;
h                37975 ext/sqlite3/libsqlite/sqlite3.c     while( (h = osCreateFile2((LPCWSTR)zConverted,
h                37984 ext/sqlite3/libsqlite/sqlite3.c     while( (h = osCreateFileW((LPCWSTR)zConverted,
h                37997 ext/sqlite3/libsqlite/sqlite3.c     while( (h = osCreateFileA((LPCSTR)zConverted,
h                38010 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("OPEN file=%p, name=%s, access=%lx, rc=%s\n", h, zUtf8Name,
h                38011 ext/sqlite3/libsqlite/sqlite3.c            dwDesiredAccess, (h==INVALID_HANDLE_VALUE) ? "failed" : "ok"));
h                38013 ext/sqlite3/libsqlite/sqlite3.c   if( h==INVALID_HANDLE_VALUE ){
h                38037 ext/sqlite3/libsqlite/sqlite3.c            "rc=%s\n", h, zUtf8Name, dwDesiredAccess, pOutFlags, pOutFlags ?
h                38038 ext/sqlite3/libsqlite/sqlite3.c            *pOutFlags : 0, (h==INVALID_HANDLE_VALUE) ? "failed" : "ok"));
h                38044 ext/sqlite3/libsqlite/sqlite3.c     osCloseHandle(h);
h                38061 ext/sqlite3/libsqlite/sqlite3.c   pFile->h = h;
h                38512 ext/sqlite3/libsqlite/sqlite3.c   HANDLE h;
h                38538 ext/sqlite3/libsqlite/sqlite3.c     h = osLoadPackagedLibrary((LPCWSTR)zConverted, 0);
h                38540 ext/sqlite3/libsqlite/sqlite3.c     h = osLoadLibraryW((LPCWSTR)zConverted);
h                38545 ext/sqlite3/libsqlite/sqlite3.c     h = osLoadLibraryA((char*)zConverted);
h                38548 ext/sqlite3/libsqlite/sqlite3.c   OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename, (void*)h));
h                38550 ext/sqlite3/libsqlite/sqlite3.c   return (void*)h;
h                38988 ext/sqlite3/libsqlite/sqlite3.c     u32 h = BITVEC_HASH(i++);
h                38989 ext/sqlite3/libsqlite/sqlite3.c     while( p->u.aHash[h] ){
h                38990 ext/sqlite3/libsqlite/sqlite3.c       if( p->u.aHash[h]==i ) return 1;
h                38991 ext/sqlite3/libsqlite/sqlite3.c       h = (h+1) % BITVEC_NINT;
h                39010 ext/sqlite3/libsqlite/sqlite3.c   u32 h;
h                39028 ext/sqlite3/libsqlite/sqlite3.c   h = BITVEC_HASH(i++);
h                39032 ext/sqlite3/libsqlite/sqlite3.c   if( !p->u.aHash[h] ){
h                39042 ext/sqlite3/libsqlite/sqlite3.c     if( p->u.aHash[h]==i ) return SQLITE_OK;
h                39043 ext/sqlite3/libsqlite/sqlite3.c     h++;
h                39044 ext/sqlite3/libsqlite/sqlite3.c     if( h>=BITVEC_NINT ) h = 0;
h                39045 ext/sqlite3/libsqlite/sqlite3.c   } while( p->u.aHash[h] );
h                39070 ext/sqlite3/libsqlite/sqlite3.c   p->u.aHash[h] = i;
h                39102 ext/sqlite3/libsqlite/sqlite3.c         u32 h = BITVEC_HASH(aiValues[j]-1);
h                39104 ext/sqlite3/libsqlite/sqlite3.c         while( p->u.aHash[h] ){
h                39105 ext/sqlite3/libsqlite/sqlite3.c           h++;
h                39106 ext/sqlite3/libsqlite/sqlite3.c           if( h>=BITVEC_NINT ) h = 0;
h                39108 ext/sqlite3/libsqlite/sqlite3.c         p->u.aHash[h] = aiValues[j];
h                40334 ext/sqlite3/libsqlite/sqlite3.c         unsigned int h = pPage->iKey % nNew;
h                40336 ext/sqlite3/libsqlite/sqlite3.c         pPage->pNext = apNew[h];
h                40337 ext/sqlite3/libsqlite/sqlite3.c         apNew[h] = pPage;
h                40388 ext/sqlite3/libsqlite/sqlite3.c   unsigned int h;
h                40393 ext/sqlite3/libsqlite/sqlite3.c   h = pPage->iKey % pCache->nHash;
h                40394 ext/sqlite3/libsqlite/sqlite3.c   for(pp=&pCache->apHash[h]; (*pp)!=pPage; pp=&(*pp)->pNext);
h                40428 ext/sqlite3/libsqlite/sqlite3.c   unsigned int h;
h                40430 ext/sqlite3/libsqlite/sqlite3.c   for(h=0; h<pCache->nHash; h++){
h                40431 ext/sqlite3/libsqlite/sqlite3.c     PgHdr1 **pp = &pCache->apHash[h]; 
h                40663 ext/sqlite3/libsqlite/sqlite3.c     unsigned int h = iKey % pCache->nHash;
h                40666 ext/sqlite3/libsqlite/sqlite3.c     pPage->pNext = pCache->apHash[h];
h                40672 ext/sqlite3/libsqlite/sqlite3.c     pCache->apHash[h] = pPage;
h                40823 ext/sqlite3/libsqlite/sqlite3.c   unsigned int h; 
h                40829 ext/sqlite3/libsqlite/sqlite3.c   h = iOld%pCache->nHash;
h                40830 ext/sqlite3/libsqlite/sqlite3.c   pp = &pCache->apHash[h];
h                40836 ext/sqlite3/libsqlite/sqlite3.c   h = iNew%pCache->nHash;
h                40838 ext/sqlite3/libsqlite/sqlite3.c   pPage->pNext = pCache->apHash[h];
h                40839 ext/sqlite3/libsqlite/sqlite3.c   pCache->apHash[h] = pPage;
h                91945 ext/sqlite3/libsqlite/sqlite3.c   u32 h = 0;
h                91951 ext/sqlite3/libsqlite/sqlite3.c     h = (h<<8) + sqlite3UpperToLower[(*zIn)&0xff];
h                91953 ext/sqlite3/libsqlite/sqlite3.c     if( h==(('c'<<24)+('h'<<16)+('a'<<8)+'r') ){             /* CHAR */
h                91956 ext/sqlite3/libsqlite/sqlite3.c     }else if( h==(('c'<<24)+('l'<<16)+('o'<<8)+'b') ){       /* CLOB */
h                91958 ext/sqlite3/libsqlite/sqlite3.c     }else if( h==(('t'<<24)+('e'<<16)+('x'<<8)+'t') ){       /* TEXT */
h                91960 ext/sqlite3/libsqlite/sqlite3.c     }else if( h==(('b'<<24)+('l'<<16)+('o'<<8)+'b')          /* BLOB */
h                91965 ext/sqlite3/libsqlite/sqlite3.c     }else if( h==(('r'<<24)+('e'<<16)+('a'<<8)+'l')          /* REAL */
h                91968 ext/sqlite3/libsqlite/sqlite3.c     }else if( h==(('f'<<24)+('l'<<16)+('o'<<8)+'a')          /* FLOA */
h                91971 ext/sqlite3/libsqlite/sqlite3.c     }else if( h==(('d'<<24)+('o'<<16)+('u'<<8)+'b')          /* DOUB */
h                91975 ext/sqlite3/libsqlite/sqlite3.c     }else if( (h&0x00FFFFFF)==(('i'<<16)+('n'<<8)+'t') ){    /* INT */
h                95393 ext/sqlite3/libsqlite/sqlite3.c   int h,               /* Hash of the name */
h                95398 ext/sqlite3/libsqlite/sqlite3.c   for(p=pHash->a[h]; p; p=p->pHash){
h                95416 ext/sqlite3/libsqlite/sqlite3.c   int h = (sqlite3UpperToLower[c1] + nName) % ArraySize(pHash->a);
h                95417 ext/sqlite3/libsqlite/sqlite3.c   pOther = functionSearch(pHash, h, pDef->zName, nName);
h                95424 ext/sqlite3/libsqlite/sqlite3.c     pDef->pHash = pHash->a[h];
h                95425 ext/sqlite3/libsqlite/sqlite3.c     pHash->a[h] = pDef;
h                95461 ext/sqlite3/libsqlite/sqlite3.c   int h;              /* Hash value */
h                95465 ext/sqlite3/libsqlite/sqlite3.c   h = (sqlite3UpperToLower[(u8)zName[0]] + nName) % ArraySize(db->aFunc.a);
h                95469 ext/sqlite3/libsqlite/sqlite3.c   p = functionSearch(&db->aFunc, h, zName, nName);
h                95494 ext/sqlite3/libsqlite/sqlite3.c     p = functionSearch(pHash, h, zName, nName);
h                127009 ext/sqlite3/libsqlite/sqlite3.c   int h, i;
h                127011 ext/sqlite3/libsqlite/sqlite3.c   h = ((charMap(z[0])*4) ^
h                127014 ext/sqlite3/libsqlite/sqlite3.c   for(i=((int)aHash[h])-1; i>=0; i=((int)aNext[i])-1){
h                140823 ext/sqlite3/libsqlite/sqlite3.c   unsigned h = 0;
h                140826 ext/sqlite3/libsqlite/sqlite3.c     h = (h<<3) ^ h ^ *z++;
h                140829 ext/sqlite3/libsqlite/sqlite3.c   return (int)(h & 0x7fffffff);
h                140840 ext/sqlite3/libsqlite/sqlite3.c   int h = 0;
h                140843 ext/sqlite3/libsqlite/sqlite3.c     h = (h<<3) ^ h ^ *(z++);
h                140845 ext/sqlite3/libsqlite/sqlite3.c   return h & 0x7fffffff;
h                140933 ext/sqlite3/libsqlite/sqlite3.c     int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1);
h                140935 ext/sqlite3/libsqlite/sqlite3.c     fts3HashInsertElement(pH, &new_ht[h], elem);
h                140948 ext/sqlite3/libsqlite/sqlite3.c   int h               /* The hash for this key. */
h                140955 ext/sqlite3/libsqlite/sqlite3.c     struct _fts3ht *pEntry = &pH->ht[h];
h                140975 ext/sqlite3/libsqlite/sqlite3.c   int h                 /* Hash value for the element */
h                140986 ext/sqlite3/libsqlite/sqlite3.c   pEntry = &pH->ht[h];
h                141011 ext/sqlite3/libsqlite/sqlite3.c   int h;                          /* A hash on key */
h                141017 ext/sqlite3/libsqlite/sqlite3.c   h = (*xHash)(pKey,nKey);
h                141019 ext/sqlite3/libsqlite/sqlite3.c   return fts3FindElementByHash(pH,pKey,nKey, h & (pH->htsize-1));
h                141056 ext/sqlite3/libsqlite/sqlite3.c   int h;                    /* the hash of the key modulo hash table size */
h                141066 ext/sqlite3/libsqlite/sqlite3.c   h = hraw & (pH->htsize-1);
h                141067 ext/sqlite3/libsqlite/sqlite3.c   elem = fts3FindElementByHash(pH,pKey,nKey,h);
h                141071 ext/sqlite3/libsqlite/sqlite3.c       fts3RemoveElementByHash(pH,elem,h);
h                141101 ext/sqlite3/libsqlite/sqlite3.c   h = hraw & (pH->htsize-1);
h                141102 ext/sqlite3/libsqlite/sqlite3.c   fts3HashInsertElement(pH, &pH->ht[h], new_elem);
h                 186 ext/standard/array.c 		Z_LVAL(first) = f->h;
h                 195 ext/standard/array.c 		Z_LVAL(second) = s->h;
h                 737 ext/standard/array.c 		Z_LVAL_P(key1) = f->h;
h                 745 ext/standard/array.c 		Z_LVAL_P(key2) = s->h;
h                2742 ext/standard/array.c 				zend_hash_index_del(Z_ARRVAL_P(return_value), p->h);
h                2747 ext/standard/array.c 					zend_hash_quick_del(Z_ARRVAL_P(return_value), p->arKey, p->nKeyLength, p->h);
h                2869 ext/standard/array.c 				if (zend_hash_index_find(Z_ARRVAL_PP(args[i]), p->h, (void**)&data) == FAILURE ||
h                2879 ext/standard/array.c 				zend_hash_index_update(Z_ARRVAL_P(return_value), p->h, p->pData, sizeof(zval*), NULL);
h                2884 ext/standard/array.c 				if (zend_hash_quick_find(Z_ARRVAL_PP(args[i]), p->arKey, p->nKeyLength, p->h, (void**)&data) == FAILURE ||
h                2894 ext/standard/array.c 				zend_hash_quick_update(Z_ARRVAL_P(return_value), p->arKey, p->nKeyLength, p->h, p->pData, sizeof(zval*), NULL);
h                3112 ext/standard/array.c 						zend_hash_index_del(Z_ARRVAL_P(return_value), p->h);
h                3114 ext/standard/array.c 						zend_hash_quick_del(Z_ARRVAL_P(return_value), p->arKey, p->nKeyLength, p->h);
h                3128 ext/standard/array.c 					zend_hash_index_del(Z_ARRVAL_P(return_value), p->h);
h                3130 ext/standard/array.c 					zend_hash_quick_del(Z_ARRVAL_P(return_value), p->arKey, p->nKeyLength, p->h);
h                3287 ext/standard/array.c 				if (zend_hash_index_find(Z_ARRVAL_PP(args[i]), p->h, (void**)&data) == SUCCESS &&
h                3297 ext/standard/array.c 				zend_hash_index_update(Z_ARRVAL_P(return_value), p->h, p->pData, sizeof(zval*), NULL);
h                3302 ext/standard/array.c 				if (zend_hash_quick_find(Z_ARRVAL_PP(args[i]), p->arKey, p->nKeyLength, p->h, (void**)&data) == SUCCESS &&
h                3312 ext/standard/array.c 				zend_hash_quick_update(Z_ARRVAL_P(return_value), p->arKey, p->nKeyLength, p->h, p->pData, sizeof(zval*), NULL);
h                3541 ext/standard/array.c 					zend_hash_index_del(Z_ARRVAL_P(return_value), p->h);
h                3543 ext/standard/array.c 					zend_hash_quick_del(Z_ARRVAL_P(return_value), p->arKey, p->nKeyLength, p->h);
h                4562 ext/standard/basic_functions.c 			add_index_stringl(retval, hash_key->h, Z_STRVAL_P(entry), Z_STRLEN_P(entry), 1);
h                 118 ext/standard/crypt_sha256.c 	uint32_t h = ctx->H[7];
h                 139 ext/standard/crypt_sha256.c 		uint32_t h_save = h;
h                 163 ext/standard/crypt_sha256.c 			uint32_t T1 = h + S1 (e) + Ch (e, f, g) + K[t] + W[t];
h                 165 ext/standard/crypt_sha256.c 			h = g;
h                 184 ext/standard/crypt_sha256.c 		h += h_save;
h                 198 ext/standard/crypt_sha256.c 	ctx->H[7] = h;
h                 142 ext/standard/crypt_sha512.c 	uint64_t h = ctx->H[7];
h                 163 ext/standard/crypt_sha512.c 		uint64_t h_save = h;
h                 190 ext/standard/crypt_sha512.c 			uint64_t T1 = h + S1 (e) + Ch (e, f, g) + K[t] + W[t];
h                 192 ext/standard/crypt_sha512.c 			h = g;
h                 211 ext/standard/crypt_sha512.c 		h += h_save;
h                 225 ext/standard/crypt_sha512.c 	ctx->H[7] = h;
h                 551 ext/standard/html.c 					 *h = &table[num-1],
h                 561 ext/standard/html.c 	while (l <= h) {
h                 562 ext/standard/html.c 		m = l + (h - l) / 2;
h                 564 ext/standard/html.c 			h = m - 1;
h                  82 ext/standard/mail.c 	unsigned int h = 5381;
h                  90 ext/standard/mail.c 		h = (h + (h << 5)) ^ (unsigned long) (unsigned char) tolower(str[j]);
h                  93 ext/standard/mail.c 	h = (h % 53);
h                  95 ext/standard/mail.c 	RETURN_LONG((int) h);
h                2868 ext/standard/string.c 			HASH h = php_strtr_hash(&S(&patterns[i].pat)[j], B) & shift->table_mask;
h                2870 ext/standard/string.c 			shift->entries[h] = MIN(shift->entries[h], m - j - B);
h                3022 ext/standard/string.c 			HASH h = php_strtr_hash(&S(&res->patterns[i].pat)[res->m - res->B], res->B)
h                3024 ext/standard/string.c 			if (h != last_h) {
h                3025 ext/standard/string.c 				res->hash->entries[h] = i;
h                3026 ext/standard/string.c 				last_h = h;
h                3062 ext/standard/string.c 		HASH	h		= php_strtr_hash(&S(text)[pos + d->m - d->B], d->B) & d->shift->table_mask;
h                3063 ext/standard/string.c 		STRLEN	shift	= d->shift->entries[h];
h                3068 ext/standard/string.c 			HASH	h2				= h & d->hash->table_mask,
h                 704 ext/standard/url.c 	zval **prev_val, **hdr = NULL, **h;
h                 726 ext/standard/url.c 	if (zend_hash_find(HASH_OF(stream->wrapperdata), "headers", sizeof("headers"), (void **)&h) != FAILURE && Z_TYPE_PP(h) == IS_ARRAY) {
h                 728 ext/standard/url.c 		if (!Z_ARRVAL_PP(h)->nNumOfElements) {
h                 731 ext/standard/url.c 		zend_hash_find(HASH_OF(stream->wrapperdata), "headers", sizeof("headers"), (void **)&h);
h                 732 ext/standard/url.c 		hashT = Z_ARRVAL_PP(h);	
h                  45 ext/standard/var.c 		php_printf("%*c[%ld]=>\n", level + 1, ' ', hash_key->h);
h                  64 ext/standard/var.c 		php_printf("%*c[%ld]=>\n", level + 1, ' ', hash_key->h);
h                 196 ext/standard/var.c 		php_printf("%*c[%ld]=>\n", level + 1, ' ', hash_key->h);
h                 221 ext/standard/var.c 		php_printf("%*c[%ld]=>\n", level + 1, ' ', hash_key->h);
h                 354 ext/standard/var.c 		smart_str_append_long(buf, (long) hash_key->h);
h                 406 ext/standard/var.c 		smart_str_append_long(buf, (long) hash_key->h);
h                1157 ext/tidy/tidy.c 	php_output_handler *h;
h                1159 ext/tidy/tidy.c 	if (TG(clean_output) && (h = php_tidy_output_handler_init(name, name_len, 0, PHP_OUTPUT_HANDLER_STDFLAGS TSRMLS_CC))) {
h                1160 ext/tidy/tidy.c 		php_output_handler_start(h TSRMLS_CC);
h                 272 ext/zlib/zlib.c 	php_output_handler *h = NULL;
h                 280 ext/zlib/zlib.c 	if ((h = php_output_handler_create_internal(handler_name, handler_name_len, php_zlib_output_handler, chunk_size, flags TSRMLS_CC))) {
h                 281 ext/zlib/zlib.c 		php_output_handler_set_context(h, php_zlib_output_handler_context_init(TSRMLS_C), php_zlib_output_handler_context_dtor TSRMLS_CC);
h                 284 ext/zlib/zlib.c 	return h;
h                 292 ext/zlib/zlib.c 	php_output_handler *h;
h                 302 ext/zlib/zlib.c 					(h = php_zlib_output_handler_init(ZEND_STRL(PHP_ZLIB_OUTPUT_HANDLER_NAME), ZLIBG(output_compression), PHP_OUTPUT_HANDLER_STDFLAGS TSRMLS_CC)) &&
h                 303 ext/zlib/zlib.c 					(SUCCESS == php_output_handler_start(h TSRMLS_CC))) {
h                 145 main/alloca.c      } h;
h                 180 main/alloca.c        if ((STACK_DIR > 0 && hp->h.deep > depth)
h                 181 main/alloca.c  	  || (STACK_DIR < 0 && hp->h.deep < depth))
h                 183 main/alloca.c  	  register header *np = hp->h.next;
h                 211 main/alloca.c      ((header *) new)->h.next = last_alloca_header;
h                 212 main/alloca.c      ((header *) new)->h.deep = depth;
h                  70 main/output.c  static int php_output_stack_apply_op(void *h, void *c);
h                  71 main/output.c  static int php_output_stack_apply_clean(void *h, void *c);
h                  72 main/output.c  static int php_output_stack_apply_list(void *h, void *z);
h                  73 main/output.c  static int php_output_stack_apply_status(void *h, void *z);
h                 733 main/output.c  PHPAPI void php_output_handler_free(php_output_handler **h TSRMLS_DC)
h                 735 main/output.c  	if (*h) {
h                 736 main/output.c  		php_output_handler_dtor(*h TSRMLS_CC);
h                 737 main/output.c  		efree(*h);
h                 738 main/output.c  		*h = NULL;
h                1109 main/output.c  static int php_output_stack_apply_op(void *h, void *c)
h                1113 main/output.c  	php_output_handler *handler = *(php_output_handler **) h;
h                1157 main/output.c  static int php_output_stack_apply_clean(void *h, void *c)
h                1159 main/output.c  	php_output_handler *handler = *(php_output_handler **) h;
h                1171 main/output.c  static int php_output_stack_apply_list(void *h, void *z)
h                1173 main/output.c  	php_output_handler *handler = *(php_output_handler **) h;
h                1183 main/output.c  static int php_output_stack_apply_status(void *h, void *z)
h                1185 main/output.c  	php_output_handler *handler = *(php_output_handler **) h;
h                  69 main/php_network.h # include <netinet/in.h>
h                  73 main/php_network.h #include <sys/socket.h>
h                 375 main/rfc1867.c static void php_free_hdr_entry(mime_header_entry *h)
h                 377 main/rfc1867.c 	if (h->key) {
h                 378 main/rfc1867.c 		efree(h->key);
h                 380 main/rfc1867.c 	if (h->value) {
h                 381 main/rfc1867.c 		efree(h->value);
h                 404 sapi/cgi/cgi_main.c 	sapi_header_struct *h;
h                 440 sapi/cgi/cgi_main.c 				h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 441 sapi/cgi/cgi_main.c 				while (h) {
h                 442 sapi/cgi/cgi_main.c 					if (h->header_len > sizeof("Status:")-1 &&
h                 443 sapi/cgi/cgi_main.c 						strncasecmp(h->header, "Status:", sizeof("Status:")-1) == 0
h                 448 sapi/cgi/cgi_main.c 					h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 474 sapi/cgi/cgi_main.c 	h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 475 sapi/cgi/cgi_main.c 	while (h) {
h                 477 sapi/cgi/cgi_main.c 		if (h->header_len) {
h                 478 sapi/cgi/cgi_main.c 			if (h->header_len > sizeof("Status:")-1 && 
h                 479 sapi/cgi/cgi_main.c 				strncasecmp(h->header, "Status:", sizeof("Status:")-1) == 0
h                 483 sapi/cgi/cgi_main.c 					PHPWRITE_H(h->header, h->header_len);
h                 486 sapi/cgi/cgi_main.c 			} else if (response_status == 304 && h->header_len > sizeof("Content-Type:")-1 &&
h                 487 sapi/cgi/cgi_main.c 				strncasecmp(h->header, "Content-Type:", sizeof("Content-Type:")-1) == 0
h                 489 sapi/cgi/cgi_main.c 				h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 492 sapi/cgi/cgi_main.c 				PHPWRITE_H(h->header, h->header_len);
h                 496 sapi/cgi/cgi_main.c 		h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                1663 sapi/cgi/cgi_main.c static void add_response_header(sapi_header_struct *h, zval *return_value TSRMLS_DC) /* {{{ */
h                1669 sapi/cgi/cgi_main.c 	if (h->header_len > 0) {
h                1670 sapi/cgi/cgi_main.c 		p = strchr(h->header, ':');
h                1672 sapi/cgi/cgi_main.c 			len = p - h->header;
h                1675 sapi/cgi/cgi_main.c 			while (len > 0 && (h->header[len-1] == ' ' || h->header[len-1] == '\t')) {
h                1680 sapi/cgi/cgi_main.c 				memcpy(s, h->header, len);
h                1685 sapi/cgi/cgi_main.c 				add_assoc_stringl_ex(return_value, s, len+1, p, h->header_len - (p - h->header), 1);
h                 184 sapi/cgi/fastcgi.c static void fcgi_hash_init(fcgi_hash *h)
h                 186 sapi/cgi/fastcgi.c 	memset(h->hash_table, 0, sizeof(h->hash_table));
h                 187 sapi/cgi/fastcgi.c 	h->list = NULL;
h                 188 sapi/cgi/fastcgi.c 	h->buckets = (fcgi_hash_buckets*)malloc(sizeof(fcgi_hash_buckets));
h                 189 sapi/cgi/fastcgi.c 	h->buckets->idx = 0;
h                 190 sapi/cgi/fastcgi.c 	h->buckets->next = NULL;
h                 191 sapi/cgi/fastcgi.c 	h->data = (fcgi_data_seg*)malloc(sizeof(fcgi_data_seg) - 1 + FCGI_HASH_SEG_SIZE);
h                 192 sapi/cgi/fastcgi.c 	h->data->pos = h->data->data;
h                 193 sapi/cgi/fastcgi.c 	h->data->end = h->data->pos + FCGI_HASH_SEG_SIZE;
h                 194 sapi/cgi/fastcgi.c 	h->data->next = NULL;
h                 197 sapi/cgi/fastcgi.c static void fcgi_hash_destroy(fcgi_hash *h)
h                 202 sapi/cgi/fastcgi.c 	b = h->buckets;
h                 208 sapi/cgi/fastcgi.c 	p = h->data;
h                 216 sapi/cgi/fastcgi.c static void fcgi_hash_clean(fcgi_hash *h)
h                 218 sapi/cgi/fastcgi.c 	memset(h->hash_table, 0, sizeof(h->hash_table));
h                 219 sapi/cgi/fastcgi.c 	h->list = NULL;
h                 221 sapi/cgi/fastcgi.c 	while (h->buckets->next) {
h                 222 sapi/cgi/fastcgi.c 		fcgi_hash_buckets *q = h->buckets;
h                 224 sapi/cgi/fastcgi.c 		h->buckets = h->buckets->next;
h                 227 sapi/cgi/fastcgi.c 	h->buckets->idx = 0;
h                 229 sapi/cgi/fastcgi.c 	while (h->data->next) {
h                 230 sapi/cgi/fastcgi.c 		fcgi_data_seg *q = h->data;
h                 232 sapi/cgi/fastcgi.c 		h->data = h->data->next;
h                 235 sapi/cgi/fastcgi.c 	h->data->pos = h->data->data;
h                 238 sapi/cgi/fastcgi.c static inline char* fcgi_hash_strndup(fcgi_hash *h, char *str, unsigned int str_len)
h                 242 sapi/cgi/fastcgi.c 	if (UNEXPECTED(h->data->pos + str_len + 1 >= h->data->end)) {
h                 248 sapi/cgi/fastcgi.c 		p->next = h->data;
h                 249 sapi/cgi/fastcgi.c 		h->data = p;
h                 251 sapi/cgi/fastcgi.c 	ret = h->data->pos; 
h                 254 sapi/cgi/fastcgi.c 	h->data->pos += str_len + 1;
h                 258 sapi/cgi/fastcgi.c static char* fcgi_hash_set(fcgi_hash *h, unsigned int hash_value, char *var, unsigned int var_len, char *val, unsigned int val_len)
h                 261 sapi/cgi/fastcgi.c 	fcgi_hash_bucket *p = h->hash_table[idx];
h                 269 sapi/cgi/fastcgi.c 			p->val = fcgi_hash_strndup(h, val, val_len);
h                 275 sapi/cgi/fastcgi.c 	if (UNEXPECTED(h->buckets->idx >= FCGI_HASH_TABLE_SIZE)) {
h                 278 sapi/cgi/fastcgi.c 		b->next = h->buckets;
h                 279 sapi/cgi/fastcgi.c 		h->buckets = b;
h                 281 sapi/cgi/fastcgi.c 	p = h->buckets->data + h->buckets->idx;
h                 282 sapi/cgi/fastcgi.c 	h->buckets->idx++;
h                 283 sapi/cgi/fastcgi.c 	p->next = h->hash_table[idx];
h                 284 sapi/cgi/fastcgi.c 	h->hash_table[idx] = p;
h                 285 sapi/cgi/fastcgi.c 	p->list_next = h->list;
h                 286 sapi/cgi/fastcgi.c 	h->list = p;
h                 289 sapi/cgi/fastcgi.c 	p->var = fcgi_hash_strndup(h, var, var_len);
h                 291 sapi/cgi/fastcgi.c 	p->val = fcgi_hash_strndup(h, val, val_len);
h                 295 sapi/cgi/fastcgi.c static void fcgi_hash_del(fcgi_hash *h, unsigned int hash_value, char *var, unsigned int var_len)
h                 298 sapi/cgi/fastcgi.c 	fcgi_hash_bucket **p = &h->hash_table[idx];
h                 314 sapi/cgi/fastcgi.c static char *fcgi_hash_get(fcgi_hash *h, unsigned int hash_value, char *var, unsigned int var_len, unsigned int *val_len)
h                 317 sapi/cgi/fastcgi.c 	fcgi_hash_bucket *p = h->hash_table[idx];
h                 331 sapi/cgi/fastcgi.c static void fcgi_hash_apply(fcgi_hash *h, fcgi_apply_func func, void *arg TSRMLS_DC)
h                 333 sapi/cgi/fastcgi.c 	fcgi_hash_bucket *p	= h->list;
h                 396 sapi/cli/php_cli.c static int sapi_cli_header_handler(sapi_header_struct *h, sapi_header_op_enum op, sapi_headers_struct *s TSRMLS_DC) /* {{{ */
h                 508 sapi/cli/php_cli_server.c static void add_response_header(sapi_header_struct *h, zval *return_value TSRMLS_DC) /* {{{ */
h                 514 sapi/cli/php_cli_server.c 	if (h->header_len > 0) {
h                 515 sapi/cli/php_cli_server.c 		p = strchr(h->header, ':');
h                 516 sapi/cli/php_cli_server.c 		len = p - h->header;
h                 518 sapi/cli/php_cli_server.c 			while (len > 0 && (h->header[len-1] == ' ' || h->header[len-1] == '\t')) {
h                 523 sapi/cli/php_cli_server.c 				memcpy(s, h->header, len);
h                 528 sapi/cli/php_cli_server.c 				add_assoc_stringl_ex(return_value, s, len+1, p, h->header_len - (p - h->header), 1);
h                 652 sapi/cli/php_cli_server.c 	sapi_header_struct *h;
h                 668 sapi/cli/php_cli_server.c 	h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 669 sapi/cli/php_cli_server.c 	while (h) {
h                 670 sapi/cli/php_cli_server.c 		if (h->header_len) {
h                 671 sapi/cli/php_cli_server.c 			smart_str_appendl(&buffer, h->header, h->header_len);
h                 674 sapi/cli/php_cli_server.c 		h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 298 sapi/fpm/fpm/fpm_log.c 						sapi_header_struct *h;
h                 303 sapi/fpm/fpm/fpm_log.c 						h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 304 sapi/fpm/fpm/fpm_log.c 						while (h) {
h                 306 sapi/fpm/fpm/fpm_log.c 							if (!h->header_len) {
h                 307 sapi/fpm/fpm/fpm_log.c 								h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 310 sapi/fpm/fpm/fpm_log.c 							if (!strstr(h->header, format)) {
h                 311 sapi/fpm/fpm/fpm_log.c 								h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 316 sapi/fpm/fpm/fpm_log.c 							if (h->header_len <= format_len + 2) {
h                 317 sapi/fpm/fpm/fpm_log.c 								h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 321 sapi/fpm/fpm/fpm_log.c 							if (h->header[format_len] != ':' || h->header[format_len + 1] != ' ') {
h                 322 sapi/fpm/fpm/fpm_log.c 								h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 326 sapi/fpm/fpm/fpm_log.c 							header = h->header + format_len + 2;
h                 396 sapi/fpm/fpm/fpm_main.c 	sapi_header_struct *h;
h                 432 sapi/fpm/fpm/fpm_main.c 				h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 433 sapi/fpm/fpm/fpm_main.c 				while (h) {
h                 434 sapi/fpm/fpm/fpm_main.c 					if (h->header_len > sizeof("Status:") - 1 &&
h                 435 sapi/fpm/fpm/fpm_main.c 						strncasecmp(h->header, "Status:", sizeof("Status:") - 1) == 0
h                 440 sapi/fpm/fpm/fpm_main.c 					h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 466 sapi/fpm/fpm/fpm_main.c 	h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 467 sapi/fpm/fpm/fpm_main.c 	while (h) {
h                 469 sapi/fpm/fpm/fpm_main.c 		if (h->header_len) {
h                 470 sapi/fpm/fpm/fpm_main.c 			if (h->header_len > sizeof("Status:") - 1 && 
h                 471 sapi/fpm/fpm/fpm_main.c 				strncasecmp(h->header, "Status:", sizeof("Status:") - 1) == 0
h                 475 sapi/fpm/fpm/fpm_main.c 					PHPWRITE_H(h->header, h->header_len);
h                 478 sapi/fpm/fpm/fpm_main.c 			} else if (response_status == 304 && h->header_len > sizeof("Content-Type:") - 1 &&
h                 479 sapi/fpm/fpm/fpm_main.c 				strncasecmp(h->header, "Content-Type:", sizeof("Content-Type:") - 1) == 0
h                 481 sapi/fpm/fpm/fpm_main.c 				h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 484 sapi/fpm/fpm/fpm_main.c 				PHPWRITE_H(h->header, h->header_len);
h                 488 sapi/fpm/fpm/fpm_main.c 		h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 398 sapi/litespeed/lsapi_main.c     sapi_header_struct  *h;
h                 403 sapi/litespeed/lsapi_main.c         h = zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 404 sapi/litespeed/lsapi_main.c         while (h) {
h                 405 sapi/litespeed/lsapi_main.c             if ( h->header_len > 0 ) {
h                 406 sapi/litespeed/lsapi_main.c                 LSAPI_AppendRespHeader(h->header, h->header_len);
h                 408 sapi/litespeed/lsapi_main.c             h = zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                1231 sapi/litespeed/lsapi_main.c     sapi_header_struct  *h;
h                1246 sapi/litespeed/lsapi_main.c     h = zend_llist_get_first_ex(&SG(sapi_headers).headers, &pos);
h                1247 sapi/litespeed/lsapi_main.c     while (h) {
h                1248 sapi/litespeed/lsapi_main.c         if ( h->header_len > 0 ) {
h                1249 sapi/litespeed/lsapi_main.c             p = strchr( h->header, ':' );
h                1250 sapi/litespeed/lsapi_main.c             len = p - h->header;
h                1252 sapi/litespeed/lsapi_main.c                 memmove( headerBuf, h->header, len );
h                1267 sapi/litespeed/lsapi_main.c         h = zend_llist_get_next_ex(&SG(sapi_headers).headers, &pos);
h                 449 sapi/phpdbg/phpdbg.c static int php_sapi_phpdbg_header_handler(sapi_header_struct *h, sapi_header_op_enum op, sapi_headers_struct *s TSRMLS_DC) /* {{{ */
h                  31 sapi/phpdbg/phpdbg_break.c #define PHPDBG_BREAK_COMMAND_D(f, h, a, m, l, s) \
h                  32 sapi/phpdbg/phpdbg_break.c 	PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[10])
h                  30 sapi/phpdbg/phpdbg_info.c #define PHPDBG_INFO_COMMAND_D(f, h, a, m, l, s) \
h                  31 sapi/phpdbg/phpdbg_info.c 	PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[14])
h                  37 sapi/phpdbg/phpdbg_list.c #define PHPDBG_LIST_COMMAND_D(f, h, a, m, l, s) \
h                  38 sapi/phpdbg/phpdbg_list.c 	PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[13])
h                  29 sapi/phpdbg/phpdbg_print.c #define PHPDBG_PRINT_COMMAND_D(f, h, a, m, l, s) \
h                  30 sapi/phpdbg/phpdbg_print.c 	PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[9])
h                  30 sapi/phpdbg/phpdbg_set.c #define PHPDBG_SET_COMMAND_D(f, h, a, m, l, s) \
h                  31 sapi/phpdbg/phpdbg_set.c 	PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[18])
h                 142 sapi/phpdbg/phpdbg_utils.h 		Z_LVAL_P(key) = p->h;
h                 179 sapi/thttpd/thttpd.c 	sapi_header_struct *h;
h                 199 sapi/thttpd/thttpd.c 	h = zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 200 sapi/thttpd/thttpd.c 	while (h) {
h                 202 sapi/thttpd/thttpd.c 		switch (h->header[0]) {
h                 204 sapi/thttpd/thttpd.c 				if (!TG(seen_cl) && strncasecmp(h->header, CL_TOKEN, sizeof(CL_TOKEN)-1) == 0) {
h                 206 sapi/thttpd/thttpd.c 				} else if (!TG(seen_cn) && strncasecmp(h->header, CN_TOKEN, sizeof(CN_TOKEN)-1) == 0) {
h                 211 sapi/thttpd/thttpd.c 		ADD_VEC(h->header, h->header_len);
h                 220 sapi/thttpd/thttpd.c 		h = zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 106 sapi/tux/php_tux.c 	sapi_header_struct *h;
h                 131 sapi/tux/php_tux.c 	h = zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 132 sapi/tux/php_tux.c 	while (h) {
h                 134 sapi/tux/php_tux.c 				&& strncasecmp(h->header, "Content-length:", sizeof("Content-length:")-1) == 0) {
h                 139 sapi/tux/php_tux.c 		vec[n].iov_base = h->header;
h                 140 sapi/tux/php_tux.c 		vec[n++].iov_len = h->header_len;
h                 148 sapi/tux/php_tux.c 		h = zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 371 win32/glob.c   	char *h;
h                 380 win32/glob.c   	for (p = pattern + 1, h = (char *) patbuf;
h                 381 win32/glob.c   		h < (char *)eb && *p && *p != SLASH; *h++ = (char) *p++)
h                 384 win32/glob.c   	*h = EOS;
h                 387 win32/glob.c   	if (h == (char *)eb)
h                 396 win32/glob.c   		if ((h = getenv("HOME")) == NULL) {
h                 401 win32/glob.c   				h = pwd->pw_dir;
h                 414 win32/glob.c   			h = pwd->pw_dir;
h                 421 win32/glob.c   	for (b = patbuf; b < eb && *h; *b++ = *h++)