Searched refs:temp_len (Results 1 - 2 of 2) sorted by relevance
| /PHP_TRUNK/ext/standard/ |
| H A D | file.c | 2024 size_t temp_len, line_end_len; local 2041 temp_len = buf_len; 2042 temp = emalloc(temp_len + line_end_len + 1); 2117 if ((size_t)temp_len > (size_t)(limit - buf)) { 2124 temp_len += new_len; 2125 new_temp = erealloc(temp, temp_len);
|
| /PHP_TRUNK/ext/intl/converter/ |
| H A D | converter.c | 678 temp_len; local 689 temp_len = 1 + ucnv_toUChars(src_cnv, NULL, 0, src, src_len, &error); 694 temp = safe_emalloc(sizeof(UChar), temp_len, sizeof(UChar)); 698 temp_len = ucnv_toUChars(src_cnv, temp, temp_len, src, src_len, &error); 704 temp[temp_len] = 0; 707 dest_len = 1 + ucnv_fromUChars(dest_cnv, NULL, 0, temp, temp_len, &error); 717 dest_len = ucnv_fromUChars(dest_cnv, dest, dest_len, temp, temp_len, &error);
|
Completed in 8 milliseconds