Home
last modified time | relevance | path

Searched refs:pos (Results 151 – 175 of 197) sorted by relevance

12345678

/PHP-5.5/win32/build/
H A Dprojectgen.js191 var pos = headers.search(file);
192 var entry = headers.slice(pos, pos + 64);
/PHP-5.5/main/streams/
H A Dmemory.c476 off_t pos; in php_stream_temp_cast() local
505 pos = php_stream_tell(ts->innerstream); in php_stream_temp_cast()
510 php_stream_seek(ts->innerstream, pos, SEEK_SET); in php_stream_temp_cast()
/PHP-5.5/ext/standard/
H A Dimage.c181 static unsigned long int php_swf_get_bits (unsigned char* buffer, unsigned int pos, unsigned int co… in php_swf_get_bits() argument
186 for (loop = pos; loop < pos + count; loop++) in php_swf_get_bits()
189 ((((buffer[loop / 8]) >> (7 - (loop % 8))) & 0x01) << (count - (loop - pos) - 1)); in php_swf_get_bits()
H A Dfile.c658 HashPosition pos; in PHP_FUNCTION() local
660 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(data), &pos); in PHP_FUNCTION()
661 while (zend_hash_get_current_data_ex(Z_ARRVAL_P(data), (void **) &tmp, &pos) == SUCCESS) { in PHP_FUNCTION()
679 zend_hash_move_forward_ex(Z_ARRVAL_P(data), &pos); in PHP_FUNCTION()
1884 HashPosition pos; in php_fputcsv() local
1887 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(fields), &pos); in php_fputcsv()
1888 while (zend_hash_get_current_data_ex(Z_ARRVAL_P(fields), (void **) &field_tmp, &pos) == SUCCESS) { in php_fputcsv()
1929 zend_hash_move_forward_ex(Z_ARRVAL_P(fields), &pos); in php_fputcsv()
/PHP-5.5/ext/xml/
H A Dxml.c612 int pos = len; in xml_utf8_encode() local
637 while (pos > 0) { in xml_utf8_encode()
654 pos--; in xml_utf8_encode()
666 size_t pos = 0; in xml_utf8_decode() local
686 while (pos < (size_t)len) { in xml_utf8_decode()
688 c = php_next_utf8_char((const unsigned char*)s, (size_t) len, &pos, &status); in xml_utf8_decode()
/PHP-5.5/ext/fileinfo/libmagic/
H A Dcdf.c358 size_t pos = CDF_SEC_POS(h, id); in cdf_read_sector() local
360 return cdf_read(info, (off_t)pos, ((char *)buf) + offs, len); in cdf_read_sector()
368 size_t pos = CDF_SHORT_SEC_POS(h, id); in cdf_read_short_sector() local
370 if (pos + len > CDF_SEC_SIZE(h) * sst->sst_len) { in cdf_read_short_sector()
373 pos + len, CDF_SEC_SIZE(h) * sst->sst_len)); in cdf_read_short_sector()
377 ((const char *)sst->sst_tab) + pos, len); in cdf_read_short_sector()
/PHP-5.5/Zend/
H A Dzend_object_handlers.c69 HashPosition pos; in rebuild_object_properties() local
76 for (zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in rebuild_object_properties()
77 zend_hash_get_current_data_ex(&ce->properties_info, (void**)&prop_info, &pos) == SUCCESS; in rebuild_object_properties()
78 zend_hash_move_forward_ex(&ce->properties_info, &pos)) { in rebuild_object_properties()
88 for (zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in rebuild_object_properties()
89 zend_hash_get_current_data_ex(&ce->properties_info, (void**)&prop_info, &pos) == SUCCESS; in rebuild_object_properties()
90 zend_hash_move_forward_ex(&ce->properties_info, &pos)) { in rebuild_object_properties()
/PHP-5.5/ext/session/
H A Dsession.c1773 HashPosition pos;
1784 zend_hash_internal_pointer_reset_ex(&php_session_iface_entry->function_table, &pos);
1786 …rent_data_ex(&php_session_iface_entry->function_table, (void **) &default_mptr, &pos) == SUCCESS) {
1787 …key_ex(&php_session_iface_entry->function_table, &func_name, &func_name_len, &func_index, 0, &pos);
1805 zend_hash_move_forward_ex(&php_session_iface_entry->function_table, &pos);
1810 zend_hash_internal_pointer_reset_ex(&php_session_id_iface_entry->function_table, &pos);
1811 …t_data_ex(&php_session_id_iface_entry->function_table, (void **) &default_mptr, &pos) == SUCCESS) {
1812 …_ex(&php_session_id_iface_entry->function_table, &func_name, &func_name_len, &func_index, 0, &pos);
1827 zend_hash_move_forward_ex(&php_session_id_iface_entry->function_table, &pos);
/PHP-5.5/ext/intl/locale/
H A Dlocale_methods.c819 HashPosition pos; in append_multiple_key_values() local
823 zend_hash_internal_pointer_reset_ex(arr, &pos); in append_multiple_key_values()
824 while(zend_hash_get_current_data_ex(arr, (void **)&data, &pos) != FAILURE) { in append_multiple_key_values()
833 zend_hash_move_forward_ex(arr, &pos); in append_multiple_key_values()
/PHP-5.5/ext/opcache/
H A Dshared_alloc_win32.c315 shared_segment->pos = 0; in create_segments()
/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c487 HashPosition pos; in PHP_FUNCTION() local
498 zend_hash_internal_pointer_reset_ex(headers, &pos); in PHP_FUNCTION()
499 while (zend_hash_get_current_data_ex(headers, (void **)&value_pointer, &pos) == SUCCESS) { in PHP_FUNCTION()
500 zend_hash_get_current_key_ex(headers, &key, &key_len, NULL, 0, &pos); in PHP_FUNCTION()
502 zend_hash_move_forward_ex(headers, &pos); in PHP_FUNCTION()
652 zend_llist_position pos; in sapi_cli_server_send_headers() local
667 h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos); in sapi_cli_server_send_headers()
673 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); in sapi_cli_server_send_headers()
/PHP-5.5/ext/exif/
H A Dexif.c3484 size_t length=2, pos=0; in exif_scan_thumbnail() local
3497 pos += length; in exif_scan_thumbnail()
3498 if (pos>=ImageInfo->Thumbnail.size) in exif_scan_thumbnail()
3500 c = data[pos++]; in exif_scan_thumbnail()
3501 if (pos>=ImageInfo->Thumbnail.size) in exif_scan_thumbnail()
3507 while ((c = data[pos++]) == 0xFF && n--) { in exif_scan_thumbnail()
3508 if (pos+3>=ImageInfo->Thumbnail.size) in exif_scan_thumbnail()
3515 length = php_jpg_get16(data+pos); in exif_scan_thumbnail()
3516 if (pos+length>=ImageInfo->Thumbnail.size) { in exif_scan_thumbnail()
3520 …ail: process section(x%02X=%s) @ x%04X + x%04X", marker, exif_get_markername(marker), pos, length); in exif_scan_thumbnail()
[all …]
H A Dtest.txt72 $pos = strrpos($found,'.');
76 if ( $pos!==false) {
/PHP-5.5/ext/spl/
H A Dspl_directory.c234 #define IS_SLASH_AT(zs, pos) (IS_SLASH(zs[pos])) argument
824 long pos; in SPL_METHOD() local
826 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &pos) == FAILURE) { in SPL_METHOD()
830 if (intern->u.dir.index > pos) { in SPL_METHOD()
839 while (intern->u.dir.index < pos) { in SPL_METHOD()
2760 long pos, whence = SEEK_SET; in SPL_METHOD() local
2762 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|l", &pos, &whence) == FAILURE) { in SPL_METHOD()
2767 RETURN_LONG(php_stream_seek(intern->u.file.stream, pos, whence)); in SPL_METHOD()
2971 ZEND_ARG_INFO(0, pos)
H A Dspl_dllist.c165 int pos = 0; in spl_ptr_llist_offset() local
173 while (current && pos < offset) { in spl_ptr_llist_offset()
174 pos++; in spl_ptr_llist_offset()
/PHP-5.5/ext/mysqli/
H A Dmysqli.c461 HashPosition pos; in mysqli_object_get_debug_info() local
467 zend_hash_internal_pointer_reset_ex(props, &pos); in mysqli_object_get_debug_info()
468 while (zend_hash_get_current_data_ex(props, (void **)&entry, &pos) == SUCCESS) { in mysqli_object_get_debug_info()
478 zend_hash_move_forward_ex(props, &pos); in mysqli_object_get_debug_info()
/PHP-5.5/main/
H A Doutput.c554 HashPosition pos; in php_output_handler_start() local
567 for (zend_hash_internal_pointer_reset_ex(rconflicts, &pos); in php_output_handler_start()
568 zend_hash_get_current_data_ex(rconflicts, (void *) &conflict, &pos) == SUCCESS; in php_output_handler_start()
569 zend_hash_move_forward_ex(rconflicts, &pos) in php_output_handler_start()
/PHP-5.5/ext/standard/tests/array/
H A Dcurrent_variation1.phpt8 * Alias to functions: pos
/PHP-5.5/ext/date/lib/
H A Dparse_iso_intervals.re89 uchar *lim, *str, *ptr, *cur, *tok, *pos;
384 s->pos = cursor; s->line++;
/PHP-5.5/ext/phar/
H A Dzip.c1159 char *pos; in phar_zip_flush() local
1259 if ((pos = php_stristr(tmp, halt_stub, len, sizeof(halt_stub) - 1)) == NULL) { in phar_zip_flush()
1269 pos = user_stub + (pos - tmp); in phar_zip_flush()
1272 len = pos - user_stub + 18; in phar_zip_flush()
H A Dutil.c1399 int pos = -1; in phar_hex_str() local
1405 (*signature)[++pos] = hexChars[((const unsigned char *)digest)[len] >> 4]; in phar_hex_str()
1406 (*signature)[++pos] = hexChars[((const unsigned char *)digest)[len] & 0x0F]; in phar_hex_str()
1408 (*signature)[++pos] = '\0'; in phar_hex_str()
1409 return pos; in phar_hex_str()
/PHP-5.5/ext/pdo/
H A Dpdo_dbh.c1211 HashPosition pos; in PHP_METHOD() local
1220 zend_hash_internal_pointer_reset_ex(&pdo_driver_hash, &pos); in PHP_METHOD()
1221 while (SUCCESS == zend_hash_get_current_data_ex(&pdo_driver_hash, (void**)&pdriver, &pos)) { in PHP_METHOD()
1223 zend_hash_move_forward_ex(&pdo_driver_hash, &pos); in PHP_METHOD()
/PHP-5.5/ext/dom/
H A Dphp_dom.c475 HashPosition pos; in dom_get_debug_info_helper() local
499 for (zend_hash_internal_pointer_reset_ex(prop_handlers, &pos); in dom_get_debug_info_helper()
500 zend_hash_get_current_data_ex(prop_handlers, (void **)&entry, &pos) in dom_get_debug_info_helper()
502 zend_hash_move_forward_ex(prop_handlers, &pos)) { in dom_get_debug_info_helper()
513 &string_length, &num_key, 0, &pos) != HASH_KEY_IS_STRING) { in dom_get_debug_info_helper()
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.c442 n = src->pos; in mbfl_convert_filter_devcat()
/PHP-5.5/ext/snmp/
H A Dsnmp.c2116 HashPosition pos; in php_snmp_get_properties() local
2122 zend_hash_internal_pointer_reset_ex(&php_snmp_properties, &pos); in php_snmp_get_properties()
2124 while (zend_hash_get_current_data_ex(&php_snmp_properties, (void**)&hnd, &pos) == SUCCESS) { in php_snmp_get_properties()
2125 zend_hash_get_current_key_ex(&php_snmp_properties, &key, &key_len, &num_key, 0, &pos); in php_snmp_get_properties()
2131 zend_hash_move_forward_ex(&php_snmp_properties, &pos); in php_snmp_get_properties()

Completed in 150 milliseconds

12345678