| /PHP_TRUNK/ext/intl/formatter/ |
| H A D | formatter_parse.c | 32 /* {{{ proto mixed NumberFormatter::parse( string $str[, int $type, int &$position ]) 34 /* {{{ proto mixed numfmt_parse( NumberFormatter $nf, string $str[, int $type, int &$position ]) 44 int32_t val32, position = 0; local 71 position = (int32_t)Z_LVAL_P( zposition ); 72 position_p = &position; 106 ZVAL_LONG(zposition, position); 117 /* {{{ proto double NumberFormatter::parseCurrency( string $str, string $¤cy[, int $&position] ) 119 /* {{{ proto double numfmt_parse_currency( NumberFormatter $nf, string $str, string $¤cy[, int $&position] ) 133 int32_t position = 0; local 156 position [all...] |
| /PHP_TRUNK/ext/date/lib/ |
| H A D | timelib_structs.h | 176 int position; member in struct:timelib_error_message
|
| /PHP_TRUNK/ext/standard/ |
| H A D | php_fopen_wrapper.c | 74 off_t *position = (off_t*)stream->abstract; local 79 read_bytes = SG(request_info).raw_post_data_length - *position; 86 memcpy(buf, SG(request_info).raw_post_data + *position, read_bytes); 101 *position += read_bytes;
|
| H A D | streamsfuncs.c | 421 off_t position; local 423 position = php_stream_tell(stream); 424 if (position >= 0 && desiredpos > position) { 426 seek_res = php_stream_seek(stream, desiredpos - position, SEEK_CUR); 427 } else if (desiredpos < position) { 428 /* desired position before position or error on tell */ 434 "Failed to seek to position %ld in the stream", desiredpos); 467 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to seek to position [all...] |
| /PHP_TRUNK/main/ |
| H A D | php_streams.h | 214 off_t position; /* of underlying stream */ member in struct:_php_stream
|
| /PHP_TRUNK/main/streams/ |
| H A D | cast.c | 71 static fpos_t stream_cookie_seeker(void *cookie, off_t position, int whence) argument 75 return (fpos_t)php_stream_seek((php_stream *)cookie, position, whence); 105 static int stream_cookie_seeker(void *cookie, __off64_t *position, int whence) argument 109 *position = php_stream_seek((php_stream *)cookie, (off_t)*position, whence); 111 if (*position == -1) { 117 static int stream_cookie_seeker(void *cookie, off_t position, int whence) argument 121 return php_stream_seek((php_stream *)cookie, position, whence); 203 stream->ops->seek(stream, stream->position, SEEK_SET, &dummy TSRMLS_CC); 245 /* If the stream position i [all...] |
| /PHP_TRUNK/ext/phar/ |
| H A D | phar_internal.h | 281 /* position in the manifest */ 484 /* stream position proxy, allows multiple open streams referring to the same fp */ 485 off_t position; member in struct:_phar_entry_data 659 int phar_seek_efp(phar_entry_info *entry, off_t offset, int whence, off_t position, int follow_links TSRMLS_DC);
|
| H A D | phar_object.c | 177 off_t position; local 225 position = 0; 229 got = php_stream_read(fp, buf, MIN(8192, info->uncompressed_filesize - position)); 232 position += got; 233 if (position == (off_t) info->uncompressed_filesize) {
|
| H A D | util.c | 124 int phar_seek_efp(phar_entry_info *entry, off_t offset, int whence, off_t position, int follow_links TSRMLS_DC) /* {{{ */ argument 152 temp = eoffset + position + offset; 662 (*ret)->position = 0; 711 (*ret)->position = 0; 837 ret->position = ret->zero = 0;
|
| /PHP_TRUNK/ext/sqlite3/ |
| H A D | sqlite3.c | 1075 size_t position; member in struct:__anon1 1090 if (sqlite3_stream->position + count >= sqlite3_stream->size) { 1091 count = sqlite3_stream->size - sqlite3_stream->position; 1095 if (sqlite3_blob_read(sqlite3_stream->blob, buf, count, sqlite3_stream->position) != SQLITE_OK) { 1098 sqlite3_stream->position += count; 1130 if (sqlite3_stream->position < (size_t)(-offset)) { 1131 sqlite3_stream->position = 0; 1135 sqlite3_stream->position = sqlite3_stream->position + offset; 1136 *newoffs = sqlite3_stream->position; [all...] |
| /PHP_TRUNK/ext/mbstring/ |
| H A D | php_mbregex.c | 1390 Get search start position */ 1397 /* {{{ proto bool mb_ereg_search_setpos(int position) 1398 Set search start position */ 1401 long position; local 1403 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &position) == FAILURE) { 1407 if (position < 0 || (MBREX(search_str) != NULL && Z_TYPE_P(MBREX(search_str)) == IS_STRING && position >= Z_STRLEN_P(MBREX(search_str)))) { 1413 MBREX(search_pos) = position;
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_stmt.c | 132 int position = 0; local 152 position++; 160 param->paramno = position; 1620 bind an input parameter to the value of a PHP variable. $paramno is the 1-based position of the placeholder in the SQL statement (but can be the parameter name for drivers that support named placeholders). It should be called prior to execute(). */ 1660 bind a parameter to a PHP variable. $paramno is the 1-based position of the placeholder in the SQL statement (but can be the parameter name for drivers that support named placeholders). This isn't supported by all drivers. It should be called prior to execute(). */
|
| /PHP_TRUNK/ext/soap/ |
| H A D | php_encoding.c | 2720 xmlAttrPtr position = get_attribute(trav->properties,"position"); local 2723 if (position != NULL && position->children && position->children->content) { 2724 char* tmp = strrchr((char*)position->children->content, '['); 2726 tmp = (char*)position->children->content; 2749 /* Increment position */
|
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_array.c | 671 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "%sArray was modified outside object and internal position is no longer valid", msg_prefix); 886 spl_array_rewind(intern TSRMLS_CC); /* because deletion might invalidate position */ 955 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Array was modified outside object and internal position is no longer valid"); 1055 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "ArrayIterator::next(): Array was modified outside object and internal position is no longer valid"); 1333 /* {{{ proto void ArrayIterator::seek(int $position) 1334 Seek to position. */ 1337 long opos, position; local 1343 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &position) == FAILURE) { 1352 opos = position; 1354 if (position > [all...] |
| /PHP_TRUNK/ext/reflection/ |
| H A D | php_reflection.c | 2148 int position; local 2250 position= Z_LVAL_PP(parameter); 2251 if (position < 0 || (zend_uint)position >= fptr->common.num_args) { 2267 position= -1; 2271 position= i; 2275 if (position == -1) { 2291 if (arg_info[position].name) { 2292 ZVAL_STRINGL(name, arg_info[position].name, arg_info[position] [all...] |