Home
last modified time | relevance | path

Searched refs:lines_alloc (Results 1 – 9 of 9) sorted by relevance

/dports/databases/grass7/grass-7.8.6/lib/vector/Vlib/
H A Dbuild_sfa.c425 ogr_info->cache.lines_alloc = 1; in add_geometry_ogr()
471 if (nRings > ogr_info->cache.lines_alloc) { in add_geometry_ogr()
472 ogr_info->cache.lines_alloc += nRings; in add_geometry_ogr()
474 ogr_info->cache.lines_alloc * in add_geometry_ogr()
477 ogr_info->cache.lines_alloc * sizeof(int)); in add_geometry_ogr()
479 for (i = ogr_info->cache.lines_alloc - nRings; i < ogr_info->cache.lines_alloc; i++) { in add_geometry_ogr()
578 if (nParts > ogr_info->cache.lines_alloc) { in add_geometry_ogr()
579 ogr_info->cache.lines_alloc += nParts; in add_geometry_ogr()
581 ogr_info->cache.lines_alloc * in add_geometry_ogr()
584 ogr_info->cache.lines_alloc * sizeof(int)); in add_geometry_ogr()
[all …]
H A Dread_ogr.c275 if (line == ogr_info->cache.lines_alloc) { in cache_feature()
276 ogr_info->cache.lines_alloc += 1; in cache_feature()
279 ogr_info->cache.lines_alloc * in cache_feature()
284 ogr_info->cache.lines_alloc * sizeof(int)); in cache_feature()
286 for (i = ogr_info->cache.lines_num; i < ogr_info->cache.lines_alloc; i++) in cache_feature()
H A Dread_pg.c1579 if (!incr && cache->lines_alloc >= num) in Vect__reallocate_cache()
1584 cache->lines_alloc = 1; in Vect__reallocate_cache()
1587 cache->lines_alloc += num; in Vect__reallocate_cache()
1591 cache->lines_alloc * in Vect__reallocate_cache()
1594 cache->lines_alloc * sizeof(int)); in Vect__reallocate_cache()
1596 cache->lines_alloc * sizeof(int)); in Vect__reallocate_cache()
1598 if (cache->lines_alloc > 1) { in Vect__reallocate_cache()
1599 for (i = cache->lines_alloc - num; i < cache->lines_alloc; i++) { in Vect__reallocate_cache()
H A Dclose.c304 for (i = 0; i < cache->lines_alloc; i++) { in Vect__free_cache()
/dports/news/trn4/trn-4.0-test77/
H A Dscoresave.c33 static int lines_alloc = 0; variable
48 if (num_lines == lines_alloc) {
49 lines_alloc += 100;
50 lines = (char**)saferealloc((char*)lines,lines_alloc * sizeof (char*));
96 num_lines = lines_alloc = 0; in sc_sv_getfile()
/dports/devel/ncurses/ncurses-6.3/ncurses/tty/
H A Dhashmap.c112 #define lines_alloc(sp) ((sp)->hashtab_len) macro
292 if (screen_lines(SP_PARM) > lines_alloc(SP_PARM)) { in NCURSES_SP_NAME()
301 lines_alloc(SP_PARM) = 0; in NCURSES_SP_NAME()
304 lines_alloc(SP_PARM) = screen_lines(SP_PARM); in NCURSES_SP_NAME()
/dports/devel/efl/efl-1.25.1/src/lib/evas/canvas/
H A Devas_object_textgrid.c62 int rects_alloc, texts_alloc, lines_alloc; member
178 r->lines_alloc = 0; in evas_object_textgrid_row_clear()
354 if (row->lines_num > row->lines_alloc) in evas_object_textgrid_row_line_append()
358 row->lines_alloc += 8; // dont expect many lines per line in evas_object_textgrid_row_line_append()
359 t = realloc(row->lines, sizeof(Evas_Object_Textgrid_Line) * row->lines_alloc); in evas_object_textgrid_row_line_append()
/dports/databases/grass7/grass-7.8.6/include/vect/
H A Ddig_structs.h485 int lines_alloc; member
/dports/devel/libvirt/libvirt-7.10.0/src/bhyve/
H A Dbhyve_parse_command.c133 size_t lines_alloc = 0; in bhyveCommandLineToArgv() local
156 VIR_RESIZE_N(lines, lines_alloc, line_count, 2); in bhyveCommandLineToArgv()