HomeSort by: relevance | last modified time | path
    Searched refs:ftemp (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/kern/
kern_ntptime.c 426 l_fp ftemp; /* 32/64-bit temporary */ local
510 ftemp = time_offset;
515 L_RSHIFT(ftemp, pps_shift);
517 L_RSHIFT(ftemp, SHIFT_PLL + time_constant);
519 L_RSHIFT(ftemp, SHIFT_PLL + time_constant);
521 time_adj = ftemp;
522 L_SUB(time_offset, ftemp);
552 L_LINT(ftemp, tickrate * 1000);
553 L_ADD(time_adj, ftemp);
620 l_fp ftemp; local
704 l_fp ftemp; local
    [all...]
  /src/external/bsd/ntp/dist/util/
ntptime.c 102 double ftemp, gtemp, htemp; local
344 ftemp = (double)ntx.offset * nscale;
345 printf(" offset %.3f", ftemp);
346 ftemp = (double)ntx.freq / SCALE_FREQ;
348 ftemp, 1 << ntx.shift);
352 ftemp = (double)ntx.tolerance / SCALE_FREQ;
356 (u_long)ntx.constant, gtemp, ftemp);
359 ftemp = (double)ntx.ppsfreq / SCALE_FREQ;
363 ftemp, gtemp, htemp);
  /src/external/bsd/ntp/dist/ntpd/
ntp_loopfilter.c 1265 double ftemp; local
1288 ftemp = init_drift_comp / 1e6;
1289 if (ftemp > NTP_MAXFREQ)
1290 ftemp = NTP_MAXFREQ;
1291 else if (ftemp < -NTP_MAXFREQ)
1292 ftemp = -NTP_MAXFREQ;
1293 set_freq(ftemp);
ntp_proto.c 2577 double etemp, ftemp, td; local
2815 ftemp = itemp / etemp;
2816 if (ftemp > 1000.)
2817 peer->r21 = ftemp;
2824 ftemp = itemp / etemp;
2825 if (ftemp > 1000.)
2826 peer->r34 = ftemp;
  /src/usr.bin/ftp/
util.c 542 static FILE *ftemp = NULL; local
554 if (ftemp) {
555 (void)fclose(ftemp);
556 ftemp = NULL;
568 if (ftemp == NULL) {
597 ftemp = fopen(temp, "r");
599 if (ftemp == NULL) {
608 if (fgets(buf, sizeof(buf), ftemp) == NULL) {
609 (void)fclose(ftemp);
610 ftemp = NULL
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/overlays/
pcache.c 151 AttributeDescription **bindfattrs; /* attrs to substitute in ftemp */
442 ftemp_attrs( struct berval *ftemp, struct berval *template,
453 temp2 = ch_malloc( ftemp->bv_len + 1 );
454 p1 = ftemp->bv_val;

Completed in 27 milliseconds