Searched refs:dt (Results 1 - 25 of 245) sorted by relevance

12345678910

/freebsd-current/lib/libcalendar/
H A Deaster.c38 easterg(int y, date *dt) argument
49 dt->m = 3 + (l + 40) / 44;
50 dt->d = l + 28 - 31*(dt->m / 4);
51 dt->y = y;
52 return (dt);
57 easterog(int y, date *dt) argument
60 return (gdate(easterodn(y), dt));
65 easteroj(int y, date * dt) argument
68 return (jdate(easterodn(y), dt));
85 date dt; local
[all...]
H A Dcalendar.c56 static date *date2idt(date *idt, date *dt);
57 static date *idt2date(date *dt, date *idt);
67 jdate(int ndays, date *dt) argument
96 return (idt2date(dt, &idt));
104 ndaysj(date *dt) argument
108 if (date2idt(&idt, dt) == NULL)
131 gdate(int ndays, date *dt) argument
174 return (idt2date(dt, &idt));
183 ndaysg(date *dt) argument
187 if (date2idt(&idt, dt)
238 date dt; local
296 date2idt(date *idt, date *dt) argument
315 idt2date(date *dt, date *idt) argument
[all...]
/freebsd-current/sys/contrib/device-tree/include/dt-bindings/sound/
H A Dapq8016-lpass.h5 #include <dt-bindings/sound/qcom,lpass.h>
H A Dsc7180-lpass.h5 #include <dt-bindings/sound/qcom,lpass.h>
H A Dqcom,q6afe.h7 #include <dt-bindings/sound/qcom,q6dsp-lpass-ports.h>
/freebsd-current/sys/contrib/device-tree/include/dt-bindings/interrupt-controller/
H A Dmips-gic.h5 #include <dt-bindings/interrupt-controller/irq.h>
H A Darm-gic.h9 #include <dt-bindings/interrupt-controller/irq.h>
H A Dapple-aic.h5 #include <dt-bindings/interrupt-controller/irq.h>
/freebsd-current/sys/contrib/device-tree/include/dt-bindings/clock/
H A Dsun7i-a20-ccu.h45 #include <dt-bindings/clock/sun4i-a10-ccu.h>
H A Dtegra124-car.h7 #include <dt-bindings/clock/tegra124-car-common.h>
H A Dr7s9210-cpg-mssr.h10 #include <dt-bindings/clock/renesas-cpg-mssr.h>
H A Drk3066a-cru.h10 #include <dt-bindings/clock/rk3188-cru-common.h>
/freebsd-current/lib/msun/src/
H A Ds_cbrtl.c36 double dr, dt, dx; local
95 dt = ft;
96 dr = dt * dt * dt;
97 dt = dt * (dx + dx + dr) / (dx + dr + dr);
100 dr = dt * dt * dt;
[all...]
/freebsd-current/usr.sbin/pw/
H A Dpsdate.c160 parse_date(time_t dt, char const * str) argument
167 if (dt == 0)
168 dt = time(NULL);
174 dt = strtol(str, &p, 0);
180 dt += (val * 3600L);
185 dt += (val * 60L);
189 dt += val;
193 dt += (val * 86400L);
197 dt += (val * 604800L);
201 T = localtime(&dt);
[all...]
H A Dpsdate.h37 time_t parse_date(time_t dt, char const * str);
/freebsd-current/lib/libc/tests/gen/
H A Dglob2_test.c51 double dt; local
94 dt = t2.tv_sec + (double)t2.tv_nsec/1e9;
95 dt /= mul;
97 ATF_CHECK_MSG(dt < 1, "glob(3) took far too long: %d %.9f", i,
98 dt);
100 if (dt >= 0.0001)
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dzpool_import_010_pos.ksh52 typeset dt
53 for dt in $poolE $poolD $poolC $poolB $poolA; do
54 destroy_pool $dt
88 for dt in $poolA $poolB $poolC $poolD $poolE; do
89 log_must datasetexists $dt
H A Dzpool_import_014_pos.ksh44 typeset dt
45 for dt in $poolB $poolA; do
46 destroy_pool $dt
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zpool_import/
H A Dzpool_import_010_pos.ksh60 typeset dt
61 for dt in $poolE $poolD $poolC $poolB $poolA; do
62 destroy_pool $dt
100 for dt in $poolA $poolB $poolC $poolD $poolE; do
101 log_must datasetexists $dt
/freebsd-current/tools/regression/sockets/unix_cmsg/
H A Duc_check_time.c48 struct timeval ct, dt; local
52 timersub(&ct, bt, &dt);
53 if (!timercmp(&dt, &max_diff_tv, <))
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/common/
H A Dfse_decompress.c59 size_t FSE_buildDTable(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
61 void* const tdPtr = dt+1; /* because *dt is unsigned, 32-bits aligned on 32-bits */
87 memcpy(dt, &DTableH, sizeof(DTableH));
122 size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) argument
124 void* ptr = dt;
126 void* dPtr = dt + 1;
140 size_t FSE_buildDTable_raw (FSE_DTable* dt, unsigned nbBits) argument
142 void* ptr = dt;
144 void* dPtr = dt
166 FSE_decompress_usingDTable_generic( void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const FSE_DTable* dt, const unsigned fast) argument
229 FSE_decompress_usingDTable(void* dst, size_t originalSize, const void* cSrc, size_t cSrcSize, const FSE_DTable* dt) argument
269 DTable_max_t dt; /* Static analyzer seems unable to understand this table will be properly initialized later */ local
[all...]
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress_block.h49 * (dt is large enough, normalizedCounter distribution total is a power of 2, max is within range, etc.)
53 void ZSTD_buildFSETable(ZSTD_seqSymbol* dt,
/freebsd-current/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress_block.h55 * (dt is large enough, normalizedCounter distribution total is a power of 2, max is within range, etc.)
61 void ZSTD_buildFSETable(ZSTD_seqSymbol* dt,
/freebsd-current/sys/contrib/device-tree/include/dt-bindings/iio/
H A Dqcom,spmi-adc7-smb139x.h9 #include <dt-bindings/iio/qcom,spmi-vadc.h>
/freebsd-current/contrib/netbsd-tests/lib/libc/
H A Dt_convfp.c78 long double dt; local
86 } else if (sizeof(dt) > sizeof(ul)) {
87 dt = ULONG_TESTVALUE;
88 ul = (unsigned long)dt;
93 sizeof(ul), sizeof(d), sizeof(dt));

Completed in 242 milliseconds

12345678910