Searched refs:tmpbuf (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_3/ext/iconv/ |
| H A D | iconv.c | 1421 char tmpbuf[80]; local 1430 if (csname_len > sizeof(tmpbuf) - 1) { 1449 memcpy(tmpbuf, csname, csname_len); 1450 tmpbuf[csname_len] = '\0'; 1456 cd = iconv_open(enc, tmpbuf);
|
| /PHP_5_3/ext/sockets/ |
| H A D | sockets.c | 1028 char *tmpbuf; local 1041 tmpbuf = emalloc(length + 1); 1046 retval = php_read(php_sock, tmpbuf, length, 0); 1048 retval = recv(php_sock->bsd_socket, tmpbuf, length, 0); 1065 efree(tmpbuf); 1068 efree(tmpbuf); 1072 tmpbuf = erealloc(tmpbuf, retval + 1); 1073 tmpbuf[retval] = '\0' ; 1075 RETURN_STRINGL(tmpbuf, retva [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | math.c | 1097 char *tmpbuf = NULL, *resbuf; local 1113 tmplen = spprintf(&tmpbuf, 0, "%.*F", dec, d); 1115 if (tmpbuf == NULL || !isdigit((int)tmpbuf[0])) { 1116 return tmpbuf; 1121 dp = strpbrk(tmpbuf, ".,"); 1128 integral = dp - tmpbuf; 1155 s = tmpbuf+tmplen-1; 1187 while(s >= tmpbuf) { 1189 if (thousand_sep && (++count%3)==0 && s>=tmpbuf) { [all...] |
Completed in 9 milliseconds