h                1219 Zend/zend_API.c    	zend_long h;
h                1222 Zend/zend_API.c    	ZEND_HASH_FOREACH_KEY_VAL(properties, h, key, prop) {
h                1266 Zend/zend_API.c 			prop = zend_hash_index_update(object->properties, h, prop);
h                1589 Zend/zend_execute_API.c 			zend_ulong h = zend_string_hash_val(name);
h                1597 Zend/zend_execute_API.c 					if (ZSTR_H(*str) == h &&
h                1631 Zend/zend_execute_API.c 			zend_ulong h = zend_hash_func(name, len);
h                1638 Zend/zend_execute_API.c 					if (ZSTR_H(*str) == h &&
h                 573 Zend/zend_generators.c 			ZVAL_LONG(&generator->key, p->h);
h                 485 Zend/zend_hash.c 	zend_ulong h;
h                 490 Zend/zend_hash.c 	h = zend_string_hash_val(key);
h                 492 Zend/zend_hash.c 	nIndex = h | ht->nTableMask;
h                 498 Zend/zend_hash.c 		} else if (EXPECTED(p->h == h) &&
h                 509 Zend/zend_hash.c static zend_always_inline Bucket *zend_hash_str_find_bucket(const HashTable *ht, const char *str, size_t len, zend_ulong h)
h                 516 Zend/zend_hash.c 	nIndex = h | ht->nTableMask;
h                 521 Zend/zend_hash.c 		if ((p->h == h)
h                 532 Zend/zend_hash.c static zend_always_inline Bucket *zend_hash_index_find_bucket(const HashTable *ht, zend_ulong h)
h                 539 Zend/zend_hash.c 	nIndex = h | ht->nTableMask;
h                 544 Zend/zend_hash.c 		if (p->h == h && !p->key) {
h                 554 Zend/zend_hash.c 	zend_ulong h;
h                 621 Zend/zend_hash.c 	p->h = h = ZSTR_H(key);
h                 623 Zend/zend_hash.c 	nIndex = h | ht->nTableMask;
h                 696 Zend/zend_hash.c ZEND_API zval* ZEND_FASTCALL zend_hash_index_add_empty_element(HashTable *ht, zend_ulong h)
h                 701 Zend/zend_hash.c 	return zend_hash_index_add(ht, h, &dummy);
h                 720 Zend/zend_hash.c static zend_always_inline zval *_zend_hash_index_add_or_update_i(HashTable *ht, zend_ulong h, zval *pData, uint32_t flag ZEND_FILE_LINE_DC)
h                 730 Zend/zend_hash.c 		CHECK_INIT(ht, h < ht->nTableSize);
h                 731 Zend/zend_hash.c 		if (h < ht->nTableSize) {
h                 732 Zend/zend_hash.c 			p = ht->arData + h;
h                 737 Zend/zend_hash.c 		if (h < ht->nNumUsed) {
h                 738 Zend/zend_hash.c 			p = ht->arData + h;
h                 747 Zend/zend_hash.c 				if ((zend_long)h >= (zend_long)ht->nNextFreeElement) {
h                 748 Zend/zend_hash.c 					ht->nNextFreeElement = h < ZEND_LONG_MAX ? h + 1 : ZEND_LONG_MAX;
h                 754 Zend/zend_hash.c 		} else if (EXPECTED(h < ht->nTableSize)) {
h                 755 Zend/zend_hash.c 			p = ht->arData + h;
h                 756 Zend/zend_hash.c 		} else if ((h >> 1) < ht->nTableSize &&
h                 759 Zend/zend_hash.c 			p = ht->arData + h;
h                 768 Zend/zend_hash.c 			ht->nNumUsed = h + 1;
h                 769 Zend/zend_hash.c 		} else if (h >= ht->nNumUsed) {
h                 770 Zend/zend_hash.c 			if (h > ht->nNumUsed) {
h                 777 Zend/zend_hash.c 			ht->nNumUsed = h + 1;
h                 781 Zend/zend_hash.c 			ht->nInternalPointer = h;
h                 783 Zend/zend_hash.c 		zend_hash_iterators_update(ht, HT_INVALID_IDX, h);
h                 784 Zend/zend_hash.c 		if ((zend_long)h >= (zend_long)ht->nNextFreeElement) {
h                 785 Zend/zend_hash.c 			ht->nNextFreeElement = h < ZEND_LONG_MAX ? h + 1 : ZEND_LONG_MAX;
h                 787 Zend/zend_hash.c 		p->h = h;
h                 798 Zend/zend_hash.c 		p = zend_hash_index_find_bucket(ht, h);
h                 810 Zend/zend_hash.c 			if ((zend_long)h >= (zend_long)ht->nNextFreeElement) {
h                 811 Zend/zend_hash.c 				ht->nNextFreeElement = h < ZEND_LONG_MAX ? h + 1 : ZEND_LONG_MAX;
h                 827 Zend/zend_hash.c 	if ((zend_long)h >= (zend_long)ht->nNextFreeElement) {
h                 828 Zend/zend_hash.c 		ht->nNextFreeElement = h < ZEND_LONG_MAX ? h + 1 : ZEND_LONG_MAX;
h                 831 Zend/zend_hash.c 	p->h = h;
h                 833 Zend/zend_hash.c 	nIndex = h | ht->nTableMask;
h                 842 Zend/zend_hash.c ZEND_API zval* ZEND_FASTCALL _zend_hash_index_add_or_update(HashTable *ht, zend_ulong h, zval *pData, uint32_t flag ZEND_FILE_LINE_DC)
h                 844 Zend/zend_hash.c 	return _zend_hash_index_add_or_update_i(ht, h, pData, flag ZEND_FILE_LINE_RELAY_CC);
h                 847 Zend/zend_hash.c ZEND_API zval* ZEND_FASTCALL _zend_hash_index_add(HashTable *ht, zend_ulong h, zval *pData ZEND_FILE_LINE_DC)
h                 849 Zend/zend_hash.c 	return _zend_hash_index_add_or_update_i(ht, h, pData, HASH_ADD ZEND_FILE_LINE_RELAY_CC);
h                 852 Zend/zend_hash.c ZEND_API zval* ZEND_FASTCALL _zend_hash_index_add_new(HashTable *ht, zend_ulong h, zval *pData ZEND_FILE_LINE_DC)
h                 854 Zend/zend_hash.c 	return _zend_hash_index_add_or_update_i(ht, h, pData, HASH_ADD | HASH_ADD_NEW ZEND_FILE_LINE_RELAY_CC);
h                 857 Zend/zend_hash.c ZEND_API zval* ZEND_FASTCALL _zend_hash_index_update(HashTable *ht, zend_ulong h, zval *pData ZEND_FILE_LINE_DC)
h                 859 Zend/zend_hash.c 	return _zend_hash_index_add_or_update_i(ht, h, pData, HASH_UPDATE ZEND_FILE_LINE_RELAY_CC);
h                 921 Zend/zend_hash.c 			nIndex = p->h | ht->nTableMask;
h                 937 Zend/zend_hash.c 							q->h = p->h;
h                 938 Zend/zend_hash.c 							nIndex = q->h | ht->nTableMask;
h                 956 Zend/zend_hash.c 							q->h = p->h;
h                 957 Zend/zend_hash.c 							nIndex = q->h | ht->nTableMask;
h                 976 Zend/zend_hash.c 			nIndex = p->h | ht->nTableMask;
h                 992 Zend/zend_hash.c 			HT_HASH(ht, p->h | ht->nTableMask) = Z_NEXT(p->val);
h                1038 Zend/zend_hash.c 		uint32_t nIndex = p->h | ht->nTableMask;
h                1062 Zend/zend_hash.c 	zend_ulong h;
h                1071 Zend/zend_hash.c 	h = zend_string_hash_val(key);
h                1072 Zend/zend_hash.c 	nIndex = h | ht->nTableMask;
h                1078 Zend/zend_hash.c 			(p->h == h &&
h                1093 Zend/zend_hash.c 	zend_ulong h;
h                1102 Zend/zend_hash.c 	h = zend_string_hash_val(key);
h                1103 Zend/zend_hash.c 	nIndex = h | ht->nTableMask;
h                1109 Zend/zend_hash.c 			(p->h == h &&
h                1142 Zend/zend_hash.c 	zend_ulong h;
h                1151 Zend/zend_hash.c 	h = zend_inline_hash_func(str, len);
h                1152 Zend/zend_hash.c 	nIndex = h | ht->nTableMask;
h                1157 Zend/zend_hash.c 		if ((p->h == h)
h                1186 Zend/zend_hash.c 	zend_ulong h;
h                1195 Zend/zend_hash.c 	h = zend_inline_hash_func(str, len);
h                1196 Zend/zend_hash.c 	nIndex = h | ht->nTableMask;
h                1201 Zend/zend_hash.c 		if ((p->h == h)
h                1214 Zend/zend_hash.c ZEND_API int ZEND_FASTCALL zend_hash_index_del(HashTable *ht, zend_ulong h)
h                1225 Zend/zend_hash.c 		if (h < ht->nNumUsed) {
h                1226 Zend/zend_hash.c 			p = ht->arData + h;
h                1228 Zend/zend_hash.c 				_zend_hash_del_el_ex(ht, HT_IDX_TO_HASH(h), p, NULL);
h                1234 Zend/zend_hash.c 	nIndex = h | ht->nTableMask;
h                1239 Zend/zend_hash.c 		if ((p->h == h) && (p->key == NULL)) {
h                1590 Zend/zend_hash.c 		hash_key.h = p->h;
h                1668 Zend/zend_hash.c 			new_entry = zend_hash_index_update(target, p->h, data);
h                1720 Zend/zend_hash.c 	q->h = p->h;
h                1731 Zend/zend_hash.c 		nIndex = q->h | target->nTableMask;
h                1899 Zend/zend_hash.c 				t = zend_hash_index_update(target, p->h, &p->val);
h                1919 Zend/zend_hash.c 				t = zend_hash_index_add(target, p->h, &p->val);
h                1940 Zend/zend_hash.c 	hash_key.h = p->h;
h                1989 Zend/zend_hash.c 	zend_ulong h;
h                1994 Zend/zend_hash.c 	h = zend_inline_hash_func(str, len);
h                1995 Zend/zend_hash.c 	p = zend_hash_str_find_bucket(ht, str, len, h);
h                2011 Zend/zend_hash.c 	zend_ulong h;
h                2016 Zend/zend_hash.c 	h = zend_inline_hash_func(str, len);
h                2017 Zend/zend_hash.c 	p = zend_hash_str_find_bucket(ht, str, len, h);
h                2021 Zend/zend_hash.c ZEND_API zval* ZEND_FASTCALL zend_hash_index_find(const HashTable *ht, zend_ulong h)
h                2028 Zend/zend_hash.c 		if (h < ht->nNumUsed) {
h                2029 Zend/zend_hash.c 			p = ht->arData + h;
h                2037 Zend/zend_hash.c 	p = zend_hash_index_find_bucket(ht, h);
h                2042 Zend/zend_hash.c ZEND_API zend_bool ZEND_FASTCALL zend_hash_index_exists(const HashTable *ht, zend_ulong h)
h                2049 Zend/zend_hash.c 		if (h < ht->nNumUsed) {
h                2050 Zend/zend_hash.c 			if (Z_TYPE(ht->arData[h].val) != IS_UNDEF) {
h                2057 Zend/zend_hash.c 	p = zend_hash_index_find_bucket(ht, h);
h                2161 Zend/zend_hash.c 			*num_index = p->h;
h                2181 Zend/zend_hash.c 			ZVAL_LONG(key, p->h);
h                2221 Zend/zend_hash.c 	zend_ulong h;
h                2225 Zend/zend_hash.c 	h = p->h;
h                2229 Zend/zend_hash.c 	p->h = q->h;
h                2233 Zend/zend_hash.c 	q->h = h;
h                2249 Zend/zend_hash.c 	zend_ulong h;
h                2252 Zend/zend_hash.c 	h = p->h;
h                2255 Zend/zend_hash.c 	p->h = q->h;
h                2258 Zend/zend_hash.c 	q->h = h;
h                2297 Zend/zend_hash.c 			p->h = j;
h                2353 Zend/zend_hash.c 				if (p1->h != p2->h) {
h                2354 Zend/zend_hash.c 					return p1->h > p2->h ? 1 : -1;
h                2373 Zend/zend_hash.c 				pData2 = zend_hash_index_find(ht2, p1->h);
h                  48 Zend/zend_hash.h 	zend_ulong h;
h                 100 Zend/zend_hash.h ZEND_API zval* ZEND_FASTCALL _zend_hash_index_add_or_update(HashTable *ht, zend_ulong h, zval *pData, uint32_t flag ZEND_FILE_LINE_DC);
h                 101 Zend/zend_hash.h ZEND_API zval* ZEND_FASTCALL _zend_hash_index_add(HashTable *ht, zend_ulong h, zval *pData ZEND_FILE_LINE_DC);
h                 102 Zend/zend_hash.h ZEND_API zval* ZEND_FASTCALL _zend_hash_index_add_new(HashTable *ht, zend_ulong h, zval *pData ZEND_FILE_LINE_DC);
h                 103 Zend/zend_hash.h ZEND_API zval* ZEND_FASTCALL _zend_hash_index_update(HashTable *ht, zend_ulong h, zval *pData ZEND_FILE_LINE_DC);
h                 107 Zend/zend_hash.h #define zend_hash_index_add(ht, h, pData) \
h                 108 Zend/zend_hash.h 		_zend_hash_index_add(ht, h, pData ZEND_FILE_LINE_CC)
h                 109 Zend/zend_hash.h #define zend_hash_index_add_new(ht, h, pData) \
h                 110 Zend/zend_hash.h 		_zend_hash_index_add_new(ht, h, pData ZEND_FILE_LINE_CC)
h                 111 Zend/zend_hash.h #define zend_hash_index_update(ht, h, pData) \
h                 112 Zend/zend_hash.h 		_zend_hash_index_update(ht, h, pData ZEND_FILE_LINE_CC)
h                 118 Zend/zend_hash.h ZEND_API zval* ZEND_FASTCALL zend_hash_index_add_empty_element(HashTable *ht, zend_ulong h);
h                 150 Zend/zend_hash.h ZEND_API int ZEND_FASTCALL zend_hash_index_del(HashTable *ht, zend_ulong h);
h                 156 Zend/zend_hash.h ZEND_API zval* ZEND_FASTCALL zend_hash_index_find(const HashTable *ht, zend_ulong h);
h                 161 Zend/zend_hash.h ZEND_API zend_bool ZEND_FASTCALL zend_hash_index_exists(const HashTable *ht, zend_ulong h);
h                 599 Zend/zend_hash.h static zend_always_inline void *zend_hash_index_add_ptr(HashTable *ht, zend_ulong h, void *pData)
h                 604 Zend/zend_hash.h 	zv = zend_hash_index_add(ht, h, &tmp);
h                 608 Zend/zend_hash.h static zend_always_inline void *zend_hash_index_add_new_ptr(HashTable *ht, zend_ulong h, void *pData)
h                 613 Zend/zend_hash.h 	zv = zend_hash_index_add_new(ht, h, &tmp);
h                 617 Zend/zend_hash.h static zend_always_inline void *zend_hash_index_update_ptr(HashTable *ht, zend_ulong h, void *pData)
h                 622 Zend/zend_hash.h 	zv = zend_hash_index_update(ht, h, &tmp);
h                 631 Zend/zend_hash.h static zend_always_inline void *zend_hash_index_add_mem(HashTable *ht, zend_ulong h, void *pData, size_t size)
h                 636 Zend/zend_hash.h 	if ((zv = zend_hash_index_add(ht, h, &tmp))) {
h                 658 Zend/zend_hash.h static zend_always_inline void *zend_hash_index_update_mem(HashTable *ht, zend_ulong h, void *pData, size_t size)
h                 664 Zend/zend_hash.h 	return zend_hash_index_update_ptr(ht, h, p);
h                 706 Zend/zend_hash.h static zend_always_inline void *zend_hash_index_find_ptr(const HashTable *ht, zend_ulong h)
h                 710 Zend/zend_hash.h 	zv = zend_hash_index_find(ht, h);
h                 788 Zend/zend_hash.h 	_h = _p->h;
h                 796 Zend/zend_hash.h 	_h = _p->h; \
h                 801 Zend/zend_hash.h 	_h = _p->h; \
h                 811 Zend/zend_hash.h 	_h = _p->h; \
h                 822 Zend/zend_hash.h 	_h = _p->h; \
h                 828 Zend/zend_hash.h 	_h = _p->h; \
h                 838 Zend/zend_hash.h 	_h = _p->h; \
h                 860 Zend/zend_hash.h 	_h = _p->h; \
h                 866 Zend/zend_hash.h 	_h = _p->h; \
h                 893 Zend/zend_hash.h 		__fill_bkt->h = (__fill_idx); \
h                 919 Zend/zend_hash.h 	p->h = ZSTR_H(key);
h                 920 Zend/zend_hash.h 	nIndex = (uint32_t)p->h | ht->nTableMask;
h                 941 Zend/zend_hash.h 	p->h = ZSTR_H(key);
h                 942 Zend/zend_hash.h 	nIndex = (uint32_t)p->h | ht->nTableMask;
h                 963 Zend/zend_hash.h 	p->h = ZSTR_H(key);
h                 964 Zend/zend_hash.h 	nIndex = (uint32_t)p->h | ht->nTableMask;
h                 192 Zend/zend_ini.c 		return ZEND_NORMALIZE_BOOL(f->h - s->h);
h                 149 Zend/zend_portability.h #  define DL_FETCH_SYMBOL(h,s)		dlsym((h), "_" s)
h                  81 Zend/zend_string.c 	zend_ulong h;
h                  90 Zend/zend_string.c 	h = zend_string_hash_val(str);
h                  91 Zend/zend_string.c 	nIndex = h | CG(interned_strings).nTableMask;
h                  95 Zend/zend_string.c 		if ((p->h == h) && (ZSTR_LEN(p->key) == ZSTR_LEN(str))) {
h                 136 Zend/zend_string.c 	p->h = h;
h                 140 Zend/zend_string.c 	nIndex = h | CG(interned_strings).nTableMask;
h                 187 Zend/zend_string.c 		nIndex = p->h | CG(interned_strings).nTableMask;
h                  42 Zend/zend_string.h #define ZSTR_H(zstr)    (zstr)->h
h                1546 Zend/zend_strtod.c htinit(unsigned char *h, unsigned char *s, int inc)
h                1550 Zend/zend_strtod.c 		h[j] = i + inc;
h                 113 Zend/zend_ts_hash.c ZEND_API zval *_zend_ts_hash_index_add_or_update(TsHashTable *ht, zend_ulong h, zval *pData, int flag ZEND_FILE_LINE_DC)
h                 118 Zend/zend_ts_hash.c 	retval = _zend_hash_index_add_or_update(TS_HASH(ht), h, pData, flag ZEND_FILE_LINE_RELAY_CC);
h                 190 Zend/zend_ts_hash.c ZEND_API int zend_ts_hash_index_del(TsHashTable *ht, zend_ulong h)
h                 195 Zend/zend_ts_hash.c 	retval = zend_hash_index_del(TS_HASH(ht), h);
h                 212 Zend/zend_ts_hash.c ZEND_API zval *zend_ts_hash_index_find(TsHashTable *ht, zend_ulong h)
h                 217 Zend/zend_ts_hash.c 	retval = zend_hash_index_find(TS_HASH(ht), h);
h                 234 Zend/zend_ts_hash.c ZEND_API int zend_ts_hash_index_exists(TsHashTable *ht, zend_ulong h)
h                 239 Zend/zend_ts_hash.c 	retval = zend_hash_index_exists(TS_HASH(ht), h);
h                  58 Zend/zend_ts_hash.h ZEND_API zval *_zend_ts_hash_index_add_or_update(TsHashTable *ht, zend_ulong h, zval *pData, int flag ZEND_FILE_LINE_DC);
h                  59 Zend/zend_ts_hash.h #define zend_ts_hash_index_update(ht, h, pData) \
h                  60 Zend/zend_ts_hash.h 		_zend_ts_hash_index_add_or_update(ht, h, pData, HASH_UPDATE ZEND_FILE_LINE_CC)
h                  76 Zend/zend_ts_hash.h ZEND_API int zend_ts_hash_index_del(TsHashTable *ht, zend_ulong h);
h                  84 Zend/zend_ts_hash.h ZEND_API int zend_ts_hash_index_exists(TsHashTable *ht, zend_ulong h);
h                 163 Zend/zend_types.h 	zend_ulong        h;                /* hash value */
h                 170 Zend/zend_types.h 	zend_ulong        h;                /* hash value (or numeric index)   */
h                 691 Zend/zend_types.h #define ZVAL_NEW_RES(z, h, p, t) do {							\
h                 697 Zend/zend_types.h 		_res->handle = (h);										\
h                 705 Zend/zend_types.h #define ZVAL_NEW_PERSISTENT_RES(z, h, p, t) do {				\
h                 711 Zend/zend_types.h 		_res->handle = (h);										\
h                 597 Zend/zend_virtual_cwd.c 	register zend_ulong h;
h                 607 Zend/zend_virtual_cwd.c 	for (h = Z_UL(2166136261); bucket_key < e;) {
h                 608 Zend/zend_virtual_cwd.c 		h *= Z_UL(16777619);
h                 609 Zend/zend_virtual_cwd.c 		h ^= *bucket_key++;
h                 612 Zend/zend_virtual_cwd.c 	return h;
h                 618 Zend/zend_virtual_cwd.c 	register zend_ulong h;
h                 621 Zend/zend_virtual_cwd.c 	for (h = Z_UL(2166136261); path < e;) {
h                 622 Zend/zend_virtual_cwd.c 		h *= Z_UL(16777619);
h                 623 Zend/zend_virtual_cwd.c 		h ^= *path++;
h                 626 Zend/zend_virtual_cwd.c 	return h;
h                6049 Zend/zend_vm_def.h 				ZVAL_LONG(EX_VAR(opline->result.var), p->h);
h                6093 Zend/zend_vm_def.h 					ZVAL_LONG(EX_VAR(opline->result.var), p->h);
h                6227 Zend/zend_vm_def.h 				ZVAL_LONG(EX_VAR(opline->result.var), p->h);
h                6285 Zend/zend_vm_def.h 					ZVAL_LONG(EX_VAR(opline->result.var), p->h);
h                7628 Zend/zend_vm_def.h 	         (EXPECTED(p->h == ZSTR_H(Z_STR_P(varname))) &&
h                15867 Zend/zend_vm_execute.h 				ZVAL_LONG(EX_VAR(opline->result.var), p->h);
h                15911 Zend/zend_vm_execute.h 					ZVAL_LONG(EX_VAR(opline->result.var), p->h);
h                16045 Zend/zend_vm_execute.h 				ZVAL_LONG(EX_VAR(opline->result.var), p->h);
h                16103 Zend/zend_vm_execute.h 					ZVAL_LONG(EX_VAR(opline->result.var), p->h);
h                32961 Zend/zend_vm_execute.h 	         (EXPECTED(p->h == ZSTR_H(Z_STR_P(varname))) &&
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                1141 ext/date/php_date.c 			case 'a': length = slprintf(buffer, 32, "%s", t->h >= 12 ? "pm" : "am"); break;
h                1142 ext/date/php_date.c 			case 'A': length = slprintf(buffer, 32, "%s", t->h >= 12 ? "PM" : "AM"); break;
h                1152 ext/date/php_date.c 			case 'g': length = slprintf(buffer, 32, "%d", (t->h % 12) ? (int) t->h % 12 : 12); break;
h                1153 ext/date/php_date.c 			case 'G': length = slprintf(buffer, 32, "%d", (int) t->h); break;
h                1154 ext/date/php_date.c 			case 'h': length = slprintf(buffer, 32, "%02d", (t->h % 12) ? (int) t->h % 12 : 12); break;
h                1155 ext/date/php_date.c 			case 'H': length = slprintf(buffer, 32, "%02d", (int) t->h); break;
h                1197 ext/date/php_date.c 											(int) t->h, (int) t->i, (int) t->s,
h                1206 ext/date/php_date.c 											(int) t->y, (int) t->h, (int) t->i, (int) t->s,
h                1347 ext/date/php_date.c 		case 'g': case 'h': retval = (int) ((t->h % 12) ? (int) t->h % 12 : 12); break;
h                1348 ext/date/php_date.c 		case 'H': case 'G': retval = (int) t->h; break;
h                1541 ext/date/php_date.c 			now->h = hou;
h                1636 ext/date/php_date.c 	ta.tm_hour  = ts->h;
h                1744 ext/date/php_date.c 		add_assoc_long(return_value, "tm_hour",  ts->h);
h                1754 ext/date/php_date.c 		add_next_index_long(return_value, ts->h);
h                1789 ext/date/php_date.c 	add_assoc_long(return_value, "hours", ts->h);
h                2363 ext/date/php_date.c 	PHP_DATE_INTERVAL_ADD_PROPERTY("h", h);
h                2882 ext/date/php_date.c 	PHP_DATE_PARSE_DATE_SET_TIME_ELEMENT(hour,      h);
h                2925 ext/date/php_date.c 		add_assoc_long(&element, "hour",   parsed_time->relative.h);
h                3038 ext/date/php_date.c 	if (tmp_time->h != -99999) {
h                3039 ext/date/php_date.c 		dateobj->time->h = tmp_time->h;
h                3351 ext/date/php_date.c static void php_date_time_set(zval *object, zend_long h, zend_long i, zend_long s, zval *return_value) /* {{{ */
h                3357 ext/date/php_date.c 	dateobj->time->h = h;
h                3369 ext/date/php_date.c 	zend_long  h, i, s = 0;
h                3371 ext/date/php_date.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Oll|l", &object, date_ce_date, &h, &i, &s) == FAILURE) {
h                3375 ext/date/php_date.c 	php_date_time_set(object, h, i, s, return_value);
h                3387 ext/date/php_date.c 	zend_long  h, i, s = 0;
h                3389 ext/date/php_date.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Oll|l", &object, date_ce_immutable, &h, &i, &s) == FAILURE) {
h                3394 ext/date/php_date.c 	php_date_time_set(&new_object, h, i, s, return_value);
h                4001 ext/date/php_date.c 		GET_VALUE_FROM_STRUCT(h, "h");
h                4066 ext/date/php_date.c 		SET_VALUE_FROM_STRUCT(h, "h");
h                4136 ext/date/php_date.c 	PHP_DATE_INTERVAL_READ_PROPERTY("h", h, timelib_sll, -1)
h                4238 ext/date/php_date.c 				case 'H': length = slprintf(buffer, 32, "%02d", (int) t->h); break;
h                4239 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)
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                  42 ext/fileinfo/libmagic/apprentice.c #include <stdlib.h>
h                2216 ext/fileinfo/libmagic/apprentice.c 	int quad = 0, h;
h                2230 ext/fileinfo/libmagic/apprentice.c 				h = 2;
h                2235 ext/fileinfo/libmagic/apprentice.c 				h = 1;
h                2244 ext/fileinfo/libmagic/apprentice.c 				h = 0;
h                2250 ext/fileinfo/libmagic/apprentice.c 			h = 0;
h                2277 ext/fileinfo/libmagic/apprentice.c 				return h != 0 ? -1 : 0;
h                2287 ext/fileinfo/libmagic/apprentice.c 			if (h-- <= 0)
h                2291 ext/fileinfo/libmagic/apprentice.c 				if (h-- <= 0)
h                2310 ext/fileinfo/libmagic/apprentice.c 				return h != 0 ? -1 : 0;
h                2316 ext/fileinfo/libmagic/apprentice.c 			return h != 2 ? -1 : 0;
h                2324 ext/fileinfo/libmagic/apprentice.c 			return h != 0 ? -1 : 0;
h                3014 ext/fileinfo/libmagic/apprentice.c 		uint32_t h[2 + MAGIC_SETS];
h                3032 ext/fileinfo/libmagic/apprentice.c 	hdr.h[0] = MAGICNO;
h                3033 ext/fileinfo/libmagic/apprentice.c 	hdr.h[1] = VERSIONNO;
h                3034 ext/fileinfo/libmagic/apprentice.c 	memcpy(hdr.h + 2, map->nmagic, nm);
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                 180 ext/fileinfo/libmagic/cdf.c cdf_swap_header(cdf_header_t *h)
h                 184 ext/fileinfo/libmagic/cdf.c 	h->h_magic = CDF_TOLE8(h->h_magic);
h                 185 ext/fileinfo/libmagic/cdf.c 	h->h_uuid[0] = CDF_TOLE8(h->h_uuid[0]);
h                 186 ext/fileinfo/libmagic/cdf.c 	h->h_uuid[1] = CDF_TOLE8(h->h_uuid[1]);
h                 187 ext/fileinfo/libmagic/cdf.c 	h->h_revision = CDF_TOLE2(h->h_revision);
h                 188 ext/fileinfo/libmagic/cdf.c 	h->h_version = CDF_TOLE2(h->h_version);
h                 189 ext/fileinfo/libmagic/cdf.c 	h->h_byte_order = CDF_TOLE2(h->h_byte_order);
h                 190 ext/fileinfo/libmagic/cdf.c 	h->h_sec_size_p2 = CDF_TOLE2(h->h_sec_size_p2);
h                 191 ext/fileinfo/libmagic/cdf.c 	h->h_short_sec_size_p2 = CDF_TOLE2(h->h_short_sec_size_p2);
h                 192 ext/fileinfo/libmagic/cdf.c 	h->h_num_sectors_in_sat = CDF_TOLE4(h->h_num_sectors_in_sat);
h                 193 ext/fileinfo/libmagic/cdf.c 	h->h_secid_first_directory = CDF_TOLE4(h->h_secid_first_directory);
h                 194 ext/fileinfo/libmagic/cdf.c 	h->h_min_size_standard_stream =
h                 195 ext/fileinfo/libmagic/cdf.c 	    CDF_TOLE4(h->h_min_size_standard_stream);
h                 196 ext/fileinfo/libmagic/cdf.c 	h->h_secid_first_sector_in_short_sat =
h                 197 ext/fileinfo/libmagic/cdf.c 	    CDF_TOLE4((uint32_t)h->h_secid_first_sector_in_short_sat);
h                 198 ext/fileinfo/libmagic/cdf.c 	h->h_num_sectors_in_short_sat =
h                 199 ext/fileinfo/libmagic/cdf.c 	    CDF_TOLE4(h->h_num_sectors_in_short_sat);
h                 200 ext/fileinfo/libmagic/cdf.c 	h->h_secid_first_sector_in_master_sat =
h                 201 ext/fileinfo/libmagic/cdf.c 	    CDF_TOLE4((uint32_t)h->h_secid_first_sector_in_master_sat);
h                 202 ext/fileinfo/libmagic/cdf.c 	h->h_num_sectors_in_master_sat =
h                 203 ext/fileinfo/libmagic/cdf.c 	    CDF_TOLE4(h->h_num_sectors_in_master_sat);
h                 204 ext/fileinfo/libmagic/cdf.c 	for (i = 0; i < __arraycount(h->h_master_sat); i++)
h                 205 ext/fileinfo/libmagic/cdf.c 		h->h_master_sat[i] = CDF_TOLE4((uint32_t)h->h_master_sat[i]);
h                 209 ext/fileinfo/libmagic/cdf.c cdf_unpack_header(cdf_header_t *h, char *buf)
h                 214 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_magic);
h                 215 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACKA(h->h_uuid);
h                 216 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_revision);
h                 217 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_version);
h                 218 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_byte_order);
h                 219 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_sec_size_p2);
h                 220 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_short_sec_size_p2);
h                 221 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACKA(h->h_unused0);
h                 222 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_num_sectors_in_sat);
h                 223 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_secid_first_directory);
h                 224 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACKA(h->h_unused1);
h                 225 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_min_size_standard_stream);
h                 226 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_secid_first_sector_in_short_sat);
h                 227 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_num_sectors_in_short_sat);
h                 228 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_secid_first_sector_in_master_sat);
h                 229 ext/fileinfo/libmagic/cdf.c 	CDF_UNPACK(h->h_num_sectors_in_master_sat);
h                 230 ext/fileinfo/libmagic/cdf.c 	for (i = 0; i < __arraycount(h->h_master_sat); i++)
h                 231 ext/fileinfo/libmagic/cdf.c 		CDF_UNPACK(h->h_master_sat[i]);
h                 280 ext/fileinfo/libmagic/cdf.c cdf_check_stream_offset(const cdf_stream_t *sst, const cdf_header_t *h,
h                 285 ext/fileinfo/libmagic/cdf.c 	size_t ss = sst->sst_dirlen < h->h_min_size_standard_stream ?
h                 286 ext/fileinfo/libmagic/cdf.c 	    CDF_SHORT_SEC_SIZE(h) : CDF_SEC_SIZE(h);
h                 326 ext/fileinfo/libmagic/cdf.c cdf_read_header(const cdf_info_t *info, cdf_header_t *h)
h                 333 ext/fileinfo/libmagic/cdf.c 	cdf_unpack_header(h, buf);
h                 334 ext/fileinfo/libmagic/cdf.c 	cdf_swap_header(h);
h                 335 ext/fileinfo/libmagic/cdf.c 	if (h->h_magic != CDF_MAGIC) {
h                 338 ext/fileinfo/libmagic/cdf.c 		    (unsigned long long)h->h_magic,
h                 342 ext/fileinfo/libmagic/cdf.c 	if (h->h_sec_size_p2 > 20) {
h                 343 ext/fileinfo/libmagic/cdf.c 		DPRINTF(("Bad sector size 0x%u\n", h->h_sec_size_p2));
h                 346 ext/fileinfo/libmagic/cdf.c 	if (h->h_short_sec_size_p2 > 20) {
h                 348 ext/fileinfo/libmagic/cdf.c 		    h->h_short_sec_size_p2));
h                 360 ext/fileinfo/libmagic/cdf.c     const cdf_header_t *h, cdf_secid_t id)
h                 362 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SEC_SIZE(h);
h                 363 ext/fileinfo/libmagic/cdf.c 	size_t pos = CDF_SEC_POS(h, id);
h                 370 ext/fileinfo/libmagic/cdf.c     size_t len, const cdf_header_t *h, cdf_secid_t id)
h                 372 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SHORT_SEC_SIZE(h);
h                 373 ext/fileinfo/libmagic/cdf.c 	size_t pos = CDF_SHORT_SEC_POS(h, id);
h                 375 ext/fileinfo/libmagic/cdf.c 	if (pos + len > CDF_SEC_SIZE(h) * sst->sst_len) {
h                 378 ext/fileinfo/libmagic/cdf.c 		    pos + len, CDF_SEC_SIZE(h) * sst->sst_len));
h                 390 ext/fileinfo/libmagic/cdf.c cdf_read_sat(const cdf_info_t *info, cdf_header_t *h, cdf_sat_t *sat)
h                 393 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SEC_SIZE(h);
h                 397 ext/fileinfo/libmagic/cdf.c 	for (i = 0; i < __arraycount(h->h_master_sat); i++)
h                 398 ext/fileinfo/libmagic/cdf.c 		if (h->h_master_sat[i] == CDF_SECID_FREE)
h                 403 ext/fileinfo/libmagic/cdf.c 	    h->h_num_sectors_in_master_sat > CDF_SEC_LIMIT / nsatpersec) ||
h                 406 ext/fileinfo/libmagic/cdf.c 		    SIZE_T_FORMAT "u\n", h->h_num_sectors_in_master_sat, i));
h                 411 ext/fileinfo/libmagic/cdf.c 	sat->sat_len = h->h_num_sectors_in_master_sat * nsatpersec + i;
h                 418 ext/fileinfo/libmagic/cdf.c 	for (i = 0; i < __arraycount(h->h_master_sat); i++) {
h                 419 ext/fileinfo/libmagic/cdf.c 		if (h->h_master_sat[i] < 0)
h                 421 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_sector(info, sat->sat_tab, ss * i, ss, h,
h                 422 ext/fileinfo/libmagic/cdf.c 		    h->h_master_sat[i]) != (ssize_t)ss) {
h                 423 ext/fileinfo/libmagic/cdf.c 			DPRINTF(("Reading sector %d", h->h_master_sat[i]));
h                 431 ext/fileinfo/libmagic/cdf.c 	mid = h->h_secid_first_sector_in_master_sat;
h                 432 ext/fileinfo/libmagic/cdf.c 	for (j = 0; j < h->h_num_sectors_in_master_sat; j++) {
h                 440 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_sector(info, msa, 0, ss, h, mid) != (ssize_t)ss) {
h                 454 ext/fileinfo/libmagic/cdf.c 			if (cdf_read_sector(info, sat->sat_tab, ss * i, ss, h,
h                 512 ext/fileinfo/libmagic/cdf.c cdf_read_long_sector_chain(const cdf_info_t *info, const cdf_header_t *h,
h                 515 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SEC_SIZE(h), i, j;
h                 540 ext/fileinfo/libmagic/cdf.c 		if ((nr = cdf_read_sector(info, scn->sst_tab, i * ss, ss, h,
h                 558 ext/fileinfo/libmagic/cdf.c cdf_read_short_sector_chain(const cdf_header_t *h,
h                 562 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SHORT_SEC_SIZE(h), i, j;
h                 563 ext/fileinfo/libmagic/cdf.c 	scn->sst_len = cdf_count_chain(ssat, sid, CDF_SEC_SIZE(h));
h                 586 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_short_sector(sst, scn->sst_tab, i * ss, ss, h,
h                 600 ext/fileinfo/libmagic/cdf.c cdf_read_sector_chain(const cdf_info_t *info, const cdf_header_t *h,
h                 605 ext/fileinfo/libmagic/cdf.c 	if (len < h->h_min_size_standard_stream && sst->sst_tab != NULL)
h                 606 ext/fileinfo/libmagic/cdf.c 		return cdf_read_short_sector_chain(h, ssat, sst, sid, len,
h                 609 ext/fileinfo/libmagic/cdf.c 		return cdf_read_long_sector_chain(info, h, sat, sid, len, scn);
h                 613 ext/fileinfo/libmagic/cdf.c cdf_read_dir(const cdf_info_t *info, const cdf_header_t *h,
h                 617 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SEC_SIZE(h), ns, nd;
h                 619 ext/fileinfo/libmagic/cdf.c 	cdf_secid_t sid = h->h_secid_first_directory;
h                 644 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_sector(info, buf, 0, ss, h, sid) != (ssize_t)ss) {
h                 667 ext/fileinfo/libmagic/cdf.c cdf_read_ssat(const cdf_info_t *info, const cdf_header_t *h,
h                 671 ext/fileinfo/libmagic/cdf.c 	size_t ss = CDF_SEC_SIZE(h);
h                 672 ext/fileinfo/libmagic/cdf.c 	cdf_secid_t sid = h->h_secid_first_sector_in_short_sat;
h                 674 ext/fileinfo/libmagic/cdf.c 	ssat->sat_len = cdf_count_chain(sat, sid, CDF_SEC_SIZE(h));
h                 695 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_sector(info, ssat->sat_tab, i * ss, ss, h, sid) !=
h                 709 ext/fileinfo/libmagic/cdf.c cdf_read_short_stream(const cdf_info_t *info, const cdf_header_t *h,
h                 731 ext/fileinfo/libmagic/cdf.c 	return	cdf_read_long_sector_chain(info, h, sat,
h                 750 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_user_stream(info, h, sat, ssat, sst, dir,
h                 759 ext/fileinfo/libmagic/cdf.c cdf_read_user_stream(const cdf_info_t *info, const cdf_header_t *h,
h                 770 ext/fileinfo/libmagic/cdf.c 	return cdf_read_sector_chain(info, h, sat, ssat, sst,
h                 793 ext/fileinfo/libmagic/cdf.c cdf_read_property_info(const cdf_stream_t *sst, const cdf_header_t *h,
h                 814 ext/fileinfo/libmagic/cdf.c 	if (cdf_check_stream_offset(sst, h, shp, sizeof(*shp), __LINE__) == -1)
h                 849 ext/fileinfo/libmagic/cdf.c 	if (cdf_check_stream_offset(sst, h, e, 0, __LINE__) == -1)
h                 854 ext/fileinfo/libmagic/cdf.c 		if (cdf_check_stream_offset(sst, h, p, tail * sizeof(uint32_t),
h                 997 ext/fileinfo/libmagic/cdf.c cdf_unpack_summary_info(const cdf_stream_t *sst, const cdf_header_t *h,
h                1007 ext/fileinfo/libmagic/cdf.c 	if (cdf_check_stream_offset(sst, h, si, sizeof(*si), __LINE__) == -1 ||
h                1008 ext/fileinfo/libmagic/cdf.c 	    cdf_check_stream_offset(sst, h, sd, sizeof(*sd), __LINE__) == -1)
h                1019 ext/fileinfo/libmagic/cdf.c 	if (cdf_read_property_info(sst, h, CDF_TOLE4(sd->sd_offset), info,
h                1035 ext/fileinfo/libmagic/cdf.c cdf_unpack_catalog(const cdf_header_t *h, const cdf_stream_t *sst,
h                1038 ext/fileinfo/libmagic/cdf.c 	size_t ss = sst->sst_dirlen < h->h_min_size_standard_stream ?
h                1039 ext/fileinfo/libmagic/cdf.c 	    CDF_SHORT_SEC_SIZE(h) : CDF_SEC_SIZE(h);
h                1186 ext/fileinfo/libmagic/cdf.c cdf_dump_header(const cdf_header_t *h)
h                1190 ext/fileinfo/libmagic/cdf.c #define DUMP(a, b) (void)fprintf(stderr, "%40.40s = " a "\n", # b, h->h_ ## b)
h                1192 ext/fileinfo/libmagic/cdf.c     h->h_ ## b, 1 << h->h_ ## b)
h                1205 ext/fileinfo/libmagic/cdf.c 	for (i = 0; i < __arraycount(h->h_master_sat); i++) {
h                1206 ext/fileinfo/libmagic/cdf.c 		if (h->h_master_sat[i] == CDF_SECID_FREE)
h                1209 ext/fileinfo/libmagic/cdf.c 		    "master_sat", i, h->h_master_sat[i]);
h                1254 ext/fileinfo/libmagic/cdf.c cdf_dump_stream(const cdf_header_t *h, const cdf_stream_t *sst)
h                1256 ext/fileinfo/libmagic/cdf.c 	size_t ss = sst->sst_dirlen < h->h_min_size_standard_stream ?
h                1257 ext/fileinfo/libmagic/cdf.c 	    CDF_SHORT_SEC_SIZE(h) : CDF_SEC_SIZE(h);
h                1262 ext/fileinfo/libmagic/cdf.c cdf_dump_dir(const cdf_info_t *info, const cdf_header_t *h,
h                1305 ext/fileinfo/libmagic/cdf.c 			if (cdf_read_sector_chain(info, h, sat, ssat, sst,
h                1311 ext/fileinfo/libmagic/cdf.c 			cdf_dump_stream(h, &scn);
h                1392 ext/fileinfo/libmagic/cdf.c cdf_dump_summary_info(const cdf_header_t *h, const cdf_stream_t *sst)
h                1399 ext/fileinfo/libmagic/cdf.c 	(void)&h;
h                1400 ext/fileinfo/libmagic/cdf.c 	if (cdf_unpack_summary_info(sst, h, &ssi, &info, &count) == -1)
h                1415 ext/fileinfo/libmagic/cdf.c cdf_dump_catalog(const cdf_header_t *h, const cdf_stream_t *sst)
h                1418 ext/fileinfo/libmagic/cdf.c 	cdf_unpack_catalog(h, sst, &cat);
h                1441 ext/fileinfo/libmagic/cdf.c 	cdf_header_t h;
h                1459 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_header(&info, &h) == -1)
h                1462 ext/fileinfo/libmagic/cdf.c 		cdf_dump_header(&h);
h                1465 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_sat(&info, &h, &sat) == -1)
h                1468 ext/fileinfo/libmagic/cdf.c 		cdf_dump_sat("SAT", &sat, CDF_SEC_SIZE(&h));
h                1471 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_ssat(&info, &h, &sat, &ssat) == -1)
h                1474 ext/fileinfo/libmagic/cdf.c 		cdf_dump_sat("SSAT", &ssat, CDF_SHORT_SEC_SIZE(&h));
h                1477 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_dir(&info, &h, &sat, &dir) == -1)
h                1480 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_short_stream(&info, &h, &sat, &dir, &sst, &root)
h                1484 ext/fileinfo/libmagic/cdf.c 		cdf_dump_stream(&h, &sst);
h                1488 ext/fileinfo/libmagic/cdf.c 		cdf_dump_dir(&info, &h, &sat, &ssat, &sst, &dir);
h                1492 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_summary_info(&info, &h, &sat, &ssat, &sst, &dir,
h                1497 ext/fileinfo/libmagic/cdf.c 			cdf_dump_summary_info(&h, &scn);
h                1499 ext/fileinfo/libmagic/cdf.c 		if (cdf_read_catalog(&info, &h, &sat, &ssat, &sst, &dir,
h                1504 ext/fileinfo/libmagic/cdf.c 			cdf_dump_catalog(&h, &scn);
h                  81 ext/fileinfo/libmagic/cdf.h #define CDF_SEC_SIZE(h) ((size_t)(1 << (h)->h_sec_size_p2))
h                  82 ext/fileinfo/libmagic/cdf.h #define CDF_SEC_POS(h, secid) (CDF_SEC_SIZE(h) + (secid) * CDF_SEC_SIZE(h))
h                  83 ext/fileinfo/libmagic/cdf.h #define CDF_SHORT_SEC_SIZE(h)	((size_t)(1 << (h)->h_short_sec_size_p2))
h                  84 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                  50 ext/fileinfo/libmagic/compress.c #include <signal.h>
h                  56 ext/fileinfo/libmagic/compress.c #include <sys/ioctl.h>
h                  59 ext/fileinfo/libmagic/compress.c #include <sys/wait.h>
h                  62 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                 254 ext/fileinfo/libmagic/readcdf.c cdf_file_catalog(struct magic_set *ms, const cdf_header_t *h,
h                 265 ext/fileinfo/libmagic/readcdf.c 		if (cdf_unpack_catalog(h, sst, &cat) == -1)
h                 285 ext/fileinfo/libmagic/readcdf.c cdf_file_summary_info(struct magic_set *ms, const cdf_header_t *h,
h                 293 ext/fileinfo/libmagic/readcdf.c         if (cdf_unpack_summary_info(sst, h, &si, &info, &count) == -1)
h                 358 ext/fileinfo/libmagic/readcdf.c     const cdf_header_t *h, const cdf_sat_t *sat, const cdf_sat_t *ssat,
h                 363 ext/fileinfo/libmagic/readcdf.c 	if ((i = cdf_read_user_stream(info, h, sat, ssat, sst,
h                 367 ext/fileinfo/libmagic/readcdf.c 	cdf_dump_catalog(&h, &scn);
h                 369 ext/fileinfo/libmagic/readcdf.c 	if ((i = cdf_file_catalog(ms, h, scn)) == -1)
h                 445 ext/fileinfo/libmagic/readcdf.c         cdf_header_t h;
h                 458 ext/fileinfo/libmagic/readcdf.c         if (cdf_read_header(&info, &h) == -1)
h                 461 ext/fileinfo/libmagic/readcdf.c         cdf_dump_header(&h);
h                 464 ext/fileinfo/libmagic/readcdf.c         if ((i = cdf_read_sat(&info, &h, &sat)) == -1) {
h                 469 ext/fileinfo/libmagic/readcdf.c         cdf_dump_sat("SAT", &sat, CDF_SEC_SIZE(&h));
h                 472 ext/fileinfo/libmagic/readcdf.c         if ((i = cdf_read_ssat(&info, &h, &sat, &ssat)) == -1) {
h                 477 ext/fileinfo/libmagic/readcdf.c         cdf_dump_sat("SSAT", &ssat, CDF_SHORT_SEC_SIZE(&h));
h                 480 ext/fileinfo/libmagic/readcdf.c         if ((i = cdf_read_dir(&info, &h, &sat, &dir)) == -1) {
h                 485 ext/fileinfo/libmagic/readcdf.c         if ((i = cdf_read_short_stream(&info, &h, &sat, &dir, &sst,
h                 491 ext/fileinfo/libmagic/readcdf.c         cdf_dump_dir(&info, &h, &sat, &ssat, &sst, &dir);
h                 505 ext/fileinfo/libmagic/readcdf.c 	if ((i = cdf_read_user_stream(&info, &h, &sat, &ssat, &sst, &dir,
h                 529 ext/fileinfo/libmagic/readcdf.c         if ((i = cdf_read_summary_info(&info, &h, &sat, &ssat, &sst, &dir,
h                 535 ext/fileinfo/libmagic/readcdf.c 		i = cdf_file_catalog_info(ms, &info, &h, &sat, &ssat, &sst,
h                 547 ext/fileinfo/libmagic/readcdf.c         cdf_dump_summary_info(&h, &scn);
h                 549 ext/fileinfo/libmagic/readcdf.c         if ((i = cdf_file_summary_info(ms, &h, &scn, root_storage)) < 0)
h                  39 ext/fileinfo/libmagic/softmagic.c #include <string.h>
h                  40 ext/fileinfo/libmagic/softmagic.c #include <ctype.h>
h                  41 ext/fileinfo/libmagic/softmagic.c #include <stdlib.h>
h                  42 ext/fileinfo/libmagic/softmagic.c #include <time.h>
h                  44 ext/fileinfo/libmagic/softmagic.c #include <locale.h>
h                 436 ext/fileinfo/libmagic/softmagic.c 		v = file_signextend(ms, m, (uint64_t)p->h);
h                 865 ext/fileinfo/libmagic/softmagic.c 	DO_CVT(h, (uint16_t));
h                 967 ext/fileinfo/libmagic/softmagic.c 		p->h = (short)((p->hs[0]<<8)|(p->hs[1]));
h                 989 ext/fileinfo/libmagic/softmagic.c 		p->h = (short)((p->hs[1]<<8)|(p->hs[0]));
h                1247 ext/fileinfo/libmagic/softmagic.c 				off = q->h;
h                1390 ext/fileinfo/libmagic/softmagic.c 					offset = p->h & off;
h                1393 ext/fileinfo/libmagic/softmagic.c 					offset = p->h | off;
h                1396 ext/fileinfo/libmagic/softmagic.c 					offset = p->h ^ off;
h                1399 ext/fileinfo/libmagic/softmagic.c 					offset = p->h + off;
h                1402 ext/fileinfo/libmagic/softmagic.c 					offset = p->h - off;
h                1405 ext/fileinfo/libmagic/softmagic.c 					offset = p->h * off;
h                1408 ext/fileinfo/libmagic/softmagic.c 					offset = p->h / off;
h                1411 ext/fileinfo/libmagic/softmagic.c 					offset = p->h % off;
h                1416 ext/fileinfo/libmagic/softmagic.c 				offset = p->h;
h                1860 ext/fileinfo/libmagic/softmagic.c 		v = p->h;
h                 186 ext/gd/gd.c    	ZEND_ARG_INFO(0, h)
h                 195 ext/gd/gd.c    	ZEND_ARG_INFO(0, h)
h                 527 ext/gd/gd.c    	ZEND_ARG_INFO(0, h)
h                 538 ext/gd/gd.c    	ZEND_ARG_INFO(0, h)
h                1372 ext/gd/gd.c    	body_size = font->w * font->h * font->nchars;
h                1375 ext/gd/gd.c    		font->h = FLIPWORD(font->h);
h                1377 ext/gd/gd.c    		body_size = font->w * font->h * font->nchars;
h                1380 ext/gd/gd.c    	if (overflow2(font->nchars, font->h) || overflow2(font->nchars * font->h, font->w )) {
h                1620 ext/gd/gd.c    	zend_long cx, cy, w, h, color;
h                1623 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &cx, &cy, &w, &h, &color) == FAILURE) {
h                1631 ext/gd/gd.c    	gdImageFilledEllipse(im, cx, cy, w, h, color);
h                1642 ext/gd/gd.c    	zend_long cx, cy, w, h, ST, E, col, style;
h                1646 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col, &style) == FAILURE) {
h                1664 ext/gd/gd.c    	gdImageFilledArc(im, cx, cy, w, h, st, e, col, style);
h                3165 ext/gd/gd.c    	zend_long cx, cy, w, h, ST, E, col;
h                3169 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col) == FAILURE) {
h                3187 ext/gd/gd.c    	gdImageArc(im, cx, cy, w, h, st, e, col);
h                3197 ext/gd/gd.c    	zend_long cx, cy, w, h, color;
h                3200 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &cx, &cy, &w, &h, &color) == FAILURE) {
h                3208 ext/gd/gd.c    	gdImageEllipse(im, cx, cy, w, h, color);
h                3455 ext/gd/gd.c    	RETURN_LONG(arg ? font->h : font->w);
h                3487 ext/gd/gd.c    	fline = (c - f->offset) * f->h * f->w;
h                3489 ext/gd/gd.c    		for (px = x; (px < (x + f->h)); px++) {
h                 300 ext/gd/libgd/gd.c #define RETURN_HWB(h, w, b) {HWB->H = h; HWB->W = w; HWB->B = b; return HWB;}
h                 397 ext/gd/libgd/gd.c 	float h = HWB.H, w = HWB.W, b = HWB.B, v, n, f;
h                 401 ext/gd/libgd/gd.c 	if (h == HWB_UNDEFINED) {
h                 404 ext/gd/libgd/gd.c 	i = floor(h);
h                 405 ext/gd/libgd/gd.c 	f = h - i;
h                1553 ext/gd/libgd/gd.c 	fline = (c - f->offset) * f->h * f->w;
h                1554 ext/gd/libgd/gd.c 	for (py = y; (py < (y + f->h)); py++) {
h                1579 ext/gd/libgd/gd.c 	fline = (c - f->offset) * f->h * f->w;
h                1581 ext/gd/libgd/gd.c 		for (px = x; px < (x + f->h); px++) {
h                1666 ext/gd/libgd/gd.c void gdImageArc (gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color)
h                1669 ext/gd/libgd/gd.c 		gdImageEllipse(im, cx, cy, w, h, color);
h                1671 ext/gd/libgd/gd.c 		gdImageFilledArc(im, cx, cy, w, h, s, e, color, gdNoFill);
h                1675 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                1709 ext/gd/libgd/gd.c 		y = ((long) gdSinT[i % 360] * (long) h / (2 * 1024)) + cy;
h                2160 ext/gd/libgd/gd.c void gdImageCopy (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h)
h                2175 ext/gd/libgd/gd.c 			for (y = 0; (y < h); y++) {
h                2183 ext/gd/libgd/gd.c 			for (y = 0; (y < h); y++) {
h                2198 ext/gd/libgd/gd.c 		for (y = srcY; (y < (srcY + h)); y++) {
h                2220 ext/gd/libgd/gd.c 	for (y = srcY; y < (srcY + h); y++) {
h                2259 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                2267 ext/gd/libgd/gd.c 	for (y = srcY; y < (srcY + h); y++) {
h                2299 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                2308 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                  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                  24 ext/intl/intl_common.h #include <php.h>
h                  26 ext/intl/intl_common.h #include <unicode/utypes.h>
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                 369 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) {
h                 375 ext/mysqli/mysqli.c 	zend_hash_add_mem(h, p.name, &p, sizeof(mysqli_prop_handler));
h                 360 ext/opcache/ZendAccelerator.c 		nIndex = p->h | ZCSG(interned_strings).nTableMask;
h                 383 ext/opcache/ZendAccelerator.c 	zend_ulong h;
h                 399 ext/opcache/ZendAccelerator.c 	h = zend_string_hash_val(str);
h                 400 ext/opcache/ZendAccelerator.c 	nIndex = h | ZCSG(interned_strings).nTableMask;
h                 407 ext/opcache/ZendAccelerator.c 		if ((p->h == h) && (ZSTR_LEN(p->key) == ZSTR_LEN(str))) {
h                 423 ext/opcache/ZendAccelerator.c 	zend_ulong h;
h                 439 ext/opcache/ZendAccelerator.c 	h = zend_string_hash_val(str);
h                 440 ext/opcache/ZendAccelerator.c 	nIndex = h | ZCSG(interned_strings).nTableMask;
h                 446 ext/opcache/ZendAccelerator.c 		if ((p->h == h) && (ZSTR_LEN(p->key) == ZSTR_LEN(str))) {
h                 469 ext/opcache/ZendAccelerator.c 	p->h = h;
h                2165 ext/opcache/ZendAccelerator.c 	uint32_t nIndex = p->h | ht->nTableMask;
h                2177 ext/opcache/ZendAccelerator.c 		HT_HASH(ht, p->h | ht->nTableMask) = Z_NEXT(p->val);
h                  43 ext/opcache/shared_alloc_win32.c 	HANDLE h;
h                  58 ext/opcache/shared_alloc_win32.c 	h = RegisterEventSource(NULL, TEXT(ACCEL_EVENT_SOURCE));
h                  61 ext/opcache/shared_alloc_win32.c 	ReportEvent(h,				  // event log handle
h                  70 ext/opcache/shared_alloc_win32.c 	DeregisterEventSource(h);
h                 256 ext/opcache/zend_accelerator_util_funcs.c 		nIndex = p->h | ht->nTableMask;
h                 264 ext/opcache/zend_accelerator_util_funcs.c 		q->h = p->h;
h                 302 ext/opcache/zend_accelerator_util_funcs.c 		nIndex = p->h | ht->nTableMask;
h                 310 ext/opcache/zend_accelerator_util_funcs.c 		q->h = p->h;
h                 360 ext/opcache/zend_accelerator_util_funcs.c 		nIndex = p->h | ht->nTableMask;
h                 368 ext/opcache/zend_accelerator_util_funcs.c 		q->h = p->h;
h                 127 ext/opcache/zend_persist.c 			nIndex = p->h | ht->nTableMask;
h                 209 ext/opcache/zend_persist.c 			nIndex = p->h | ht->nTableMask;
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                 432 ext/pdo_firebird/firebird_statement.c 		if (isc_put_segment(H->isc_status, &h, chunk_size, &Z_STRVAL_P(param)[put_cnt])) {
h                 442 ext/pdo_firebird/firebird_statement.c 	if (isc_close_blob(H->isc_status, &h)) {
h                 926 ext/phar/stream.c 				b->h = zend_string_hash_val(new_str_key);
h                 944 ext/phar/stream.c 				b->h = zend_string_hash_val(new_str_key);
h                 962 ext/phar/stream.c 				b->h = zend_string_hash_val(new_str_key);
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                  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                 251 ext/session/mod_mm.c 	int h;
h                 261 ext/session/mod_mm.c 	for (h = 0; h < data->hash_max + 1; h++) {
h                 262 ext/session/mod_mm.c 		for (sd = data->hash[h]; sd; sd = next) {
h                1947 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)
h                1955 ext/snmp/snmp.c 	zend_hash_str_add_mem(h, (char *)name, name_length, &p, sizeof(php_snmp_prop_handler));
h                2193 ext/soap/php_encoding.c 	    return ht->arData[ht->nNumUsed-1].h - 1;
h                 450 ext/soap/php_sdl.c 	sdlSoapBindingFunctionHeaderPtr h;
h                 476 ext/soap/php_sdl.c 	h = emalloc(sizeof(sdlSoapBindingFunctionHeader));
h                 477 ext/soap/php_sdl.c 	memset(h, 0, sizeof(sdlSoapBindingFunctionHeader));
h                 478 ext/soap/php_sdl.c 	h->name = estrdup((char*)tmp->children->content);
h                 482 ext/soap/php_sdl.c 		h->use = SOAP_ENCODED;
h                 484 ext/soap/php_sdl.c 		h->use = SOAP_LITERAL;
h                 489 ext/soap/php_sdl.c 		h->ns = estrdup((char*)tmp->children->content);
h                 492 ext/soap/php_sdl.c 	if (h->use == SOAP_ENCODED) {
h                 496 ext/soap/php_sdl.c 				h->encodingStyle = SOAP_ENCODING_1_1;
h                 498 ext/soap/php_sdl.c 				h->encodingStyle = SOAP_ENCODING_1_2;
h                 509 ext/soap/php_sdl.c 		h->encode = get_encoder_from_prefix(ctx->sdl, part, tmp->children->content);
h                 513 ext/soap/php_sdl.c 			h->element = get_element(ctx->sdl, part, tmp->children->content);
h                 514 ext/soap/php_sdl.c 			if (h->element) {
h                 515 ext/soap/php_sdl.c 				h->encode = h->element->encode;
h                 516 ext/soap/php_sdl.c 				if (!h->ns && h->element->namens) {
h                 517 ext/soap/php_sdl.c 					h->ns = estrdup(h->element->namens);
h                 519 ext/soap/php_sdl.c 				if (h->element->name) {
h                 520 ext/soap/php_sdl.c 					efree(h->name);
h                 521 ext/soap/php_sdl.c 					h->name = estrdup(h->element->name);
h                 533 ext/soap/php_sdl.c 				if (h->headerfaults == NULL) {
h                 534 ext/soap/php_sdl.c 					h->headerfaults = emalloc(sizeof(HashTable));
h                 535 ext/soap/php_sdl.c 					zend_hash_init(h->headerfaults, 0, NULL, delete_header, 0);
h                 544 ext/soap/php_sdl.c 				if (zend_hash_add_ptr(h->headerfaults, key.s, hf) == NULL) {
h                 554 ext/soap/php_sdl.c 	return h;
h                 632 ext/soap/php_sdl.c 			sdlSoapBindingFunctionHeaderPtr h = wsdl_soap_binding_header(ctx, trav, wsdl_soap_namespace, 0);
h                 640 ext/soap/php_sdl.c 			if (h->ns) {
h                 641 ext/soap/php_sdl.c 				smart_str_appends(&key,h->ns);
h                 644 ext/soap/php_sdl.c 			smart_str_appends(&key,h->name);
h                 646 ext/soap/php_sdl.c 			if (zend_hash_add_ptr(binding->headers, key.s, h) == NULL) {
h                 647 ext/soap/php_sdl.c 				delete_header_int(h);
h                1802 ext/soap/soap.c 			soapHeader *h = header;
h                1806 ext/soap/soap.c 			if (service->sdl && !h->function && !h->hdr) {
h                1807 ext/soap/soap.c 				if (h->mustUnderstand) {
h                1814 ext/soap/soap.c 			fn_name = estrndup(Z_STRVAL(h->function_name),Z_STRLEN(h->function_name));
h                1815 ext/soap/soap.c 			if (zend_hash_str_exists(function_table, php_strtolower(fn_name, Z_STRLEN(h->function_name)), Z_STRLEN(h->function_name)) ||
h                1819 ext/soap/soap.c 					call_status = call_user_function(NULL, soap_obj, &h->function_name, &h->retval, h->num_params, h->parameters);
h                1821 ext/soap/soap.c 					call_status = call_user_function(EG(function_table), NULL, &h->function_name, &h->retval, h->num_params, h->parameters);
h                1824 ext/soap/soap.c 					php_error_docref(NULL, E_WARNING, "Function '%s' call failed", Z_STRVAL(h->function_name));
h                1827 ext/soap/soap.c 				if (Z_TYPE(h->retval) == IS_OBJECT &&
h                1828 ext/soap/soap.c 				    instanceof_function(Z_OBJCE(h->retval), soap_fault_class_entry)) {
h                1831 ext/soap/soap.c 					if ((tmp = zend_hash_str_find(Z_OBJPROP(h->retval), "headerfault", sizeof("headerfault")-1)) != NULL &&
h                1835 ext/soap/soap.c 					soap_server_fault_ex(function, &h->retval, h);
h                1846 ext/soap/soap.c 			} else if (h->mustUnderstand) {
h                1975 ext/soap/soap.c 		soapHeader *h = soap_headers;
h                1979 ext/soap/soap.c 		if (h->parameters) {
h                1980 ext/soap/soap.c 			i = h->num_params;
h                1982 ext/soap/soap.c 				zval_ptr_dtor(&h->parameters[--i]);
h                1984 ext/soap/soap.c 			efree(h->parameters);
h                1986 ext/soap/soap.c 		zval_dtor(&h->function_name);
h                1987 ext/soap/soap.c 		zval_dtor(&h->retval);
h                1988 ext/soap/soap.c 		efree(h);
h                3593 ext/soap/soap.c 		soapHeader *h, *last = NULL;
h                3652 ext/soap/soap.c 				h = emalloc(sizeof(soapHeader));
h                3653 ext/soap/soap.c 				memset(h, 0, sizeof(soapHeader));
h                3654 ext/soap/soap.c 				h->mustUnderstand = mustUnderstand;
h                3655 ext/soap/soap.c 				h->function = find_function(sdl, hdr_func, &h->function_name);
h                3656 ext/soap/soap.c 				if (!h->function && sdl && function && function->binding && function->binding->bindingType == BINDING_SOAP) {
h                3666 ext/soap/soap.c 						smart_str_appendl(&key, Z_STRVAL(h->function_name), Z_STRLEN(h->function_name));
h                3669 ext/soap/soap.c 							h->hdr = hdr;
h                3674 ext/soap/soap.c 				if (h->hdr) {
h                3675 ext/soap/soap.c 					h->num_params = 1;
h                3676 ext/soap/soap.c 					h->parameters = emalloc(sizeof(zval));
h                3677 ext/soap/soap.c 					master_to_zval(&h->parameters[0], h->hdr->encode, hdr_func);
h                3679 ext/soap/soap.c 					if (h->function && h->function->binding && h->function->binding->bindingType == BINDING_SOAP) {
h                3680 ext/soap/soap.c 						sdlSoapBindingFunctionPtr fnb = (sdlSoapBindingFunctionPtr)h->function->bindingAttributes;
h                3685 ext/soap/soap.c 					deserialize_parameters(hdr_func, h->function, &h->num_params, &h->parameters);
h                3687 ext/soap/soap.c 				ZVAL_NULL(&h->retval);
h                3689 ext/soap/soap.c 					*headers = h;
h                3691 ext/soap/soap.c 					last->next = h;
h                3693 ext/soap/soap.c 				last = h;
h                3715 ext/soap/soap.c static void set_soap_header_attributes(xmlNodePtr h, HashTable *ht, int version)
h                3722 ext/soap/soap.c 			xmlSetProp(h, BAD_CAST(SOAP_1_1_ENV_NS_PREFIX":mustUnderstand"), BAD_CAST("1"));
h                3724 ext/soap/soap.c 			xmlSetProp(h, BAD_CAST(SOAP_1_2_ENV_NS_PREFIX":mustUnderstand"), BAD_CAST("true"));
h                3730 ext/soap/soap.c 				xmlSetProp(h, BAD_CAST(SOAP_1_1_ENV_NS_PREFIX":actor"), BAD_CAST(Z_STRVAL_P(tmp)));
h                3732 ext/soap/soap.c 				xmlSetProp(h, BAD_CAST(SOAP_1_2_ENV_NS_PREFIX":role"), BAD_CAST(Z_STRVAL_P(tmp)));
h                3737 ext/soap/soap.c 					xmlSetProp(h, BAD_CAST(SOAP_1_1_ENV_NS_PREFIX":actor"), BAD_CAST(SOAP_1_1_ACTOR_NEXT));
h                3741 ext/soap/soap.c 					xmlSetProp(h, BAD_CAST(SOAP_1_2_ENV_NS_PREFIX":role"), BAD_CAST(SOAP_1_2_ACTOR_NEXT));
h                3743 ext/soap/soap.c 					xmlSetProp(h, BAD_CAST(SOAP_1_2_ENV_NS_PREFIX":role"), BAD_CAST(SOAP_1_2_ACTOR_NONE));
h                3745 ext/soap/soap.c 					xmlSetProp(h, BAD_CAST(SOAP_1_2_ENV_NS_PREFIX":role"), BAD_CAST(SOAP_1_2_ACTOR_UNLIMATERECEIVER));
h                4103 ext/soap/soap.c 			soapHeader *h;
h                4106 ext/soap/soap.c 			h = headers;
h                4107 ext/soap/soap.c 			while (h != NULL) {
h                4108 ext/soap/soap.c 				if (Z_TYPE(h->retval) != IS_NULL) {
h                4111 ext/soap/soap.c 					zval *hdr_ret = &h->retval;
h                4112 ext/soap/soap.c 					char *hdr_ns   = h->hdr?h->hdr->ns:NULL;
h                4113 ext/soap/soap.c 					char *hdr_name = Z_STRVAL(h->function_name);
h                4116 ext/soap/soap.c 					if (Z_TYPE(h->retval) == IS_OBJECT &&
h                4117 ext/soap/soap.c 					    instanceof_function(Z_OBJCE(h->retval), soap_header_class_entry)) {
h                4122 ext/soap/soap.c 						ht = Z_OBJPROP(h->retval);
h                4152 ext/soap/soap.c 					if (h->function) {
h                4155 ext/soap/soap.c 						if (serialize_response_call2(head, h->function, Z_STRVAL(h->function_name), uri, hdr_ret, version, 0, &xmlHdr) == SOAP_ENCODED) {
h                4175 ext/soap/soap.c 				h = h->next;
h                4351 ext/soap/soap.c 				xmlNodePtr h;
h                4375 ext/soap/soap.c 					h = master_to_xml(enc, tmp, hdr_use, head);
h                4376 ext/soap/soap.c 					xmlNodeSetName(h, BAD_CAST(Z_STRVAL_P(name)));
h                4378 ext/soap/soap.c 					h = xmlNewNode(NULL, BAD_CAST(Z_STRVAL_P(name)));
h                4379 ext/soap/soap.c 					xmlAddChild(head, h);
h                4381 ext/soap/soap.c 				nsptr = encode_add_ns(h, Z_STRVAL_P(ns));
h                4382 ext/soap/soap.c 				xmlSetNs(h, nsptr);
h                4383 ext/soap/soap.c 				set_soap_header_attributes(h, ht, version);
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                 152 ext/standard/array.c 			return (zend_long)f->h > (zend_long)s->h ? 1 : -1;
h                 154 ext/standard/array.c 			l1 = (zend_long)f->h;
h                 168 ext/standard/array.c 			l2 = (zend_long)s->h;
h                 195 ext/standard/array.c 		return (zend_long)f->h > (zend_long)s->h ? 1 : -1;
h                 201 ext/standard/array.c 			d1 = (double)(zend_long)f->h;
h                 206 ext/standard/array.c 			d2 = (double)(zend_long)s->h;
h                 232 ext/standard/array.c 		s1 = zend_print_long_to_buf(buf1 + sizeof(buf1) - 1, f->h);
h                 239 ext/standard/array.c 		s2 = zend_print_long_to_buf(buf2 + sizeof(buf2) - 1, s->h);
h                 265 ext/standard/array.c 		s1 = zend_print_long_to_buf(buf1 + sizeof(buf1) - 1, f->h);
h                 272 ext/standard/array.c 		s2 = zend_print_long_to_buf(buf2 + sizeof(buf2) - 1, s->h);
h                 298 ext/standard/array.c 		s1 = zend_print_long_to_buf(buf1 + sizeof(buf1) - 1, f->h);
h                 305 ext/standard/array.c 		s2 = zend_print_long_to_buf(buf2 + sizeof(buf2) - 1, s->h);
h                 348 ext/standard/array.c 		s1 = zend_print_long_to_buf(buf1 + sizeof(buf1) - 1, f->h);
h                 353 ext/standard/array.c 		s2 = zend_print_long_to_buf(buf2 + sizeof(buf2) - 1, s->h);
h                1106 ext/standard/array.c 		ZVAL_LONG(&args[0], f->h);
h                1111 ext/standard/array.c 		ZVAL_LONG(&args[1], s->h);
h                2368 ext/standard/array.c 		p->h = j;
h                2459 ext/standard/array.c 				zend_hash_index_del(in_hash, p->h);
h                2477 ext/standard/array.c 				zend_hash_index_del(in_hash, p->h);
h                2608 ext/standard/array.c 	if (!p->key && Z_ARRVAL_P(stack)->nNextFreeElement > 0 && p->h >= (zend_ulong)(Z_ARRVAL_P(stack)->nNextFreeElement - 1)) {
h                2620 ext/standard/array.c 		zend_hash_index_del(Z_ARRVAL_P(stack), p->h);
h                2677 ext/standard/array.c 		zend_hash_index_del(Z_ARRVAL_P(stack), p->h);
h                2690 ext/standard/array.c 					q->h = k;
h                2705 ext/standard/array.c 					q->h = k;
h                2727 ext/standard/array.c 				if (p->h != k) {
h                2728 ext/standard/array.c 					p->h = k++;
h                3804 ext/standard/array.c 				zend_hash_index_del(Z_ARRVAL_P(return_value), p->h);
h                3909 ext/standard/array.c 				if ((data = zend_hash_index_find(Z_ARRVAL(args[i]), p->h)) == NULL ||
h                3921 ext/standard/array.c 				zend_hash_index_update(Z_ARRVAL_P(return_value), p->h, val);
h                4148 ext/standard/array.c 						zend_hash_index_del(Z_ARRVAL_P(return_value), p->h);
h                4164 ext/standard/array.c 					zend_hash_index_del(Z_ARRVAL_P(return_value), p->h);
h                4332 ext/standard/array.c 				if ((data = zend_hash_index_find(Z_ARRVAL(args[i]), p->h)) != NULL &&
h                4344 ext/standard/array.c 				zend_hash_index_update(Z_ARRVAL_P(return_value), p->h, val);
h                4584 ext/standard/array.c 					zend_hash_index_del(Z_ARRVAL_P(return_value), p->h);
h                4952 ext/standard/array.c 				hash->arData[k].h = n++;
h                4570 ext/standard/basic_functions.c 			add_index_str(retval, hash_key->h, zend_string_copy(Z_STR_P(entry)));
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                 552 ext/standard/html.c 					 *h = &table[num-1],
h                 562 ext/standard/html.c 	while (l <= h) {
h                 563 ext/standard/html.c 		m = l + (h - l) / 2;
h                 565 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)) ^ (zend_ulong) (unsigned char) tolower(str[j]);
h                  93 ext/standard/mail.c 	h = (h % 53);
h                  95 ext/standard/mail.c 	RETURN_LONG((zend_long) h);
h                 719 ext/standard/url.c 	zval *prev_val, *hdr = NULL, *h;
h                 740 ext/standard/url.c 	if ((h = zend_hash_str_find(HASH_OF(&stream->wrapperdata), "headers", sizeof("headers")-1)) != NULL && Z_TYPE_P(h) == IS_ARRAY) {
h                 742 ext/standard/url.c 		if (!Z_ARRVAL_P(h)->nNumOfElements) {
h                 745 ext/standard/url.c 		h = zend_hash_str_find(HASH_OF(&stream->wrapperdata), "headers", sizeof("headers")-1);
h                 746 ext/standard/url.c 		hashT = Z_ARRVAL_P(h);
h                1133 ext/tidy/tidy.c 	php_output_handler *h;
h                1135 ext/tidy/tidy.c 	if (TG(clean_output) && (h = php_tidy_output_handler_init(name, name_len, 0, PHP_OUTPUT_HANDLER_STDFLAGS))) {
h                1136 ext/tidy/tidy.c 		php_output_handler_start(h);
h                  45 ext/zip/lib/zip_source_win32handle.c static int _zip_seek_win32_u(void *h, zip_uint64_t offset, int whence, zip_error_t *error);
h                  46 ext/zip/lib/zip_source_win32handle.c static int _zip_seek_win32(void *h, zip_int64_t offset, int whence, zip_error_t *error);
h                  48 ext/zip/lib/zip_source_win32handle.c static int _zip_stat_win32(void *h, zip_stat_t *st, _zip_source_win32_read_file_t *ctx);
h                  51 ext/zip/lib/zip_source_win32handle.c zip_source_win32handle(zip_t *za, HANDLE h, zip_uint64_t start, zip_int64_t len)
h                  56 ext/zip/lib/zip_source_win32handle.c     return zip_source_win32handle_create(h, start, len, &za->error);
h                  61 ext/zip/lib/zip_source_win32handle.c zip_source_win32handle_create(HANDLE h, zip_uint64_t start, zip_int64_t length, zip_error_t *error)
h                  63 ext/zip/lib/zip_source_win32handle.c     if (h == INVALID_HANDLE_VALUE || length < -1) {
h                  68 ext/zip/lib/zip_source_win32handle.c     return _zip_source_win32_handle_or_name(NULL, h, start, length, 1, NULL, NULL, error);
h                  73 ext/zip/lib/zip_source_win32handle.c _zip_source_win32_handle_or_name(const void *fname, HANDLE h, zip_uint64_t start, zip_int64_t len, int closep, const zip_stat_t *st, _zip_source_win32_file_ops_t *ops, zip_error_t *error)
h                  78 ext/zip/lib/zip_source_win32handle.c     if (h == INVALID_HANDLE_VALUE && fname == NULL) {
h                  98 ext/zip/lib/zip_source_win32handle.c     ctx->h = h;
h                 128 ext/zip/lib/zip_source_win32handle.c     else if (GetFileType(ctx->h) == FILE_TYPE_DISK) {
h                 178 ext/zip/lib/zip_source_win32handle.c 	    CloseHandle(ctx->h);
h                 179 ext/zip/lib/zip_source_win32handle.c 	    ctx->h = INVALID_HANDLE_VALUE;
h                 189 ext/zip/lib/zip_source_win32handle.c 	if (ctx->closep && ctx->h != INVALID_HANDLE_VALUE)
h                 190 ext/zip/lib/zip_source_win32handle.c 	    CloseHandle(ctx->h);
h                 196 ext/zip/lib/zip_source_win32handle.c 	    if ((ctx->h = ctx->ops->op_open(ctx)) == INVALID_HANDLE_VALUE) {
h                 203 ext/zip/lib/zip_source_win32handle.c 	    if (_zip_seek_win32_u(ctx->h, ctx->start, SEEK_SET, &ctx->error) < 0) {
h                 225 ext/zip/lib/zip_source_win32handle.c 	    if (_zip_seek_win32_u(ctx->h, ctx->current, SEEK_SET, &ctx->error) < 0) {
h                 230 ext/zip/lib/zip_source_win32handle.c 	if (!ReadFile(ctx->h, buf, (DWORD)n, &i, NULL)) {
h                 275 ext/zip/lib/zip_source_win32handle.c 		if (_zip_seek_win32(ctx->h, args->offset, SEEK_END, &ctx->error) < 0) {
h                 279 ext/zip/lib/zip_source_win32handle.c 		if (!SetFilePointerEx(ctx->h, zero, &new_offset, FILE_CURRENT)) {
h                 307 ext/zip/lib/zip_source_win32handle.c 	    if (_zip_seek_win32_u(ctx->h, ctx->current, SEEK_SET, &ctx->error) < 0) {
h                 337 ext/zip/lib/zip_source_win32handle.c 	    HANDLE h;
h                 342 ext/zip/lib/zip_source_win32handle.c 	    if (ctx->h != INVALID_HANDLE_VALUE) {
h                 343 ext/zip/lib/zip_source_win32handle.c 		h = ctx->h;
h                 346 ext/zip/lib/zip_source_win32handle.c 		h = ctx->ops->op_open(ctx);
h                 347 ext/zip/lib/zip_source_win32handle.c 		if (h == INVALID_HANDLE_VALUE && GetLastError() == ERROR_FILE_NOT_FOUND) {
h                 353 ext/zip/lib/zip_source_win32handle.c 	    success = _zip_stat_win32(h, st, ctx);
h                 357 ext/zip/lib/zip_source_win32handle.c 	    if (h != ctx->h) {
h                 358 ext/zip/lib/zip_source_win32handle.c 		CloseHandle(h);
h                 432 ext/zip/lib/zip_source_win32handle.c     if (ctx->h != INVALID_HANDLE_VALUE && GetFileType(ctx->h) == FILE_TYPE_DISK) {
h                 435 ext/zip/lib/zip_source_win32handle.c 	success = GetUserObjectSecurity(ctx->h, &si, NULL, len, &len);
h                 441 ext/zip/lib/zip_source_win32handle.c 	    success = GetUserObjectSecurity(ctx->h, &si, psd, len, &len);
h                 474 ext/zip/lib/zip_source_win32handle.c _zip_seek_win32_u(HANDLE h, zip_uint64_t offset, int whence, zip_error_t *error)
h                 480 ext/zip/lib/zip_source_win32handle.c     return _zip_seek_win32(h, (zip_int64_t)offset, whence, error);
h                 485 ext/zip/lib/zip_source_win32handle.c _zip_seek_win32(HANDLE h, zip_int64_t offset, int whence, zip_error_t *error)
h                 506 ext/zip/lib/zip_source_win32handle.c     if (!SetFilePointerEx(h, li, NULL, method)) {
h                 543 ext/zip/lib/zip_source_win32handle.c _zip_stat_win32(HANDLE h, zip_stat_t *st, _zip_source_win32_read_file_t *ctx)
h                 550 ext/zip/lib/zip_source_win32handle.c     if (!GetFileTime(h, NULL, NULL, &mtimeft)) {
h                 560 ext/zip/lib/zip_source_win32handle.c     if (GetFileType(h) == FILE_TYPE_DISK) {
h                 564 ext/zip/lib/zip_source_win32handle.c     if (!GetFileSizeEx(h, &size)) {
h                  52 ext/zip/lib/zipwin32.h     void *h;                /* HANDLE for file to read from */
h                 294 ext/zlib/zlib.c 	php_output_handler *h = NULL;
h                 302 ext/zlib/zlib.c 	if ((h = php_output_handler_create_internal(handler_name, handler_name_len, php_zlib_output_handler, chunk_size, flags))) {
h                 303 ext/zlib/zlib.c 		php_output_handler_set_context(h, php_zlib_output_handler_context_init(), php_zlib_output_handler_context_dtor);
h                 306 ext/zlib/zlib.c 	return h;
h                 314 ext/zlib/zlib.c 	php_output_handler *h;
h                 324 ext/zlib/zlib.c 					(h = php_zlib_output_handler_init(ZEND_STRL(PHP_ZLIB_OUTPUT_HANDLER_NAME), ZLIBG(output_compression), PHP_OUTPUT_HANDLER_STDFLAGS)) &&
h                 325 ext/zlib/zlib.c 					(SUCCESS == php_output_handler_start(h))) {
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                 256 main/fastcgi.c static void fcgi_hash_init(fcgi_hash *h)
h                 258 main/fastcgi.c 	memset(h->hash_table, 0, sizeof(h->hash_table));
h                 259 main/fastcgi.c 	h->list = NULL;
h                 260 main/fastcgi.c 	h->buckets = (fcgi_hash_buckets*)malloc(sizeof(fcgi_hash_buckets));
h                 261 main/fastcgi.c 	h->buckets->idx = 0;
h                 262 main/fastcgi.c 	h->buckets->next = NULL;
h                 263 main/fastcgi.c 	h->data = (fcgi_data_seg*)malloc(sizeof(fcgi_data_seg) - 1 + FCGI_HASH_SEG_SIZE);
h                 264 main/fastcgi.c 	h->data->pos = h->data->data;
h                 265 main/fastcgi.c 	h->data->end = h->data->pos + FCGI_HASH_SEG_SIZE;
h                 266 main/fastcgi.c 	h->data->next = NULL;
h                 269 main/fastcgi.c static void fcgi_hash_destroy(fcgi_hash *h)
h                 274 main/fastcgi.c 	b = h->buckets;
h                 280 main/fastcgi.c 	p = h->data;
h                 288 main/fastcgi.c static void fcgi_hash_clean(fcgi_hash *h)
h                 290 main/fastcgi.c 	memset(h->hash_table, 0, sizeof(h->hash_table));
h                 291 main/fastcgi.c 	h->list = NULL;
h                 293 main/fastcgi.c 	while (h->buckets->next) {
h                 294 main/fastcgi.c 		fcgi_hash_buckets *q = h->buckets;
h                 296 main/fastcgi.c 		h->buckets = h->buckets->next;
h                 299 main/fastcgi.c 	h->buckets->idx = 0;
h                 301 main/fastcgi.c 	while (h->data->next) {
h                 302 main/fastcgi.c 		fcgi_data_seg *q = h->data;
h                 304 main/fastcgi.c 		h->data = h->data->next;
h                 307 main/fastcgi.c 	h->data->pos = h->data->data;
h                 310 main/fastcgi.c static inline char* fcgi_hash_strndup(fcgi_hash *h, char *str, unsigned int str_len)
h                 314 main/fastcgi.c 	if (UNEXPECTED(h->data->pos + str_len + 1 >= h->data->end)) {
h                 320 main/fastcgi.c 		p->next = h->data;
h                 321 main/fastcgi.c 		h->data = p;
h                 323 main/fastcgi.c 	ret = h->data->pos;
h                 326 main/fastcgi.c 	h->data->pos += str_len + 1;
h                 330 main/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                 333 main/fastcgi.c 	fcgi_hash_bucket *p = h->hash_table[idx];
h                 341 main/fastcgi.c 			p->val = fcgi_hash_strndup(h, val, val_len);
h                 347 main/fastcgi.c 	if (UNEXPECTED(h->buckets->idx >= FCGI_HASH_TABLE_SIZE)) {
h                 350 main/fastcgi.c 		b->next = h->buckets;
h                 351 main/fastcgi.c 		h->buckets = b;
h                 353 main/fastcgi.c 	p = h->buckets->data + h->buckets->idx;
h                 354 main/fastcgi.c 	h->buckets->idx++;
h                 355 main/fastcgi.c 	p->next = h->hash_table[idx];
h                 356 main/fastcgi.c 	h->hash_table[idx] = p;
h                 357 main/fastcgi.c 	p->list_next = h->list;
h                 358 main/fastcgi.c 	h->list = p;
h                 361 main/fastcgi.c 	p->var = fcgi_hash_strndup(h, var, var_len);
h                 363 main/fastcgi.c 	p->val = fcgi_hash_strndup(h, val, val_len);
h                 367 main/fastcgi.c static void fcgi_hash_del(fcgi_hash *h, unsigned int hash_value, char *var, unsigned int var_len)
h                 370 main/fastcgi.c 	fcgi_hash_bucket **p = &h->hash_table[idx];
h                 386 main/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                 389 main/fastcgi.c 	fcgi_hash_bucket *p = h->hash_table[idx];
h                 403 main/fastcgi.c static void fcgi_hash_apply(fcgi_hash *h, fcgi_apply_func func, void *arg)
h                 405 main/fastcgi.c 	fcgi_hash_bucket *p	= h->list;
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                 720 main/output.c  PHPAPI void php_output_handler_free(php_output_handler **h)
h                 722 main/output.c  	if (*h) {
h                 723 main/output.c  		php_output_handler_dtor(*h);
h                 724 main/output.c  		efree(*h);
h                 725 main/output.c  		*h = NULL;
h                1088 main/output.c  static int php_output_stack_apply_op(void *h, void *c)
h                1092 main/output.c  	php_output_handler *handler = *(php_output_handler **) h;
h                1136 main/output.c  static int php_output_stack_apply_clean(void *h, void *c)
h                1138 main/output.c  	php_output_handler *handler = *(php_output_handler **) h;
h                1150 main/output.c  static int php_output_stack_apply_list(void *h, void *z)
h                1152 main/output.c  	php_output_handler *handler = *(php_output_handler **) h;
h                1162 main/output.c  static int php_output_stack_apply_status(void *h, void *z)
h                1164 main/output.c  	php_output_handler *handler = *(php_output_handler **) h;
h                  70 main/php_network.h # include <netinet/in.h>
h                  74 main/php_network.h #include <sys/socket.h>
h                 380 main/rfc1867.c static void php_free_hdr_entry(mime_header_entry *h)
h                 382 main/rfc1867.c 	if (h->key) {
h                 383 main/rfc1867.c 		efree(h->key);
h                 385 main/rfc1867.c 	if (h->value) {
h                 386 main/rfc1867.c 		efree(h->value);
h                 371 sapi/cgi/cgi_main.c 	sapi_header_struct *h;
h                 407 sapi/cgi/cgi_main.c 				h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 408 sapi/cgi/cgi_main.c 				while (h) {
h                 409 sapi/cgi/cgi_main.c 					if (h->header_len > sizeof("Status:")-1 &&
h                 410 sapi/cgi/cgi_main.c 						strncasecmp(h->header, "Status:", sizeof("Status:")-1) == 0
h                 415 sapi/cgi/cgi_main.c 					h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 441 sapi/cgi/cgi_main.c 	h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 442 sapi/cgi/cgi_main.c 	while (h) {
h                 444 sapi/cgi/cgi_main.c 		if (h->header_len) {
h                 445 sapi/cgi/cgi_main.c 			if (h->header_len > sizeof("Status:")-1 &&
h                 446 sapi/cgi/cgi_main.c 				strncasecmp(h->header, "Status:", sizeof("Status:")-1) == 0
h                 450 sapi/cgi/cgi_main.c 					PHPWRITE_H(h->header, h->header_len);
h                 453 sapi/cgi/cgi_main.c 			} else if (response_status == 304 && h->header_len > sizeof("Content-Type:")-1 &&
h                 454 sapi/cgi/cgi_main.c 				strncasecmp(h->header, "Content-Type:", sizeof("Content-Type:")-1) == 0
h                 456 sapi/cgi/cgi_main.c 				h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 459 sapi/cgi/cgi_main.c 				PHPWRITE_H(h->header, h->header_len);
h                 463 sapi/cgi/cgi_main.c 		h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                1642 sapi/cgi/cgi_main.c static void add_response_header(sapi_header_struct *h, zval *return_value) /* {{{ */
h                1648 sapi/cgi/cgi_main.c 	if (h->header_len > 0) {
h                1649 sapi/cgi/cgi_main.c 		p = strchr(h->header, ':');
h                1651 sapi/cgi/cgi_main.c 			len = p - h->header;
h                1656 sapi/cgi/cgi_main.c 			} while (len != 0 && (h->header[len-1] == ' ' || h->header[len-1] == '\t'));
h                1659 sapi/cgi/cgi_main.c 				memcpy(s, h->header, len);
h                1664 sapi/cgi/cgi_main.c 				add_assoc_stringl_ex(return_value, s, len, p, h->header_len - (p - h->header));
h                 402 sapi/cli/php_cli.c static int sapi_cli_header_handler(sapi_header_struct *h, sapi_header_op_enum op, sapi_headers_struct *s) /* {{{ */
h                 383 sapi/cli/php_cli_server.c static void add_response_header(sapi_header_struct *h, zval *return_value) /* {{{ */
h                 389 sapi/cli/php_cli_server.c 	if (h->header_len > 0) {
h                 390 sapi/cli/php_cli_server.c 		p = strchr(h->header, ':');
h                 391 sapi/cli/php_cli_server.c 		len = p - h->header;
h                 393 sapi/cli/php_cli_server.c 			while (len > 0 && (h->header[len-1] == ' ' || h->header[len-1] == '\t')) {
h                 398 sapi/cli/php_cli_server.c 				memcpy(s, h->header, len);
h                 403 sapi/cli/php_cli_server.c 				add_assoc_stringl_ex(return_value, s, (uint)len, p, h->header_len - (p - h->header));
h                 523 sapi/cli/php_cli_server.c 	sapi_header_struct *h;
h                 539 sapi/cli/php_cli_server.c 	h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 540 sapi/cli/php_cli_server.c 	while (h) {
h                 541 sapi/cli/php_cli_server.c 		if (h->header_len) {
h                 542 sapi/cli/php_cli_server.c 			smart_str_appendl(&buffer, h->header, h->header_len);
h                 545 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                 356 sapi/fpm/fpm/fpm_main.c 	sapi_header_struct *h;
h                 392 sapi/fpm/fpm/fpm_main.c 				h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 393 sapi/fpm/fpm/fpm_main.c 				while (h) {
h                 394 sapi/fpm/fpm/fpm_main.c 					if (h->header_len > sizeof("Status:") - 1 &&
h                 395 sapi/fpm/fpm/fpm_main.c 						strncasecmp(h->header, "Status:", sizeof("Status:") - 1) == 0
h                 400 sapi/fpm/fpm/fpm_main.c 					h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 426 sapi/fpm/fpm/fpm_main.c 	h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 427 sapi/fpm/fpm/fpm_main.c 	while (h) {
h                 429 sapi/fpm/fpm/fpm_main.c 		if (h->header_len) {
h                 430 sapi/fpm/fpm/fpm_main.c 			if (h->header_len > sizeof("Status:") - 1 &&
h                 431 sapi/fpm/fpm/fpm_main.c 				strncasecmp(h->header, "Status:", sizeof("Status:") - 1) == 0
h                 435 sapi/fpm/fpm/fpm_main.c 					PHPWRITE_H(h->header, h->header_len);
h                 438 sapi/fpm/fpm/fpm_main.c 			} else if (response_status == 304 && h->header_len > sizeof("Content-Type:") - 1 &&
h                 439 sapi/fpm/fpm/fpm_main.c 				strncasecmp(h->header, "Content-Type:", sizeof("Content-Type:") - 1) == 0
h                 441 sapi/fpm/fpm/fpm_main.c 				h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 444 sapi/fpm/fpm/fpm_main.c 				PHPWRITE_H(h->header, h->header_len);
h                 448 sapi/fpm/fpm/fpm_main.c 		h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                 366 sapi/litespeed/lsapi_main.c     sapi_header_struct  *h;
h                 371 sapi/litespeed/lsapi_main.c         h = zend_llist_get_first_ex(&sapi_headers->headers, &pos);
h                 372 sapi/litespeed/lsapi_main.c         while (h) {
h                 373 sapi/litespeed/lsapi_main.c             if ( h->header_len > 0 ) {
h                 374 sapi/litespeed/lsapi_main.c                 LSAPI_AppendRespHeader(h->header, h->header_len);
h                 376 sapi/litespeed/lsapi_main.c             h = zend_llist_get_next_ex(&sapi_headers->headers, &pos);
h                1200 sapi/litespeed/lsapi_main.c     sapi_header_struct  *h;
h                1215 sapi/litespeed/lsapi_main.c     h = zend_llist_get_first_ex(&SG(sapi_headers).headers, &pos);
h                1216 sapi/litespeed/lsapi_main.c     while (h) {
h                1217 sapi/litespeed/lsapi_main.c         if ( h->header_len > 0 ) {
h                1218 sapi/litespeed/lsapi_main.c             p = strchr( h->header, ':' );
h                1219 sapi/litespeed/lsapi_main.c             len = p - h->header;
h                1221 sapi/litespeed/lsapi_main.c                 memmove( headerBuf, h->header, len );
h                1232 sapi/litespeed/lsapi_main.c         h = zend_llist_get_next_ex(&SG(sapi_headers).headers, &pos);
h                 779 sapi/phpdbg/phpdbg.c static int php_sapi_phpdbg_header_handler(sapi_header_struct *h, sapi_header_op_enum op, sapi_headers_struct *s) /* {{{ */
h                  31 sapi/phpdbg/phpdbg_break.c #define PHPDBG_BREAK_COMMAND_D(f, h, a, m, l, s, flags) \
h                  32 sapi/phpdbg/phpdbg_break.c 	PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[9], flags)
h                  30 sapi/phpdbg/phpdbg_info.c #define PHPDBG_INFO_COMMAND_D(f, h, a, m, l, s, flags) \
h                  31 sapi/phpdbg/phpdbg_info.c 	PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[13], flags)
h                  38 sapi/phpdbg/phpdbg_list.c #define PHPDBG_LIST_COMMAND_D(f, h, a, m, l, s, flags) \
h                  39 sapi/phpdbg/phpdbg_list.c 	PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[12], flags)
h                  29 sapi/phpdbg/phpdbg_print.c #define PHPDBG_PRINT_COMMAND_D(f, h, a, m, l, s, flags) \
h                  30 sapi/phpdbg/phpdbg_print.c 	PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[8], flags)
h                  30 sapi/phpdbg/phpdbg_set.c #define PHPDBG_SET_COMMAND_D(f, h, a, m, l, s, flags) \
h                  31 sapi/phpdbg/phpdbg_set.c 	PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[17], flags)
h                 456 sapi/phpdbg/phpdbg_watch.c 	zend_long h;
h                 460 sapi/phpdbg/phpdbg_watch.c 	ZEND_HASH_FOREACH_KEY_VAL(HT_WATCH_HT(watch), h, key, zv) {
h                 471 sapi/phpdbg/phpdbg_watch.c 			new_watch->name_in_parent = strpprintf(0, ZEND_LONG_FMT, h);
h                 365 win32/glob.c   	char *h;
h                 374 win32/glob.c   	for (p = pattern + 1, h = (char *) patbuf;
h                 375 win32/glob.c   		h < (char *)eb && *p && *p != SLASH; *h++ = (char) *p++)
h                 378 win32/glob.c   	*h = EOS;
h                 381 win32/glob.c   	if (h == (char *)eb)
h                 390 win32/glob.c   		if ((h = getenv("HOME")) == NULL) {
h                 395 win32/glob.c   				h = pwd->pw_dir;
h                 408 win32/glob.c   			h = pwd->pw_dir;
h                 415 win32/glob.c   	for (b = patbuf; b < eb && *h; *b++ = *h++)