| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | engine.c | 1000 static unsigned char pbuf[10]; local 1003 sprintf(pbuf, "%c", ch); 1005 sprintf(pbuf, "\\%o", ch); 1006 return(pbuf);
|
| /PHP_TRUNK/ext/intl/resourcebundle/ |
| H A D | resourcebundle_class.c | 118 char *pbuf; local 120 spprintf(&pbuf, 0, "resourcebundle_ctor: Cannot load libICU resource " 125 intl_errors_set_custom_msg(INTL_DATA_ERROR_P(rb), pbuf, 1 TSRMLS_CC); local 126 efree(pbuf); 168 char *pbuf; local 191 spprintf( &pbuf, 0, "Cannot load resource element %d", meindex ); 193 spprintf( &pbuf, 0, "Cannot load resource element '%s'", mekey ); 195 intl_errors_set_custom_msg( INTL_DATA_ERROR_P(rb), pbuf, 1 TSRMLS_CC ); local 196 efree(pbuf); 204 spprintf( &pbuf, 208 intl_errors_set_custom_msg( INTL_DATA_ERROR_P(rb), pbuf, 1 TSRMLS_CC ); local [all...] |
| /PHP_TRUNK/ext/mbstring/oniguruma/ |
| H A D | regparse.c | 132 #define SET_ALL_MULTI_BYTE_RANGE(enc, pbuf) \ 133 add_code_range_to_buf(pbuf, MBCODE_START_POS(enc), ~((OnigCodePoint )0)) 1671 new_code_range(BBuf** pbuf) argument 1678 bbuf = *pbuf = (BBuf* )xmalloc(sizeof(BBuf)); 1679 CHECK_NULL_RETURN_MEMERR(*pbuf); 1680 r = BBUF_INIT(*pbuf, INIT_MULTI_BYTE_RANGE_SIZE); 1689 add_code_range_to_buf(BBuf** pbuf, OnigCodePoint from, OnigCodePoint to) argument 1700 if (IS_NULL(*pbuf)) { 1701 r = new_code_range(pbuf); 1703 bbuf = *pbuf; 1764 add_code_range(BBuf** pbuf, ScanEnv* env, OnigCodePoint from, OnigCodePoint to) argument 1777 not_code_range_buf(OnigEncoding enc, BBuf* bbuf, BBuf** pbuf) argument 1819 or_code_range_buf(OnigEncoding enc, BBuf* bbuf1, int not1, BBuf* bbuf2, int not2, BBuf** pbuf) argument 1876 and_code_range1(BBuf** pbuf, OnigCodePoint from1, OnigCodePoint to1, OnigCodePoint* data, int n) argument 1916 and_code_range_buf(BBuf* bbuf1, int not1, BBuf* bbuf2, int not2, BBuf** pbuf) argument 1976 BBuf *buf1, *buf2, *pbuf; local 2034 BBuf *buf1, *buf2, *pbuf; local [all...] |
| /PHP_TRUNK/main/ |
| H A D | spprintf.h | 23 The pbuf parameter of all spprintf version receives a pointer to the allocated 25 The buffer will allways be terminated by a zero character. When pbuf is NULL 27 that purpose snprintf is faster. When both pbuf and the return value are 0 40 PHPAPI int spprintf( char **pbuf, size_t max_len, const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 3, 4); 42 PHPAPI int vspprintf(char **pbuf, size_t max_len, const char *format, va_list ap) PHP_ATTRIBUTE_FORMAT(printf, 3, 0);
|
| H A D | spprintf.c | 795 PHPAPI int vspprintf(char **pbuf, size_t max_len, const char *format, va_list ap) /* {{{ */ argument 806 *pbuf = xbuf.c; 812 PHPAPI int spprintf(char **pbuf, size_t max_len, const char *format, ...) /* {{{ */ argument 818 cc = vspprintf(pbuf, max_len, format, ap);
|
| /PHP_TRUNK/Zend/ |
| H A D | zend.c | 60 int (*zend_vspprintf)(char **pbuf, size_t max_len, const char *format, va_list ap);
|
| H A D | zend.h | 554 int (*vspprintf_function)(char **pbuf, size_t max_len, const char *format, va_list ap); 698 extern int (*zend_vspprintf)(char **pbuf, size_t max_len, const char *format, va_list ap);
|
| /PHP_TRUNK/ext/mbstring/ |
| H A D | php_mbregex.c | 809 smart_str *pbuf; local 876 pbuf = &eval_buf; 879 pbuf = &out_buf; 926 smart_str_appendl(pbuf, string + regs->beg[n], regs->end[n] - regs->beg[n]); 931 smart_str_appendl(pbuf, p, fwd);
|
| /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);
|
| H A D | mysqlnd_alloc.h | 48 int (*m_sprintf)(char **pbuf, size_t max_len, const char *format, ...); 49 int (*m_vsprintf)(char **pbuf, size_t max_len, const char *format, va_list ap); 69 PHPAPI int _mysqlnd_sprintf(char **pbuf, size_t max_len, const char *format, ...); 71 PHPAPI int _mysqlnd_vsprintf(char **pbuf, size_t max_len, const char *format, va_list ap);
|
| /PHP_TRUNK/ext/fileinfo/libmagic/ |
| H A D | file.h | 384 char *pbuf; /* Printable buffer */ member in struct:magic_set::out
|
| H A D | funcs.c | 318 if (ms->o.pbuf) { 319 efree(ms->o.pbuf); 320 ms->o.pbuf = NULL; 356 if ((ms->o.pbuf = CAST(char *, erealloc(ms->o.pbuf, psize))) == NULL) { 370 np = ms->o.pbuf; 396 return ms->o.pbuf; 400 for (np = ms->o.pbuf, op = ms->o.buf; *op;) { 408 return ms->o.pbuf;
|
| H A D | apprentice.c | 445 if (ms->o.pbuf) { 446 efree(ms->o.pbuf); 472 ms->o.buf = ms->o.pbuf = NULL;
|
| /PHP_TRUNK/ext/opcache/ |
| H A D | zend_accelerator_blacklist.c | 201 char *path_dup, *pbuf; local 211 pbuf = &buf[0]; 212 while (*pbuf == '\r') { 213 *pbuf++ = 0; 218 if (pbuf[0] == '\"' && pbuf[path_length - 1]== '\"') { 219 *pbuf++ = 0; 228 if (pbuf[0]==';') { 232 path_dup = zend_strndup(pbuf, path_length);
|