Searched refs:tmp_cap (Results 1 – 1 of 1) sorted by relevance
236 size_t i, tmp_cap; in vector_str_grow() local244 tmp_cap = BUFFER_GROW(v->capacity); in vector_str_grow()246 assert(tmp_cap > v->capacity); in vector_str_grow()248 if ((tmp_ctn = malloc(sizeof(char *) * tmp_cap)) == NULL) in vector_str_grow()257 v->capacity = tmp_cap; in vector_str_grow()339 size_t i, j, tmp_cap; in vector_str_push_vector_head() local345 tmp_cap = BUFFER_GROW(dst->size + org->size); in vector_str_push_vector_head()347 if ((tmp_ctn = malloc(sizeof(char *) * tmp_cap)) == NULL) in vector_str_push_vector_head()366 dst->capacity = tmp_cap; in vector_str_push_vector_head()379 size_t i, j, tmp_cap; in vector_str_push_vector() local[all …]