HomeSort by: relevance | last modified time | path
    Searched defs:ndots (Results 1 - 14 of 14) sorted by relevancy

  /src/external/gpl2/groff/dist/src/preproc/pic/
troff.cpp 100 int ndots = int(dist/lt.dash_width + .5); local
101 if (ndots == 0)
104 vec /= double(ndots);
105 for (int j = 0; j <= ndots; j++)
common.cpp 68 int ndots; local
72 ndots = 2;
75 ndots = 4*int(M_PI/(2.0*gap_angle));
76 gap_angle = (M_PI*2.0)/ndots;
79 for (int i = 0; i < ndots; i++, ang += gap_angle)
200 int ndots = 4 * int(le / lt.dash_width / 4 + 0.5); local
201 if (ndots < 4)
202 ndots = 4;
207 for (int i = 1; i <= ndots; i++) {
210 double ld = i * le / ndots;
299 int ndots = int(total_angle\/(lt.dash_width\/rad) + .5); local
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/irs/
resconf.c 117 /*%< set to n in 'options ndots:n' */
118 uint8_t ndots; member in struct:irs_resconf
465 long ndots; local
477 } else if (strncmp("ndots:", word, 6) == 0) {
478 ndots = strtol(word + 6, &p, 10);
482 if (ndots < 0 || ndots > 0xff) { /* Out of range. */
485 conf->ndots = (uint8_t)ndots;
536 conf->ndots = 1
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/src/
write-java.c 91 int ndots = 0; local
108 ndots++;
110 return ndots;
897 int ndots; local
942 ndots = check_resource_name (resource_name);
943 if (ndots < 0)
954 subdirs = (ndots > 0 ? (char **) xallocsa (ndots * sizeof (char *)) : NULL);
962 for (i = 0; i < ndots; i++)
991 for (i = 0; i < ndots; i++
    [all...]
  /src/external/mpl/bind/dist/lib/dns/
resconf.c 111 /*%< set to n in 'options ndots:n' */
112 uint8_t ndots; member in struct:irs_resconf
494 } else if (strncmp("ndots:", word, 6) == 0) {
495 CHECK(resconf_optionnumber(word + 6, &conf->ndots));
551 conf->ndots = 1;
702 return (unsigned int)conf->ndots;
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
principal.c 1794 unsigned int ndots = 0; local
1835 ndots++;
1837 if (rule->mindots > 0 && ndots < rule->mindots)
1839 if (ndots > rule->maxdots)
  /src/crypto/external/bsd/openssh/dist/
ssh.c 420 int i, direct, ndots; local
475 ndots = 0;
478 ndots++;
480 if (ndots > options.canonicalize_max_dots) {
  /src/external/apache2/mDNSResponder/nss/
nss_mdnsd.c 140 short ndots; member in struct:res_conf
985 if (dots >= iter->conf->ndots) {
1321 rc->ndots = 1;
1326 rc->ndots = res->ndots;
  /src/include/
resolv.h 168 unsigned ndots:4; /*%< threshold for initial abs. query */ member in struct:__res_state
  /src/external/bsd/libbind/dist/include/
resolv.h 178 unsigned ndots:4; /*%< threshold for initial abs. query */ member in struct:__res_state
  /src/external/bsd/libbind/dist/tests/
dig8.c 574 res.ndots = atoi(argv[0]+2);
578 res.ndots = atoi(*argv);
1216 unsigned ndots = res.ndots; local
1229 res.ndots = ndots;
  /src/external/mpl/bind/dist/bin/dig/
dighost.c 113 int ndots = -1; variable
1293 if (ndots == -1) {
1294 ndots = irs_resconf_getndots(resconf);
1295 debug("ndots is %d.", ndots);
2046 * Check for a absolute name or ndots being met.
2052 (int)dns_name_countlabels(name) > ndots))
2253 if ((count_dots(textname) >= ndots) || !usesearch) {
  /src/external/bsd/libevent/dist/
evdns.c 3074 /* The ndots option controls how many dots it takes for the resolver */
3085 int ndots; member in struct:search_state
3110 state->ndots = 1;
3188 evdns_base_search_ndots_set(struct evdns_base *base, const int ndots) {
3192 base->global_search_state->ndots = ndots;
3196 evdns_search_ndots_set(const int ndots) {
3197 evdns_base_search_ndots_set(current_base, ndots);
3255 if (string_num_dots(name) >= base->global_search_state->ndots) {
3306 if (string_num_dots(handle->search_origname) < handle->search_state->ndots) {
3494 const int ndots = strtoint(val); local
    [all...]
  /src/external/bsd/ntp/dist/sntp/libevent/
evdns.c 3072 /* The ndots option controls how many dots it takes for the resolver */
3083 int ndots; member in struct:search_state
3108 state->ndots = 1;
3186 evdns_base_search_ndots_set(struct evdns_base *base, const int ndots) {
3190 base->global_search_state->ndots = ndots;
3194 evdns_search_ndots_set(const int ndots) {
3195 evdns_base_search_ndots_set(current_base, ndots);
3253 if (string_num_dots(name) >= base->global_search_state->ndots) {
3304 if (string_num_dots(handle->search_origname) < handle->search_state->ndots) {
3492 const int ndots = strtoint(val); local
    [all...]

Completed in 62 milliseconds