Home
last modified time | relevance | path

Searched refs:buf (Results 301 – 325 of 337) sorted by relevance

1...<<11121314

/PHP-5.5/ext/fileinfo/libmagic/
H A Dfile.h383 char *buf; /* Accumulation buffer */ member
/PHP-5.5/Zend/tests/
H A Dcompare_001.phpt36 $buf = ob_get_clean();
37 echo str_replace("\n", "", $buf);
H A Dcompare_003.phpt36 $buf = ob_get_clean();
37 echo str_replace("\n", "", $buf);
H A Dcompare_004.phpt36 $buf = ob_get_clean();
37 echo str_replace("\n", "", $buf);
H A Dcompare_005.phpt36 $buf = ob_get_clean();
37 echo str_replace("\n", "", $buf);
H A Dcompare_006.phpt36 $buf = ob_get_clean();
37 echo str_replace("\n", "", $buf);
H A Dcompare_001_64bit.phpt36 $buf = ob_get_clean();
37 echo str_replace("\n", "", $buf);
H A Dcompare_003_64bit.phpt36 $buf = ob_get_clean();
37 echo str_replace("\n", "", $buf);
H A Dcompare_004_64bit.phpt36 $buf = ob_get_clean();
37 echo str_replace("\n", "", $buf);
H A Dcompare_005_64bit.phpt36 $buf = ob_get_clean();
37 echo str_replace("\n", "", $buf);
H A Dcompare_006_64bit.phpt36 $buf = ob_get_clean();
37 echo str_replace("\n", "", $buf);
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativeX86_common.c450 struct sljit_memory_fragment *buf; in sljit_generate_code() local
468 buf = compiler->buf; in sljit_generate_code()
475 buf_ptr = buf->memory; in sljit_generate_code()
476 buf_end = buf_ptr + buf->used_size; in sljit_generate_code()
519 buf = buf->next; in sljit_generate_code()
520 } while (buf); in sljit_generate_code()
H A DsljitLir.h311 struct sljit_memory_fragment *buf; member
/PHP-5.5/ext/date/lib/
H A Dparse_date.re319 uchar *buf = (uchar*) malloc(((s->lim - s->bot) + BSIZE)*sizeof(uchar));
320 memcpy(buf, s->tok, s->lim - s->tok);
321 s->tok = buf;
322 s->ptr = &buf[s->ptr - s->bot];
323 cursor = &buf[cursor - s->bot];
324 s->pos = &buf[s->pos - s->bot];
325 s->lim = &buf[s->lim - s->bot];
328 s->bot = buf;
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregparse.h166 UChar buf[NODE_STR_BUF_SIZE]; member
/PHP-5.5/ext/standard/
H A Dstreamsfuncs.c1322 char *buf; in PHP_FUNCTION() local
1340 if ((buf = php_stream_get_record(stream, max_length, &buf_size, str, str_len TSRMLS_CC))) { in PHP_FUNCTION()
1341 RETURN_STRINGL(buf, buf_size, 0); in PHP_FUNCTION()
/PHP-5.5/ext/date/
H A Dphp_date.c1631 char *format, *buf; in php_strftime() local
1692 buf = (char *) emalloc(buf_len); in php_strftime()
1693 while ((real_len=strftime(buf, buf_len, format, &ta))==buf_len || real_len==0) { in php_strftime()
1695 buf = (char *) erealloc(buf, buf_len); in php_strftime()
1704 real_len = strlen(buf); in php_strftime()
1714 buf = (char *) erealloc(buf, real_len + 1); in php_strftime()
1715 RETURN_STRINGL(buf, real_len, 0); in php_strftime()
1717 efree(buf); in php_strftime()
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_ps.c982 zend_uchar buf[STMT_ID_LENGTH /* statement id */ + 4 /* number of rows to fetch */]; in mysqlnd_fetch_stmt_row_cursor() local
1008 int4store(buf, stmt->stmt_id); in mysqlnd_fetch_stmt_row_cursor()
1009 int4store(buf + STMT_ID_LENGTH, 1); /* for now fetch only one row */ in mysqlnd_fetch_stmt_row_cursor()
1011 if (FAIL == stmt->conn->m->simple_command(stmt->conn, COM_STMT_FETCH, buf, sizeof(buf), in mysqlnd_fetch_stmt_row_cursor()
H A Dmysqlnd_structs.h153 int (*local_infile_read)(void *ptr, zend_uchar * buf, unsigned int buf_len TSRMLS_DC);
288 …d_net__network_write_ex)(MYSQLND_NET * const net, const zend_uchar * const buf, const size_t count…
/PHP-5.5/Zend/
H A Dzend_language_scanner.c482 char *buf; in open_file_for_scanning() local
492 if (zend_stream_fixup(file_handle, &buf, &size TSRMLS_CC) == FAILURE) { in open_file_for_scanning()
510 SCNG(script_org) = (unsigned char*)buf; in open_file_for_scanning()
521 buf = (char*)SCNG(script_filtered); in open_file_for_scanning()
525 SCNG(yy_start) = (unsigned char *)buf - offset; in open_file_for_scanning()
526 yy_scan_buffer(buf, size TSRMLS_CC); in open_file_for_scanning()
657 char *buf; in zend_prepare_string_for_scanning() local
674 buf = str->value.str.val; in zend_prepare_string_for_scanning()
678 SCNG(script_org) = (unsigned char*)buf; in zend_prepare_string_for_scanning()
689 buf = (char*)SCNG(script_filtered); in zend_prepare_string_for_scanning()
[all …]
H A Dzend_compile.c3234 #define REALLOC_BUF_IF_EXCEED(buf, offset, length, size) \ argument
3235 if (UNEXPECTED(offset - buf + size >= length)) { \
3237 buf = erealloc(buf, length); \
3242 char *offset, *buf; in zend_get_function_declaration() local
3245 offset = buf = (char *)emalloc(length * sizeof(char)); in zend_get_function_declaration()
3260 REALLOC_BUF_IF_EXCEED(buf, offset, length, name_len); in zend_get_function_declaration()
3285 REALLOC_BUF_IF_EXCEED(buf, offset, length, class_name_len); in zend_get_function_declaration()
3293 REALLOC_BUF_IF_EXCEED(buf, offset, length, type_name_len); in zend_get_function_declaration()
3346 REALLOC_BUF_IF_EXCEED(buf, offset, length, Z_STRLEN_P(zv)); in zend_get_function_declaration()
3396 REALLOC_BUF_IF_EXCEED(buf, offset, length, 32); in zend_get_function_declaration()
[all …]
/PHP-5.5/ext/phar/
H A Dphar_internal.h619 int phar_is_tar(char *buf, char *fname);
H A Dphar.c1528 static inline char *phar_strnstr(const char *buf, int buf_len, const char *search, int search_len) … argument
1537 c = buf - 1;
1544 so_far = c - buf;
3324 static size_t phar_zend_stream_reader(void *handle, char *buf, size_t len TSRMLS_DC) /* {{{ */ argument
3326 return php_stream_read(phar_get_pharfp((phar_archive_data*)handle TSRMLS_CC), buf, len);
/PHP-5.5/ext/pdo/
H A Dpdo_stmt.c600 char *buf = NULL; in fetch_value() local
602 len = php_stream_copy_to_mem((php_stream*)value, &buf, PHP_STREAM_COPY_ALL, 0); in fetch_value()
603 if(buf == NULL) { in fetch_value()
606 ZVAL_STRINGL(dest, buf, len, 0); in fetch_value()
/PHP-5.5/ext/sqlite3/
H A Dsqlite3.c1084 static size_t php_sqlite3_stream_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC) argument
1091 static size_t php_sqlite3_stream_read(php_stream *stream, char *buf, size_t count TSRMLS_DC) argument
1100 if (sqlite3_blob_read(sqlite3_stream->blob, buf, count, sqlite3_stream->position) != SQLITE_OK) {

Completed in 159 milliseconds

1...<<11121314