Searched refs:tmpbuf (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_5/ext/iconv/ |
| H A D | iconv.c | 1489 char tmpbuf[80]; local 1498 if (csname_len > sizeof(tmpbuf) - 1) { 1517 memcpy(tmpbuf, csname, csname_len); 1518 tmpbuf[csname_len] = '\0'; 1524 cd = iconv_open(enc, tmpbuf);
|
| /PHP_5_5/ext/standard/ |
| H A D | math.c | 1104 char *tmpbuf = NULL, *resbuf; local 1120 tmplen = spprintf(&tmpbuf, 0, "%.*F", dec, d); 1122 if (tmpbuf == NULL || !isdigit((int)tmpbuf[0])) { 1127 return tmpbuf; 1132 dp = strpbrk(tmpbuf, ".,"); 1139 integral = dp - tmpbuf; 1166 s = tmpbuf+tmplen-1; 1199 while(s >= tmpbuf) { 1201 if (thousand_sep && (++count%3)==0 && s>=tmpbuf) { [all...] |
| /PHP_5_5/ext/opcache/ |
| H A D | ZendAccelerator.c | 732 struct stat *tmpbuf = sapi_module.get_stat(TSRMLS_C); local 734 if (tmpbuf) { 736 *size = tmpbuf->st_size; 738 return tmpbuf->st_mtime;
|
| /PHP_5_5/ext/sockets/ |
| H A D | sockets.c | 1122 char *tmpbuf; local 1135 tmpbuf = emalloc(length + 1); 1140 retval = php_read(php_sock, tmpbuf, length, 0); 1142 retval = recv(php_sock->bsd_socket, tmpbuf, length, 0); 1159 efree(tmpbuf); 1162 efree(tmpbuf); 1166 tmpbuf = erealloc(tmpbuf, retval + 1); 1167 tmpbuf[retval] = '\0' ; 1169 RETURN_STRINGL(tmpbuf, retva [all...] |
Completed in 13 milliseconds