Searched refs:ci (Results 1 - 25 of 108) sorted by last modified time

12345

/freebsd-9.3-release/contrib/ntp/libntp/
H A Dntp_calendar.c1650 uint32_t cc, ci, yu, sflag; local
1668 ci = cc * 3u + 1;
1669 cs = uint32_2cpl_to_int32(sflag ^ ((sflag ^ ci) / 4u));
1670 ci = ci % 4u;
1676 cw = (yu * 53431u + bctab[ci]) / 1024u;
1699 int32_t cc, ci; local
1715 ci = Q % 4u;
1721 sw = (sw / 4u) * 157u + bctab[ci];
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Dntp_proto.c2142 l_fp p_rec, p_xmt, p_org, p_reftime, ci; local
2278 ci = p_xmt; /* t3 - t4 */
2279 L_SUB(&ci, &peer->dst);
2280 LFPTOD(&ci, t34);
2281 ci = p_rec; /* t2 - t1 */
2283 L_SUB(&ci, &peer->borg);
2285 L_SUB(&ci, &peer->aorg);
2286 LFPTOD(&ci, t21);
2306 ci = p_org; /* delay */
2307 L_SUB(&ci,
[all...]
H A Dntpd.c112 # include <sys/ci/ciioctl.h>
/freebsd-9.3-release/contrib/ntp/ntpq/
H A Dntpq-subs.c2446 ci++; \
2491 int ci; /* client (our) index for validation */ local
2634 ci = 0;
2683 || si != ci)
2730 si != ci || '0' != val[0] ||
2748 si != ci || '0' != val[0] ||
2770 si != ci ||
2779 si != ci ||
2789 si != ci ||
/freebsd-9.3-release/contrib/ntp/ntpdate/
H A Dntpdate.c742 l_fp ci; local
861 * Calculate the round trip delay (di) and the clock offset (ci).
873 /* now have (t2 - t3) and (t0 - t1). Calculate (ci) and (di) */
875 * Calculate (ci) = ((t1 - t0) / 2) + ((t2 - t3) / 2)
878 ci = t10;
879 L_RSHIFT(&ci);
882 L_ADD(&ci, &tmp);
892 printf("offset: %s, delay %s\n", lfptoa(&ci, 6), fptoa(di, 5));
898 L_CLR(&ci);
907 server_data(server, (s_fp) di, &ci,
[all...]
/freebsd-9.3-release/crypto/openssl/ssl/
H A Dssltest.c2164 SSL_CIPHER *ci, *tci = NULL; local
2169 while ((ci = meth->get_cipher(i++)) != NULL) {
2171 if (ci->id >= tci->id) {
2172 fprintf(stderr, "failed %lx vs. %lx\n", ci->id, tci->id);
2175 tci = ci;
2183 while ((ci = meth->get_cipher(i++)) != NULL) {
2185 if (ci->id >= tci->id) {
2186 fprintf(stderr, "failed %lx vs. %lx\n", ci->id, tci->id);
2189 tci = ci;
2197 while ((ci
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/rand/
H A Drand_win.c358 CURSORINFO ci; local
359 ci.cbSize = sizeof(CURSORINFO);
360 if (cursor(&ci))
361 RAND_add(&ci, ci.cbSize, 2);
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Dt_x509.c111 X509_CINF *ci; local
125 ci = x->cert_info;
169 if (i2a_ASN1_OBJECT(bp, ci->signature->algorithm) <= 0)
212 if (i2a_ASN1_OBJECT(bp, ci->key->algor->algorithm) <= 0)
248 ci->extensions, cflag, 8);
/freebsd-9.3-release/crypto/openssl/apps/
H A Dca.c1602 X509_CINF *ci; local
1905 ci = ret->cert_info;
1913 if (BN_to_ASN1_INTEGER(serial, ci->serialNumber) == NULL)
1945 if (ci->version == NULL)
1946 if ((ci->version = ASN1_INTEGER_new()) == NULL)
1948 ASN1_INTEGER_set(ci->version, 2); /* version 3 certificate */
1953 if (ci->extensions != NULL)
1954 sk_X509_EXTENSION_pop_free(ci->extensions, X509_EXTENSION_free);
1956 ci->extensions = NULL;
/freebsd-9.3-release/contrib/ntp/lib/isc/unix/
H A Difiter_ioctl.c427 struct clua_info ci; local
428 if (clua_getaliasinfo(&iter->clua_sa, &ci) != CLUA_SUCCESS)
433 sprintf(iter->current.name, "clua%d", ci.aliasid);
435 get_inaddr(&iter->current.address, &ci.addr);
436 get_inaddr(&iter->current.netmask, &ci.netmask);
/freebsd-9.3-release/contrib/file/
H A DREADME10 [![Build Status](https://travis-ci.org/file/file.png?branch=master)](https://travis-ci.org/file/file)
/freebsd-9.3-release/lib/libiconv_modules/iconv_none/
H A Dcitrus_iconv_none.c66 struct _citrus_iconv_shared * __restrict ci,
70 ci->ci_closure = NULL;
76 _citrus_iconv_none_iconv_uninit_shared(struct _citrus_iconv_shared *ci __unused)
99 _citrus_iconv_none_iconv_convert(struct _citrus_iconv * __restrict ci __unused,
65 _citrus_iconv_none_iconv_init_shared( struct _citrus_iconv_shared * __restrict ci, const char * __restrict in __unused, const char * __restrict out __unused) argument
/freebsd-9.3-release/lib/libiconv_modules/iconv_std/
H A Dcitrus_iconv_std.c351 _citrus_iconv_std_iconv_init_shared(struct _citrus_iconv_shared *ci, argument
387 ci->ci_closure = is;
406 _citrus_iconv_std_iconv_uninit_shared(struct _citrus_iconv_shared *ci) argument
408 struct _citrus_iconv_std_shared *is = ci->ci_closure;
/freebsd-9.3-release/lib/libc/iconv/
H A Dcitrus_iconv.c90 close_shared(struct _citrus_iconv_shared *ci) argument
93 if (ci) {
94 if (ci->ci_module) {
95 if (ci->ci_ops) {
96 if (ci->ci_closure)
97 (*ci->ci_ops->io_uninit_shared)(ci);
98 free(ci->ci_ops);
100 _citrus_unload_module(ci->ci_module);
102 free(ci);
111 struct _citrus_iconv_shared *ci; local
181 match_func(struct _citrus_iconv_shared * __restrict ci, const char * __restrict key) argument
192 struct _citrus_iconv_shared * ci; local
231 release_shared(struct _citrus_iconv_shared * __restrict ci) argument
262 struct _citrus_iconv_shared *ci = NULL; local
[all...]
/freebsd-9.3-release/usr.sbin/pmccontrol/
H A Dpmccontrol.c300 const struct pmc_cpuinfo *ci; local
302 if (pmc_cpuinfo(&ci) != 0)
307 for (i = 0; i < ci->pm_nclass; i++) {
308 c = ci->pm_classes[i].pm_class;
/freebsd-9.3-release/usr.sbin/sa/
H A Dmain.c314 struct cmdinfo ci; local
342 ci.ci_calls = 1;
348 ci.ci_comm[i] = '?';
349 ci.ci_flags |= CI_UNPRINTABLE;
351 ci.ci_comm[i] = c;
354 ci.ci_comm[i++] = '*';
355 ci.ci_comm[i++] = '\0';
356 ci.ci_etime = ac.ac_etime;
357 ci.ci_utime = ac.ac_utime;
358 ci
[all...]
H A Dpdb.c110 pacct_add(const struct cmdinfo *ci) argument
114 char keydata[sizeof ci->ci_comm];
117 bcopy(ci->ci_comm, &keydata, sizeof keydata);
123 warn("get key %s from process accounting stats", ci->ci_comm);
134 add_ci(ci, &newci);
140 warn("add key %s to process accounting stats", ci->ci_comm);
144 ci->ci_comm);
165 struct cmdinfo *cip, ci, ci_total, ci_other, ci_junk; local
194 bcopy(cip, &ci, sizeof ci);
[all...]
H A Dusrdb.c118 usracct_add(const struct cmdinfo *ci) argument
125 uid = ci->ci_uid;
144 newui.ui_uid = ci->ci_uid;
147 newui.ui_calls += ci->ci_calls;
148 newui.ui_utime += ci->ci_utime;
149 newui.ui_stime += ci->ci_stime;
150 newui.ui_mem += ci->ci_mem;
151 newui.ui_io += ci->ci_io;
/freebsd-9.3-release/contrib/binutils/ld/
H A Dldmisc.c174 struct coff_comdat_info *ci; local
184 && (ci = bfd_coff_get_comdat_section (sec->owner,
186 group = ci->name;
/freebsd-9.3-release/contrib/binutils/bfd/
H A Dmep-relocs.pl103 my ($bits, $left, $right, $ci, $c, $cv);
107 for ($ci=0; $ci<length($mask); $ci++) {
108 $c = substr($mask, $ci, 1);
H A Dbfd.c548 struct coff_comdat_info *ci;
561 && (ci = bfd_coff_get_comdat_section (sec->owner,
563 group = ci->name;
546 struct coff_comdat_info *ci; local
/freebsd-9.3-release/contrib/binutils/opcodes/
H A Dia64-gen.c1731 int ci = 0;
1758 ci = (ci << 1) | (completer_index & 1);
1761 ent->completer_index = ci;
1725 int ci = 0; local
H A Dia64-opc.c574 int ci = main_table[place].completers;
583 int cname = completer_table[ci].name_index;
585 tinsn = apply_completer (tinsn, ci);
594 ci = completer_table[ci].subentries;
599 ci = completer_table[ci].alternative;
601 if (ci < 0)
612 completer_table[ci].dependencies);
564 int ci = main_table[place].completers; local
/freebsd-9.3-release/contrib/binutils/binutils/
H A Drescoff.c629 int ci, cn;
643 ci = 0;
650 ++ci;
654 windres_put_16 (cwi->wrbfd, erd->id_count, ci);
661 coff_alloc (&cwi->dirs, (ci + cn) * sizeof (*ere)));
627 int ci, cn; local
H A Dresrc.c2566 const struct control_info *ci;
2571 ci = NULL;
2574 for (ci = control_info; ci->name != NULL; ++ci)
2575 if (ci->class == control->class.u.id
2576 && (ci->style == (unsigned long) -1
2577 || ci->style == (control->style & 0xff)))
2580 if (ci == NULL)
2582 else if (ci
2563 const struct control_info *ci; local
[all...]

Completed in 335 milliseconds

12345