Home
last modified time | relevance | path

Searched refs:utf8_allocated_size (Results 1 – 2 of 2) sorted by relevance

/dports/sysutils/R-cran-processx/processx/src/
H A Dprocessx-connection.c429 con->utf8_allocated_size = 0; in processx_c_connection_create()
1254 if (ccon->utf8_data_size >= ccon->utf8_allocated_size - 8) { in processx__connection_read_until_newline()
1281 ccon->utf8_allocated_size = 64 * 1024; in processx__connection_alloc()
1289 size_t new_size = (size_t) (ccon->utf8_allocated_size * 1.2); in processx__connection_realloc()
1291 if (new_size == ccon->utf8_allocated_size) new_size = 2 * new_size; in processx__connection_realloc()
1295 ccon->utf8_allocated_size = new_size; in processx__connection_realloc()
1425 size_t outbytesleft = ccon->utf8_allocated_size - ccon->utf8_data_size; in processx__connection_to_utf8()
H A Dprocessx-connection.h74 size_t utf8_allocated_size; member