Home
last modified time | relevance | path

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

1...<<11121314

/PHP-5.5/ext/pdo/
H A Dpdo_dbh.c185 static char *dsn_from_uri(char *uri, char *buf, size_t buflen TSRMLS_DC) /* {{{ */ in dsn_from_uri() argument
192 dsn = php_stream_get_line(stream, buf, buflen, NULL); in dsn_from_uri()
/PHP-5.5/ext/xmlwriter/
H A Dphp_xmlwriter.c654 struct stat buf; in _xmlwriter_get_valid_file_path() local
655 if (php_sys_stat(file_dirname, &buf) != 0) { in _xmlwriter_get_valid_file_path()
/PHP-5.5/ext/gd/libgd/
H A Dwebpimg.c728 (const void*)(pkt->data.frame.buf), in VPXEncode()
/PHP-5.5/sapi/milter/
H A Dphp_milter.c876 static int sapi_milter_post_read(char *buf, uint count_bytes TSRMLS_DC) in sapi_milter_post_read() argument
/PHP-5.5/Zend/
H A Dzend.h516 …int (*unserialize)(zval **object, zend_class_entry *ce, const unsigned char *buf, zend_uint buf_le…
H A Dzend_ini_scanner.c230 char *buf; in zend_ini_open_file_for_scanning() local
233 if (zend_stream_fixup(fh, &buf, &size TSRMLS_CC) == FAILURE) { in zend_ini_open_file_for_scanning()
242 yy_scan_buffer(buf, size TSRMLS_CC); in zend_ini_open_file_for_scanning()
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregexec.c1296 UChar *q, *bp, buf[50]; in match_at() local
1299 bp = buf; in match_at()
1307 fputs((char* )buf, stderr); in match_at()
1308 for (i = 0; i < 20 - (bp - buf); i++) fputc(' ', stderr); in match_at()
H A DHISTORY103 2007/03/02: [bug] invalid optimization for semi-end-buf in onig_search().
1856 2003/01/10: [bug] local variable name was wrong. buf -> tbuf (regerror())
1964 2002/03/08: [spec] allow use of "\A"(begin-buf) in look-behind.
/PHP-5.5/ext/gd/
H A Dgd.c2631 char buf[4096]; in _php_image_output() local
2686 while ((b = fread(buf, 1, sizeof(buf), tmp)) > 0) { in _php_image_output()
2687 php_write(buf, b TSRMLS_CC); in _php_image_output()
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c21834 bufpt = buf;
21972 buf[0] = c;
24150 u8 buf[10];
24165 buf[0] &= 0x7f;
24168 p[i] = buf[j];
26780 struct stat buf;
26797 struct stat buf;
29112 struct stat buf;
29166 err = osFallocate(pFile->h, buf.st_size, nSize-buf.st_size);
30892 struct stat buf;
[all …]
/PHP-5.5/ext/date/lib/
H A Dparse_date.c321 uchar *buf = (uchar*) malloc(((s->lim - s->bot) + BSIZE)*sizeof(uchar));
322 memcpy(buf, s->tok, s->lim - s->tok);
323 s->tok = buf;
324 s->ptr = &buf[s->ptr - s->bot];
325 cursor = &buf[cursor - s->bot];
326 s->pos = &buf[s->pos - s->bot];
327 s->lim = &buf[s->lim - s->bot];
330 s->bot = buf;
/PHP-5.5/ext/reflection/
H A Dphp_reflection.c151 static string *string_write(string *str, char *buf, int len) in string_write() argument
158 memcpy(str->string + str->len - 1, buf, len); in string_write()

Completed in 507 milliseconds

1...<<11121314