Searched defs:max_len (Results 1 - 8 of 8) sorted by relevance
| /PHP_TRUNK/ext/mbstring/oniguruma/ |
| H A D | regparse.h | 195 OnigDistance max_len; /* max length (byte) */ member in struct:__anon265
|
| /PHP_TRUNK/ext/interbase/ |
| H A D | ibase_query.c | 1550 unsigned long max_len = 0; local 1586 max_len = isc_vax_integer(&bl_info[i+2], item_len); 1592 if (max_len == 0) { 1595 max_len TSRMLS_CC)) {
|
| /PHP_TRUNK/ext/odbc/ |
| H A D | php_odbc.c | 1457 SQLUSMALLINT max_len; local 1469 rc = SQLGetInfo(result->conn_ptr->hdbc,SQL_MAX_CURSOR_NAME_LEN, (void *)&max_len,sizeof(max_len),&len); 1474 if (max_len > 0) { 1475 cursorname = emalloc(max_len + 1); 1476 rc = SQLGetCursorName(result->stmt,cursorname,(SQLSMALLINT)max_len,&len); 1487 snprintf(cursorname, max_len+1, "php_curs_%d", (int)result->stmt);
|
| /PHP_TRUNK/main/ |
| H A D | spprintf.c | 795 PHPAPI int vspprintf(char **pbuf, size_t max_len, const char *format, va_list ap) /* {{{ */ argument 801 if (max_len && xbuf.len > max_len) { 802 xbuf.len = max_len; 812 PHPAPI int spprintf(char **pbuf, size_t max_len, const char *format, ...) /* {{{ */ argument 818 cc = vspprintf(pbuf, max_len, format, ap);
|
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_alloc.c | 615 PHPAPI int _mysqlnd_sprintf(char ** pbuf, size_t max_len, const char *format, ...) argument 620 len = vspprintf(pbuf, max_len, format, ap); 635 PHPAPI int _mysqlnd_vsprintf(char ** pbuf, size_t max_len, const char * format, va_list ap) argument 637 return vspprintf(pbuf, max_len, format, ap);
|
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_directory.c | 2505 /* {{{ proto void SplFileObject::setMaxLineLen(int max_len) 2509 long max_len; local 2513 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &max_len) == FAILURE) { 2517 if (max_len < 0) { 2522 intern->u.file.max_line_len = max_len; 2904 ZEND_ARG_INFO(0, max_len)
|
| /PHP_TRUNK/main/streams/ |
| H A D | streams.c | 1420 size_t len = 0, max_len; local 1459 max_len = ssbuf.sb.st_size + step; 1461 max_len = step; 1464 ptr = *buf = pemalloc_rel_orig(max_len, persistent); 1466 while((ret = php_stream_read(src, ptr, max_len - len))) { 1468 if (len + min_room >= max_len) { 1469 *buf = perealloc_rel_orig(*buf, max_len + step, persistent); 1470 max_len += step;
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_exceptions.c | 563 int zend_spprintf(char **message, int max_len, char *format, ...) /* {{{ */ argument 569 len = zend_vspprintf(message, max_len, format, arg);
|
Completed in 36 milliseconds