Home
last modified time | relevance | path

Searched refs:absolute (Results 1 – 25 of 260) sorted by relevance

1234567891011

/freebsd-13-stable/contrib/ntp/libntp/lib/isc/win32/
HDtime.c94 i1.LowPart = t->absolute.dwLowDateTime; in isc_time_set()
95 i1.HighPart = t->absolute.dwHighDateTime; in isc_time_set()
100 t->absolute.dwLowDateTime = i1.LowPart; in isc_time_set()
101 t->absolute.dwHighDateTime = i1.HighPart; in isc_time_set()
108 t->absolute.dwLowDateTime = 0; in isc_time_settoepoch()
109 t->absolute.dwHighDateTime = 0; in isc_time_settoepoch()
116 if (t->absolute.dwLowDateTime == 0 && in isc_time_isepoch()
117 t->absolute.dwHighDateTime == 0) in isc_time_isepoch()
127 GetSystemTimeAsFileTime(&t->absolute); in isc_time_now()
139 GetSystemTimeAsFileTime(&t->absolute); in isc_time_nowplusinterval()
[all …]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/
HDtarget.c98 const char *absolute; in svn_path_condense_targets() local
102 absolute = apr_pstrdup(pool, rel); /* ### TODO: avoid pool dup? */ in svn_path_condense_targets()
104 SVN_ERR(svn_dirent_get_absolute(&absolute, rel, pool)); in svn_path_condense_targets()
106 APR_ARRAY_PUSH(abs_targets, const char *) = absolute; in svn_path_condense_targets()
119 *pcommon = svn_uri_get_longest_ancestor(*pcommon, absolute, pool); in svn_path_condense_targets()
121 *pcommon = svn_dirent_get_longest_ancestor(*pcommon, absolute, in svn_path_condense_targets()
/freebsd-13-stable/sys/contrib/device-tree/Bindings/input/touchscreen/
HDtsc2007.txt15 - ti,fuzzx: specifies the absolute input fuzz x value.
18 - ti,fuzzy: specifies the absolute input fuzz y value.
19 - ti,fuzzz: specifies the absolute input fuzz z value.
HDchipone_icn8318.txt15 - touchscreen-fuzz-x : horizontal noise value of the absolute input
17 - touchscreen-fuzz-y : vertical noise value of the absolute input
Dbrcm,iproc-touchscreen.txt55 - touchscreen-fuzz-x: horizontal noise value of the absolute input
57 - touchscreen-fuzz-y: vertical noise value of the absolute input
HDcyttsp.txt20 - touchscreen-fuzz-x : horizontal noise value of the absolute input device
22 - touchscreen-fuzz-y : vertical noise value of the absolute input device
Dst,stmfts.txt7 The driver supports also hovering as an absolute single touch event with x, y, z
/freebsd-13-stable/sbin/pfctl/tests/files/
HDpf0100.in13 anchor "/1/2/3" # absolute multicomponent path
14 anchor "/relative" # absolute path
/freebsd-13-stable/sys/contrib/device-tree/Bindings/input/
HDrotary-encoder.txt10 encoder. Only relevant for absolute axis. Defaults to 24 which is a
13 absolute one. Relative axis will only generate +1/-1 events on the input
16 greater than the specified steps or smaller than 0. For absolute axis only.
/freebsd-13-stable/contrib/libpcap/cmake/Modules/
HDFindAirPcap.cmake9 # AirPcap_INCLUDE_DIR - absolute path to the directory containing airpcap.h.
11 # AirPcap_LIBRARY - relative or absolute path to the AirPcap library to
12 # link with. An absolute path is will be used if the
HDFindPacket.cmake31 # Packet_INCLUDE_DIR - absolute path to the directory containing Packet32.h.
33 # Packet_LIBRARY - relative or absolute path to the Packet library to
34 # link with. An absolute path is will be used if the
/freebsd-13-stable/sys/contrib/device-tree/Bindings/opp/
HDti-omap5-opp-supply.txt36 - ti,absolute-max-voltage-uv: absolute maximum voltage for the OPP supply.
62 ti,absolute-max-voltage-uv = <1500000>;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
HDPerfSupportPlugin.cpp33 bool absolute) { in createX64EHFrameHeader() argument
36 if (absolute) { in createX64EHFrameHeader()
55 (absolute ? sizeof(uint64_t) : sizeof(EHFrameRelocation))); in createX64EHFrameHeader()
69 if (absolute) { in createX64EHFrameHeader()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
HDFileSystem.cpp235 SmallString<128> absolute(resolved.begin(), resolved.end()); in Resolve() local
236 MakeAbsolute(absolute); in Resolve()
239 if (Exists(absolute)) { in Resolve()
240 path.append(absolute.begin(), absolute.end()); in Resolve()
/freebsd-13-stable/contrib/ldns-host/
HDldns-host.c787 bool absolute, bool close_tcp) { in search() argument
791 if (absolute && query(res, domain, pkt, close_tcp)) in search()
808 if (!absolute && query(res, domain, pkt, close_tcp)) in search()
871 dosearch(ldns_resolver *res, ldns_rdf *domain, bool absolute) { in dosearch() argument
875 dname = search(res, domain, &pkt, absolute, true); in dosearch()
884 dozonetransfer(ldns_resolver *res, ldns_rdf *domain, bool absolute) { in dozonetransfer() argument
895 dname = search(res, domain, &pkt, absolute, false); in dozonetransfer()
944 dosoa(ldns_resolver *res, ldns_rdf *domain, bool absolute) { in dosoa() argument
951 if ((dname = search(res, domain, &pkt, absolute, true)) == NULL) in dosoa()
/freebsd-13-stable/crypto/openssl/doc/man3/
HDBN_cmp.pod23 absolute values.
32 I<a> E<gt> I<b>. BN_ucmp() is the same using the absolute values
/freebsd-13-stable/lib/libc/mips/gen/
HDfabs.S55 abs.d $f0, $f12 # compute absolute value of x
/freebsd-13-stable/contrib/bmake/unit-tests/
HDvarname-dot-parsedir.mk33 .PARSEDIR= /fake-absolute-path
/freebsd-13-stable/tools/build/
HDmake.py191 objdir_prefix = Path(MAKEOBJDIRPREFIX).absolute()
192 source_root = Path(__file__).absolute().parent.parent.parent
/freebsd-13-stable/contrib/ntp/libntp/lib/isc/win32/include/isc/
HDtime.h82 FILETIME absolute; member
/freebsd-13-stable/contrib/kyua/utils/fs/
HDpath_test.cpp176 const std::string absolute = path("ls").to_absolute().str(); in ATF_TEST_CASE_BODY() local
183 ATF_REQUIRE(absolute.find("/bin/ls") != std::string::npos); in ATF_TEST_CASE_BODY()
/freebsd-13-stable/kerberos5/
HDMakefile.inc11 CWARNFLAGS.clang+= -Wno-absolute-value
/freebsd-13-stable/sys/crypto/openssl/arm/
HDsha512-armv4.S42 @ Improve NEON performance by 12% on Snapdragon S4. In absolute
/freebsd-13-stable/contrib/ntp/html/drivers/scripts/
HDstyle.css29 position: absolute;
/freebsd-13-stable/contrib/ntp/html/scripts/
HDstyle.css29 position: absolute;

1234567891011