| /src/usr.bin/cal/ |
| Makefile | 4 PROG= cal
|
| /src/external/bsd/ntp/dist/util/ |
| lsf-times.c | 54 struct calendar cal = {0}; local 63 ntpcal_ntp64_to_date(&cal, &expires); 66 , cal.monthday 67 , MONTHS[cal.month - 1] 68 , cal.year 69 , cal.hour 70 , cal.minute 71 , cal.second 155 cal.year = year; 156 cal.month = mon [all...] |
| /src/sys/external/isc/atheros_hal/dist/ar5416/ |
| ar5416_cal_adcdc.c | 29 /* Adc DC Offset Cal aliases */ 38 struct ar5416PerCal *cal = &AH5416(ah)->ah_cal; local 42 cal->totalAdcDcOffsetIOddPhase(i) += (int32_t) 44 cal->totalAdcDcOffsetIEvenPhase(i) += (int32_t) 46 cal->totalAdcDcOffsetQOddPhase(i) += (int32_t) 48 cal->totalAdcDcOffsetQEvenPhase(i) += (int32_t) 53 cal->calSamples, i, 54 cal->totalAdcDcOffsetIOddPhase(i), 55 cal->totalAdcDcOffsetIEvenPhase(i), 56 cal->totalAdcDcOffsetQOddPhase(i) 64 struct ar5416PerCal *cal = &AH5416(ah)->ah_cal; local [all...] |
| ar5416_cal_adcgain.c | 29 /* Adc Gain Cal aliases */ 41 struct ar5416PerCal *cal = &AH5416(ah)->ah_cal; local 45 * Accumulate ADC Gain cal measures for active chains 48 cal->totalAdcIOddPhase(i) += 50 cal->totalAdcIEvenPhase(i) += 52 cal->totalAdcQOddPhase(i) += 54 cal->totalAdcQEvenPhase(i) += 59 cal->calSamples, i, cal->totalAdcIOddPhase(i), 60 cal->totalAdcIEvenPhase(i), cal->totalAdcQOddPhase(i) 71 struct ar5416PerCal *cal = &AH5416(ah)->ah_cal; local [all...] |
| ar5416_cal_iq.c | 29 /* IQ Cal aliases */ 40 struct ar5416PerCal *cal = &AH5416(ah)->ah_cal; local 44 * Accumulate IQ cal measures for active chains 47 cal->totalPowerMeasI(i) += 49 cal->totalPowerMeasQ(i) += 51 cal->totalIqCorrMeas(i) += (int32_t) 55 cal->calSamples, i, cal->totalPowerMeasI(i), 56 cal->totalPowerMeasQ(i), cal->totalIqCorrMeas(i)) 66 struct ar5416PerCal *cal = &AH5416(ah)->ah_cal; local [all...] |
| ar5416_cal.c | 27 #include "ar5212/ar5212.h" /* for NF cal related declarations */ 46 struct ar5416PerCal *cal = &AH5416(ah)->ah_cal; local 48 switch (calType & cal->suppCals) { 54 /* Run ADC Gain Cal for non-CCK & non 2GHz-HT20 only */ 62 * Setup HW to collect samples used for current cal 95 /* Kick-off cal */ 100 * Initialize shared data structures and prepare a cal to be run. 105 struct ar5416PerCal *cal = &AH5416(ah)->ah_cal; local 108 OS_MEMZERO(cal->caldata, sizeof(cal->caldata)) 171 struct ar5416PerCal *cal = &AH5416(ah)->ah_cal; local 296 struct ar5416PerCal *cal = &AH5416(ah)->ah_cal; local 345 struct ar5416PerCal *cal = &AH5416(ah)->ah_cal; local 402 struct ar5416PerCal *cal = &AH5416(ah)->ah_cal; local 477 struct ar5416PerCal *cal = &AH5416(ah)->ah_cal; local [all...] |
| /src/external/bsd/ntp/dist/tests/libntp/ |
| caljulian.c | 23 CalendarToString(const struct calendar cal) 30 cal.year, cal.month, cal.monthday, cal.yearday, 31 cal.hour, cal.minute, cal.second);
|
| calendar.c | 21 char * CalendarFromCalToString(const struct calendar *cal); 25 char * DateFromCalToString(const struct calendar *cal); 102 const struct calendar *cal) 106 cal->year, (u_int)cal->month, (u_int)cal->monthday, 107 cal->yearday, 108 (u_int)cal->hour, (u_int)cal->minute, (u_int)cal->second) 719 struct calendar cal; local [all...] |
| /src/external/bsd/ntp/dist/ntpd/ |
| ntp_filegen.c | 111 struct calendar cal; local 156 ntpcal_ntp_to_date(&cal, stamp, pivot); 158 SUFFIX_SEP, cal.year, cal.month, cal.monthday); 159 cal.hour = cal.minute = cal.second = 0; 160 gen->id_lo = ntpcal_date_to_ntp(&cal); 175 ntpcal_ntp_to_date(&cal, stamp, pivot) [all...] |
| /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/nxp/imx/ |
| imx6q-b650v3.dts | 101 fsl,tx-cal-45-dn-ohms = <54>; 102 fsl,tx-cal-45-dp-ohms = <54>; 103 fsl,tx-d-cal = <100>;
|
| imx6q-pistachio.dts | 639 fsl,tx-d-cal = <79>; 643 fsl,tx-d-cal = <79>;
|
| /src/external/bsd/ntp/dist/libntp/ |
| ntp_calgps.c | 411 TCivilDate cal; local 417 cal = *jd; 418 if (cal.year < 80) 419 cal.year += 2000; 420 else if (cal.year < 100) 421 cal.year += 1900; 424 again: if (cal.month && cal.monthday) { /* use Y/M/D civil date */ 425 days = ntpcal_date_to_rd(&cal); 427 days = ntpcal_year_to_ystart(cal.year [all...] |
| /src/external/bsd/ntp/dist/ntpq/ |
| ntpq.c | 2103 struct calendar cal; local 2106 cal.yearday = 0; 2129 cal.monthday = (u_char) (*cp++ - '0'); /* ascii dependent */ 2131 cal.monthday = (u_char)((cal.monthday << 3) + (cal.monthday << 1)); 2132 cal.monthday = (u_char)(cal.monthday + *cp++ - '0'); 2147 cal.month = (u_char)(i + 1); 2154 cal.year = (u_short)(*cp++ - '0') [all...] |
| /src/sys/dev/dm/ |
| dm_target_delay.c | 62 struct callout cal; member in struct:dm_delay_info 203 callout_init(&di->cal, 0); 312 if (!callout_pending(&di->cal)) 313 callout_reset(&di->cal, di->delay, _timeout, di); 357 callout_reset(&di->cal, next - tick, _timeout, di); 411 if (callout_pending(&di->cal)) 412 callout_halt(&di->cal, NULL);
|
| /src/usr.bin/calendar/ |
| calendar.c | 117 static void cal(void); 196 cal(); 204 cal(); 207 cal(); 213 cal(void) function
|
| /src/sys/dev/ic/ |
| arn5008.c | 2029 struct athn_iq_cal *cal; local 2035 cal = &sc->sc_calib.iq[i]; 2038 cal->pwr_meas_i += AR_READ(sc, AR_PHY_CAL_MEAS_0(i)); 2039 cal->pwr_meas_q += AR_READ(sc, AR_PHY_CAL_MEAS_1(i)); 2040 cal->iq_corr_meas += 2051 cal = &sc->sc_calib.iq[i]; 2053 if (cal->pwr_meas_q == 0) 2056 if ((iq_corr_neg = cal->iq_corr_meas) < 0) 2057 cal->iq_corr_meas = -cal->iq_corr_meas 2097 struct athn_adc_cal *cal; local 2148 struct athn_adc_cal *cal; local [all...] |
| /src/external/bsd/ntp/dist/tests/ntpd/ |
| leapsec.c | 276 CalendarToString(const struct calendar cal) 283 cal.year, cal.month, cal.monthday, cal.yearday, 284 cal.hour, cal.minute, cal.second);
|
| /src/usr.bin/ |
| Makefile | 8 bzip2 bzip2recover c11 c17 c89 c99 cal calendar cap_mkdb cdplay \
|
| /src/external/lgpl3/gmp/dist/mpn/power/ |
| addmul_1.asm | 53 cal 3,-4(3) 122 Lend0: cal 9,0(10)
|
| mul_1.asm | 53 cal 3,-4(3) 109 Lend0: cal 9,0(10)
|
| submul_1.asm | 53 cal 3,-4(3) 127 Lend0: cal 9,0(10)
|
| add_n.asm | 45 cal 3,-4(3) C offset res_ptr, it's updated before it's used
|
| sub_n.asm | 46 cal 3,-4(3) C offset res_ptr, it's updated before it's used
|
| /src/distrib/evbsh3/rom/ramdiskcommon/ |
| ramdiskbin.conf | 36 progs apply apropos asa at banner basename biff bzip2 bzip2recover cal
|
| /src/sys/dev/pci/ |
| agp.c | 546 int rq, sba, fw, rate, arqsz, cal; local 571 cal = AGP_MODE_GET_CAL(tstatus); 572 if (AGP_MODE_GET_CAL(mstatus) < cal) 573 cal = AGP_MODE_GET_CAL(mstatus); 595 command = AGP_MODE_SET_CAL(command, cal);
|