HomeSort by: relevance | last modified time | path
    Searched refs:absolute (Results 1 - 25 of 296) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/arch/sparc64/gen/
fabs.S 47 /* fabs - floating absolute value */
51 fabss %f0, %f0 ! return absolute value
  /src/external/bsd/ntp/dist/libntp/lib/isc/win32/
time.c 49 *** Absolute Times
96 i1.LowPart = t->absolute.dwLowDateTime;
97 i1.HighPart = t->absolute.dwHighDateTime;
102 t->absolute.dwLowDateTime = i1.LowPart;
103 t->absolute.dwHighDateTime = i1.HighPart;
110 t->absolute.dwLowDateTime = 0;
111 t->absolute.dwHighDateTime = 0;
118 if (t->absolute.dwLowDateTime == 0 &&
119 t->absolute.dwHighDateTime == 0)
129 GetSystemTimeAsFileTime(&t->absolute);
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/m4/
gcc_support.m4 10 # Find absolute top level source directory and set phobos_cv_abs_srcdir
12 dnl Not sure if 100% portable, but we need the absolute dir as the _LT_COMPILER_C_O
14 AC_CACHE_CHECK([[for absolute libphobos source path]],
19 [AC_MSG_ERROR([[can't find absolute libphobos source path]])])
  /src/usr.sbin/puffs/rump_lfs/
Makefile 16 CWARNFLAGS.clang+= -Wno-error=absolute-value
  /src/lib/libc/arch/mips/gen/
fabs.S 57 * Return absolute value of x.
61 abs.d $f0, $f12 # compute absolute value of x
  /src/lib/libc/arch/sparc/gen/
fabs.S 47 /* fabs - floating absolute value */
55 fabss %f0, %f0 ! return absolute value
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
macro-source-path.exp 77 test [file normalize $testfile.c] absolute-cwd
79 test [file normalize ../other/$testfile.c] absolute-other
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
macro-source-path.exp 77 test [file normalize $testfile.c] absolute-cwd
79 test [file normalize ../other/$testfile.c] absolute-other
  /src/external/bsd/elftosb/dist/common/
SearchPath.cpp 38 //! The \a base path argument can be either a relative or absolute path. If the path
40 //! file is located or all search paths are exhausted. If the \a base is absolute,
57 bool absolute = isAbsolute(base); local
59 // Try cwd first if requested. Same process applies to absolute paths.
60 if (absolute || searchCwd)
71 // If the base path is absolute and the previous test failed, then we don't go any further.
72 if (absolute)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
macro-source-path.exp 197 do_test gcc11-ld238-dw5-absolute-cwd 5 "/tmp/cwd/test.c" 1 {
215 do_test gcc11-ld238-dw5-absolute-other 5 "/tmp/other/test.c" 1 {
248 do_test gcc11-ld238-dw4-absolute-cwd 4 "/tmp/cwd/test.c" 1 {
262 do_test gcc11-ld238-dw4-absolute-other 4 "/tmp/other/test.c" 1 {
295 do_test clang14-dw5-absolute-cwd 5 "/tmp/cwd/test.c" 1 {
310 do_test clang14-dw5-absolute-other 5 "/tmp/other/test.c" 1 {
345 do_test clang14-dw4-absolute-cwd 4 "/tmp/cwd/test.c" 1 {
358 do_test clang14-dw4-absolute-other 4 "/tmp/other/test.c" 1 {
389 do_test gcc11-ld234-dw5-absolute-cwd 3 "/tmp/cwd/test.c" 1 {
403 do_test gcc11-ld234-dw5-absolute-other 3 "/tmp/other/test.c" 1
    [all...]
dw2-dir-file-name.exp 83 if {[file pathtype $srcabsdir] != "absolute"} {
84 untested "objdir pathtype is not absolute"
214 # IFSOME can be optionally _same or _different if >= 2 absolute directories are
225 } elseif { $compdir == "absolute" } {
235 } elseif { $ldir == "absolute" } {
245 } elseif { $file == "absolute" } {
253 if { $file == "absolute" } {
254 if { $ldir == "absolute" } {
257 if { $compdir == "absolute" } {
260 } elseif { $ldir == "absolute" } {
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/
macro-source-path.exp 197 do_test gcc11-ld238-dw5-absolute-cwd 5 "/tmp/cwd/test.c" 1 {
215 do_test gcc11-ld238-dw5-absolute-other 5 "/tmp/other/test.c" 1 {
248 do_test gcc11-ld238-dw4-absolute-cwd 4 "/tmp/cwd/test.c" 1 {
262 do_test gcc11-ld238-dw4-absolute-other 4 "/tmp/other/test.c" 1 {
295 do_test clang14-dw5-absolute-cwd 5 "/tmp/cwd/test.c" 1 {
310 do_test clang14-dw5-absolute-other 5 "/tmp/other/test.c" 1 {
345 do_test clang14-dw4-absolute-cwd 4 "/tmp/cwd/test.c" 1 {
358 do_test clang14-dw4-absolute-other 4 "/tmp/other/test.c" 1 {
389 do_test gcc11-ld234-dw5-absolute-cwd 3 "/tmp/cwd/test.c" 1 {
403 do_test gcc11-ld234-dw5-absolute-other 3 "/tmp/other/test.c" 1
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
filename.h 23 static bool absolute(const char *name);
filename.d 112 * Determine if path is absolute.
116 * true if absolute path name.
118 extern (C++) static bool absolute(const(char)* name) pure @nogc
120 return absolute(name.toDString);
124 extern (D) static bool absolute(const(char)[] name) pure @nogc
146 assert(absolute("/"[]) == true);
147 assert(absolute(""[]) == false);
151 assert(absolute(r"\"[]) == true);
152 assert(absolute(r"\\"[]) == true);
153 assert(absolute(r"c:"[]) == true)
    [all...]
  /src/usr.bin/make/unit-tests/
varmod-to-abs.mk 3 # Tests for the :tA variable modifier, which returns the absolute path for
9 # into resolving completely unrelated absolute paths by defining a global
varname-dot-parsedir.mk 14 # The .PARSEDIR may be absolute or relative, therefore there is not much that
42 .PARSEDIR= /fake-absolute-path
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
tls-sepdebug.exp 19 # accessible using both absolute and relative settings of
75 name { absolute relative } {
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
tls-sepdebug.exp 19 # accessible using both absolute and relative settings of
70 name { absolute relative } {
  /src/external/mpl/bind/dist/lib/dns/
name.c 72 name->attributes.absolute = false; \
173 return name->attributes.absolute;
193 REQUIRE(name->attributes.absolute);
248 REQUIRE(name->attributes.absolute);
369 * other absolute. If both names are relative, then to be meaningfully
379 * Either name1 is absolute and name2 is absolute, or neither is.
381 REQUIRE((name1->attributes.absolute) == (name2->attributes.absolute));
464 * other absolute. If both names are relative, then to be meaningfull
1373 bool absolute; local
1662 bool absolute = false; local
    [all...]
  /src/external/mit/libcbor/dist/docs/doxygen/search/
search.css 20 position:absolute;
30 position:absolute;
45 position:absolute;
64 position:absolute;
75 position: absolute;
100 position: absolute;
163 position: absolute;
  /src/external/bsd/kyua-testers/dist/
fs_test.c 176 // SunOS's mount(8) requires paths to be absolute. To err on the side of
177 // caution, let's make it absolute in all cases.
486 char* absolute; local
488 "/this/is/absolute", &absolute)));
489 ATF_REQUIRE_STREQ("/this/is/absolute", absolute);
490 free(absolute);
498 char* absolute; local
503 error = kyua_fs_make_absolute("bin/foobar", &absolute);
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
instance.py 71 self.directory = Path(identifier).absolute()
83 self._rndc_conf = Path("../_common/rndc.conf").absolute()
  /src/external/bsd/ntp/dist/libntp/lib/isc/win32/include/isc/
time.h 73 *** Absolute Times
84 FILETIME absolute; member in struct:isc_time
126 * Set 't' to the current absolute time.
145 * Set *t to the current absolute time + i.
  /src/external/gpl3/binutils/dist/gprof/
vax.c 51 immediate, absolute, byterel, bytereldef, wordrel, wordreldef, enumerator in enum:opermodes
102 return usesreg != PC ? autoincdef : absolute;
158 case absolute:
159 return "absolute";
197 case absolute:
  /src/external/gpl3/binutils.old/dist/gprof/
vax.c 51 immediate, absolute, byterel, bytereldef, wordrel, wordreldef, enumerator in enum:opermodes
102 return usesreg != PC ? autoincdef : absolute;
158 case absolute:
159 return "absolute";
197 case absolute:

Completed in 35 milliseconds

1 2 3 4 5 6 7 8 91011>>