Searched defs:width (Results 1 - 8 of 8) sorted by relevance
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/ |
H A D | utf8.c | 85 int width = UTF8_WIDTH(*p); local 95 if (width == 0 || len < width) 102 w = width; 108 return (width); 117 int width; local 128 width = UTF8_WIDTH(c); 130 switch (width) { 162 if (len < width) 165 rest = width 241 int width; local [all...] |
H A D | ucs4.c | 203 int width; local 215 width = 1; 223 width = 2; 227 width = 3; 231 width = 4; 235 width = 5; 239 width = 6; 246 for (i = width - 1; i > 0; i--) { 298 int width; local 316 width [all...] |
H A D | converter.c | 1190 size_t width; local 1194 width = 1; 1196 width = 0; 1198 width = 2; 1200 width = 3; 1202 width = 4; 1204 width = 5; 1206 width = 6; 1208 width = 0; 1209 if (width [all...] |
/bind-9.11.3/unit/atf-src/tools/ |
H A D | ui.cpp | 52 static size_t width = 0; local 58 width = tools::text::to_type< size_t >(cols); 63 width = ws.ws_col; 66 if (width >= 80) 67 width -= 5; 72 return width;
|
/bind-9.11.3/lib/isc/ |
H A D | print.c | 165 unsigned long width; local 200 width = precision = 0; 233 width = va_arg(ap, int); 237 width = strtoul(format, &e, 10); 485 if (precision_set || width != 0U) { 489 else if (length < width && zero) 490 zeropad = width - length; 491 if (width != 0U) { 492 pad = width - length - 546 if (width ! [all...] |
/bind-9.11.3/lib/lwres/ |
H A D | print.c | 68 unsigned long width; local 106 width = precision = 0; 139 width = va_arg(ap, int); 143 width = strtoul(format, &e, 10); 317 if (precision != 0U || width != 0U) { 321 else if (length < width && zero) 322 zeropad = width - length; 323 if (width != 0U) { 324 pad = width - length - 383 if (width ! [all...] |
/bind-9.11.3/lib/dns/ |
H A D | master.c | 634 * required to make the width. 640 nibbles(char *numbuf, size_t length, unsigned int width, char mode, int value) { argument 658 if (width > 0) 659 width--; 662 * If width is non zero then we need to add a label seperator. 666 if (width > 0 || value != 0) { 672 if (width > 0) 673 width--; 676 } while (value != 0 || width > 0); 689 unsigned int width; local [all...] |
H A D | rdata.c | 119 unsigned int width; /*%< Width of rdata column. */ member in struct:dns_rdata_textctx 1066 if (tctx->width == 0) /* No splitting */ 1069 result = isc_hex_totext(&sr, tctx->width - 2, 1129 tctx.width = 60; 1136 unsigned int flags, unsigned int width, 1150 tctx.width = width; 1152 tctx.width = split_width; 1158 tctx.width = 60; /* Used for hex word length only. */ 1135 dns_rdata_tofmttext(dns_rdata_t *rdata, dns_name_t *origin, unsigned int flags, unsigned int width, unsigned int split_width, const char *linebreak, isc_buffer_t *target) argument
|
Completed in 44 milliseconds