Searched refs:hpos (Results 1 – 6 of 6) sorted by relevance
/PHP-5.6/ext/dba/libcdb/ |
H A D | cdb.c | 142 uint32_unpack(buf, &c->hpos); in cdb_findnext() 147 c->kpos = c->hpos + u; in cdb_findnext() 158 if (c->kpos == c->hpos + (c->hslots << 3)) in cdb_findnext() 159 c->kpos = c->hpos; in cdb_findnext()
|
H A D | cdb.h | 35 uint32 hpos; /* initialized if loop is nonzero */ member
|
/PHP-5.6/ext/openssl/ |
H A D | openssl.c | 2344 HashPosition hpos; in STACK_OF() local 2372 zend_hash_move_forward_ex(HASH_OF(*zcerts), &hpos); in STACK_OF() 2688 HashPosition hpos; in php_openssl_make_REQ() local 2693 zend_hash_internal_pointer_reset_ex(HASH_OF(dn), &hpos); in php_openssl_make_REQ() 2722 zend_hash_move_forward_ex(HASH_OF(dn), &hpos); in php_openssl_make_REQ() 2796 zend_hash_move_forward_ex(HASH_OF(attribs), &hpos); in php_openssl_make_REQ() 4211 HashPosition hpos; in PHP_FUNCTION() local 4266 zend_hash_move_forward_ex(HASH_OF(*zrecipcerts), &hpos); in PHP_FUNCTION() 4317 zend_hash_move_forward_ex(HASH_OF(zheaders), &hpos); in PHP_FUNCTION() 4354 HashPosition hpos; in PHP_FUNCTION() local [all …]
|
/PHP-5.6/ext/xml/ |
H A D | xml.c | 973 HashPosition hpos=NULL; in _xml_characterDataHandler() local 975 zend_hash_internal_pointer_end_ex(Z_ARRVAL_P(parser->data), &hpos); in _xml_characterDataHandler() 977 …if (hpos && (zend_hash_get_current_data_ex(Z_ARRVAL_P(parser->data), (void **) &curtag, &hpos) == … in _xml_characterDataHandler()
|
/PHP-5.6/ext/standard/ |
H A D | array.c | 2020 HashPosition hpos; in PHP_FUNCTION() local 2061 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &hpos); in PHP_FUNCTION() 2062 …while (pos < offset && zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &hpos) ==… in PHP_FUNCTION() 2064 zend_hash_move_forward_ex(Z_ARRVAL_P(input), &hpos); in PHP_FUNCTION() 2068 … + length && zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &hpos) == SUCCESS) { in PHP_FUNCTION() 2072 …end_hash_get_current_key_ex(Z_ARRVAL_P(input), &string_key, &string_key_len, &num_key, 0, &hpos)) { in PHP_FUNCTION() 2086 zend_hash_move_forward_ex(Z_ARRVAL_P(input), &hpos); in PHP_FUNCTION()
|
H A D | string.c | 2926 HashPosition hpos; local 2935 for (i = 0, zend_hash_internal_pointer_reset_ex(pats, &hpos); 2936 zend_hash_get_current_data_ex(pats, (void **)&entry, &hpos) == SUCCESS; 2937 zend_hash_move_forward_ex(pats, &hpos)) { 2943 switch (zend_hash_get_current_key_ex(pats, &string_key, &string_key_len, &num_key, 0, &hpos)) {
|
Completed in 50 milliseconds