Home
last modified time | relevance | path

Searched refs:widths_cache (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl2/groff/dist/src/libs/libgroff/
H A Dfont.cpp156 ch(0), ch_used(0), ch_size(0), special(0), widths_cache(0) in font()
185 while (widths_cache) { in ~font()
186 font_widths_cache *tem = widths_cache; in ~font()
187 widths_cache = widths_cache->next; in ~font()
282 if (!widths_cache) in get_width()
283 widths_cache = new font_widths_cache(point_size, ch_size); in get_width()
284 else if (widths_cache->point_size != point_size) { in get_width()
286 for (p = &widths_cache; *p; p = &(*p)->next) in get_width()
292 tem->next = widths_cache; in get_width()
293 widths_cache = tem; in get_width()
[all …]
/netbsd-src/external/gpl2/groff/dist/src/include/
H A Dfont.h105 font_widths_cache *widths_cache; variable
/netbsd-src/external/gpl2/groff/dist/
H A DChangeLog.1152917 (font::font): Initialize widths_cache.
2918 (font::~font): Destroy widths_cache.
2919 * lib/font.h: Add font::widths_cache. Declare font_widths_cache.