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

12345678

/freebsd-12-stable/lib/libcalendar/
H A Deaster.c40 easterg(int y, date *dt) argument
51 dt->m = 3 + (l + 40) / 44;
52 dt->d = l + 28 - 31*(dt->m / 4);
53 dt->y = y;
54 return (dt);
59 easterog(int y, date *dt) argument
62 return (gdate(easterodn(y), dt));
67 easteroj(int y, date * dt) argument
70 return (jdate(easterodn(y), dt));
87 date dt; local
[all...]
H A Dcalendar.c58 static date *date2idt(date *idt, date *dt);
59 static date *idt2date(date *dt, date *idt);
69 jdate(int ndays, date *dt) argument
98 return (idt2date(dt, &idt));
106 ndaysj(date *dt) argument
110 if (date2idt(&idt, dt) == NULL)
133 gdate(int ndays, date *dt) argument
176 return (idt2date(dt, &idt));
185 ndaysg(date *dt) argument
189 if (date2idt(&idt, dt)
240 date dt; local
298 date2idt(date *idt, date *dt) argument
317 idt2date(date *dt, date *idt) argument
[all...]
/freebsd-12-stable/sys/gnu/dts/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>
/freebsd-12-stable/contrib/tcpdump/
H A Dgmt2local.c43 register int dt, dir; local
52 dt = (loc->tm_hour - gmt->tm_hour) * 60 * 60 +
63 dt += dir * 24 * 60 * 60;
65 return (dt);
/freebsd-12-stable/sys/gnu/dts/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>
H A Dr8a7743-cpg-mssr.h8 #include <dt-bindings/clock/renesas-cpg-mssr.h>
H A Dr8a7744-cpg-mssr.h8 #include <dt-bindings/clock/renesas-cpg-mssr.h>
H A Dr8a7745-cpg-mssr.h8 #include <dt-bindings/clock/renesas-cpg-mssr.h>
H A Dr8a77470-cpg-mssr.h8 #include <dt-bindings/clock/renesas-cpg-mssr.h>
H A Dr8a7791-cpg-mssr.h9 #include <dt-bindings/clock/renesas-cpg-mssr.h>
/freebsd-12-stable/lib/msun/src/
H A Ds_cbrtl.c39 double dr, dt, dx; local
98 dt = ft;
99 dr = dt * dt * dt;
100 dt = dt * (dx + dx + dr) / (dx + dr + dr);
103 dr = dt * dt * dt;
[all...]
/freebsd-12-stable/usr.sbin/pw/
H A Dpsdate.c165 parse_date(time_t dt, char const * str) argument
172 if (dt == 0)
173 dt = time(NULL);
179 dt = strtol(str, &p, 0);
185 dt += (val * 3600L);
190 dt += (val * 60L);
194 dt += val;
198 dt += (val * 86400L);
202 dt += (val * 604800L);
206 T = localtime(&dt);
[all...]
H A Dpsdate.h39 time_t parse_date(time_t dt, char const * str);
/freebsd-12-stable/lib/libc/tests/gen/
H A Dglob2_test.c54 double dt; local
97 dt = t2.tv_sec + (double)t2.tv_nsec/1e9;
98 dt /= mul;
100 ATF_CHECK_MSG(dt < 1, "glob(3) took far too long: %d %.9f", i,
101 dt);
103 if (dt >= 0.0001)
/freebsd-12-stable/sys/contrib/zstd/lib/common/
H A Dfse_decompress.c88 void FSE_freeDTable (FSE_DTable* dt) argument
90 free(dt);
93 size_t FSE_buildDTable(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
95 void* const tdPtr = dt+1; /* because *dt is unsigned, 32-bits aligned on 32-bits */
121 memcpy(dt, &DTableH, sizeof(DTableH));
156 size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) argument
158 void* ptr = dt;
160 void* dPtr = dt + 1;
174 size_t FSE_buildDTable_raw (FSE_DTable* dt, unsigne argument
200 FSE_decompress_usingDTable_generic( void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const FSE_DTable* dt, const unsigned fast) argument
263 FSE_decompress_usingDTable(void* dst, size_t originalSize, const void* cSrc, size_t cSrcSize, const FSE_DTable* dt) argument
303 DTable_max_t dt; /* Static analyzer seems unable to understand this table will be properly initialized later */ local
[all...]
/freebsd-12-stable/tests/sys/cddl/zfs/tests/cli_root/zpool_import/
H A Dzpool_import_010_pos.ksh65 typeset dt
66 for dt in $poolE $poolD $poolC $poolB $poolA; do
67 destroy_pool $dt
105 for dt in $poolA $poolB $poolC $poolD $poolE; do
106 log_must datasetexists $dt
/freebsd-12-stable/tools/regression/sockets/unix_cmsg/
H A Duc_check_time.c50 struct timeval ct, dt; local
54 timersub(&ct, bt, &dt);
55 if (!timercmp(&dt, &max_diff_tv, <))
/freebsd-12-stable/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));
/freebsd-12-stable/usr.bin/ncal/
H A Dncal.c75 date dt; /* Last day of Julian calendar */ member in struct:djswitch
197 date dt; local
242 nswitch = ndaysj(&dftswitch->dt);
244 nswitch = ndaysj(&p->dt);
341 nswitch = ndaysj(&(p->dt));
478 dt.y = strtol(flag_highlightdate, NULL, 10);
479 dt.m = strtol(flag_highlightdate + 5, NULL, 10);
480 dt.d = strtol(flag_highlightdate + 8, NULL, 10);
487 dt.y = tm1->tm_year + 1900;
488 dt
544 date dt; local
770 date dt; /* handy date */ local
861 date dt; /* handy date */ local
983 date dt; local
[all...]
/freebsd-12-stable/contrib/ntp/include/
H A Dntp_calgps.h114 gpsntp_from_daytime1_ex(TcCivilDate *dt, l_fp fofs, l_fp pivot, int/*BOOL*/ warp);
117 gpsntp_from_daytime1(TcCivilDate *dt, l_fp fofs, l_fp pivot) { argument
118 return gpsntp_from_daytime1_ex(dt, fofs, pivot, TRUE);
122 gpsntp_from_daytime2_ex(TcCivilDate *dt, l_fp fofs, TcNtpDatum *pivot, int/*BOOL*/ warp);
125 gpsntp_from_daytime2(TcCivilDate *dt, l_fp fofs, TcNtpDatum *pivot) { argument
126 return gpsntp_from_daytime2_ex(dt, fofs, pivot, TRUE);
/freebsd-12-stable/sys/sparc64/sparc64/
H A Diommu.c703 iommu_dvma_vallocseg(bus_dma_tag_t dt, struct iommu_state *is, bus_dmamap_t map, argument
714 while ((error = iommu_dvma_valloc(dt, is, map,
749 iommu_dvmamem_alloc(bus_dma_tag_t dt, void **vaddr, int flags, argument
752 struct iommu_state *is = dt->dt_cookie;
759 if ((error = sparc64_dma_alloc_map(dt, mapp)) != 0)
769 if ((*vaddr = malloc(dt->dt_maxsize, M_IOMMU, mflags)) == NULL) {
771 sparc64_dma_free_map(dt, *mapp);
780 iommu_dvma_valloc(dt, is, *mapp, IOMMU_SIZE_ROUNDUP(dt->dt_maxsize));
788 iommu_dvmamem_free(bus_dma_tag_t dt, voi argument
798 iommu_dvmamap_create(bus_dma_tag_t dt, int flags, bus_dmamap_t *mapp) argument
841 iommu_dvmamap_destroy(bus_dma_tag_t dt, bus_dmamap_t map) argument
855 iommu_dvmamap_load_phys(bus_dma_tag_t dt, bus_dmamap_t map, vm_paddr_t buf, bus_size_t buflen, int flags, bus_dma_segment_t *segs, int *segp) argument
970 iommu_dvmamap_load_buffer(bus_dma_tag_t dt, bus_dmamap_t map, void *buf, bus_size_t buflen, pmap_t pmap, int flags, bus_dma_segment_t *segs, int *segp) argument
1096 iommu_dvmamap_complete(bus_dma_tag_t dt, bus_dmamap_t map, bus_dma_segment_t *segs, int nsegs, int error) argument
1116 iommu_dvmamap_unload(bus_dma_tag_t dt, bus_dmamap_t map) argument
1130 iommu_dvmamap_sync(bus_dma_tag_t dt, bus_dmamap_t map, bus_dmasync_op_t op) argument
[all...]

Completed in 380 milliseconds

12345678