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

1 2

  /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/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/bsd/kyua-cli/dist/utils/fs/
path_test.cpp 176 const std::string absolute = path("ls").to_absolute().str(); local
178 // /usr/bin. Doing an explicit match of 'absolute' to /bin/ls fails in such
183 ATF_REQUIRE(absolute.find("/bin/ls") != std::string::npos);
  /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/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:
  /src/external/mpl/bind/dist/lib/dns/include/dns/
name.h 105 bool absolute : 1; /*%< Used by name.c */ member in struct:dns_name::dns_name_attrs
189 .attributes = { .readonly = true, .absolute = true }, \
257 name->attributes.absolute = false;
274 * the absolute flag.
425 * other absolute. If both names are relative, then to be meaningfully
440 *\li Either name1 is absolute and name2 is absolute, or neither is.
467 * other absolute. If both names are relative, then to be meaningfully
476 * \li Either name1 is absolute and name2 is absolute, or neither is
    [all...]
rbt.h 88 bool absolute : 1; /*%< node with absolute DNS name */ member in struct:dns_rbtnode
189 * be absolute (typically just "."), it will will be made into a relative name
  /src/external/bsd/nsd/dist/
dname.c 406 int absolute = 1; local
418 absolute = 0;
441 if (absolute) {
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/
ops.cc 73 fs::absolute(const path& p, const path& base) function in class:fs
82 abs = base.is_absolute() ? base : absolute(base);
125 const path pa = absolute(p, base);
1188 path dir = absolute(p);
1333 return absolute(p, base);
1340 return absolute(p, base);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/
fs_ops.cc 70 fs::absolute(const path& p) function in class:fs
73 path ret = absolute(p, ec);
75 _GLIBCXX_THROW_OR_ABORT(filesystem_error("cannot make absolute path", p,
81 fs::absolute(const path& p, error_code& ec) function in class:fs
166 const path pa = absolute(p.lexically_normal(), ec);
168 const path pa = absolute(p, ec);
1469 path dir = absolute(p);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/
ops.cc 72 fs::absolute(const path& p, const path& base) function in class:fs
81 abs = base.is_absolute() ? base : absolute(base);
124 const path pa = absolute(p, base);
1173 path dir = absolute(p);
1318 return absolute(p, base);
1325 return absolute(p, base);
std-ops.cc 71 fs::absolute(const path& p) function in class:fs
75 path ret = absolute(p, ec);
77 _GLIBCXX_THROW_OR_ABORT(filesystem_error("cannot make absolute path", p,
82 _GLIBCXX_THROW_OR_ABORT(filesystem_error("cannot make absolute path", p,
89 fs::absolute(const path& p, error_code& ec) function in class:fs
145 const path pa = absolute(p, ec);
  /src/external/mpl/bind/dist/bin/tests/system/dlzexternal/driver/
driver.c 278 /* Ensure zone name is absolute */
341 char absolute[1024]; local
394 snprintf(absolute, sizeof(absolute), "%s.", name);
395 if (strcasecmp(state->zone_name, absolute) == 0) {
756 char absolute[1024]; local
799 snprintf(absolute, sizeof(absolute), "%s.", name);
800 name = absolute;
  /src/external/gpl3/binutils/dist/gas/config/
tc-m32c.c 215 enum indirect_type {none, relative, absolute} ;
229 indirection[operand] = absolute;
267 else if (s[0] == ']' && indirection[operand] == absolute)
893 /* Absolute relocs for 8-bit fields. */
918 /* Absolute relocs for 16-bit fields. */
942 /* Absolute relocs for 24-bit fields. */
957 /* Absolute relocs for 32-bit fields. */
213 enum indirect_type {none, relative, absolute} ; enumerator in enum:indirect_type
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-m32c.c 215 enum indirect_type {none, relative, absolute} ;
229 indirection[operand] = absolute;
267 else if (s[0] == ']' && indirection[operand] == absolute)
893 /* Absolute relocs for 8-bit fields. */
918 /* Absolute relocs for 16-bit fields. */
942 /* Absolute relocs for 24-bit fields. */
957 /* Absolute relocs for 32-bit fields. */
213 enum indirect_type {none, relative, absolute} ; enumerator in enum:indirect_type
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
fs_ops.cc 71 fs::absolute(const path& p) function in class:fs
74 path ret = absolute(p, ec);
76 _GLIBCXX_THROW_OR_ABORT(filesystem_error("cannot make absolute path", p,
82 fs::absolute(const path& p, error_code& ec) function in class:fs
166 const path pa = absolute(p.lexically_normal(), ec);
168 const path pa = absolute(p, ec);
1500 path dir = absolute(p);
  /src/external/gpl3/gdb.old/dist/gdb/
rs6000-aix-tdep.c 942 int absolute; local
945 absolute = (int) ((instr >> 1) & 1);
951 if (absolute)
959 if (absolute)
  /src/external/gpl3/gdb/dist/gdb/
rs6000-aix-tdep.c 943 int absolute; local
946 absolute = (int) ((instr >> 1) & 1);
952 if (absolute)
960 if (absolute)
  /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/mpl/dhcp/bind/dist/lib/dns/
name.c 507 * other absolute. If both names are relative, then to be meaningfully
517 * Either name1 is absolute and name2 is absolute, or neither is.
642 * other absolute. If both names are relative, then to be meaningfully
662 * other absolute. If both names are relative, then to be meaningfully
670 * Either name1 is absolute and name2 is absolute, or neither is.
738 * other absolute. If both names are relative, then to be meaningfully
746 * Either name1 is absolute and name2 is absolute, or neither is
1711 bool absolute; local
2060 bool absolute = false; local
    [all...]
  /src/libexec/httpd/
bozohttpd.c 993 * chosen characters for absolute redirects
996 bozo_escape_rfc3986(bozohttpd_t *httpd, const char *url, int absolute)
1033 if (absolute)
1059 handle_redirect(bozo_httpreq_t *request, const char *url, int absolute)
1069 int absproto = 0; /* absolute redirect provides own schema */
1078 if (request->hr_user && !absolute) {
1085 if (absolute) {
1090 * absolute redirect may specify own protocol i.e. to redirect
1118 if (absolute) {
1132 url = bozo_escape_rfc3986(httpd, url, absolute);
1463 int rv, absolute; local
    [all...]
  /src/sbin/nvmectl/
bignum.c 1599 absolute(mp_int * a, mp_int * b) function
4330 if ((err = absolute(X, &tmpX)) != MP_OKAY) {
5130 return absolute(b, c);
5133 return absolute(a, c);
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
bignum.c 1603 absolute(mp_int * a, mp_int * b) function
4353 if ((err = absolute(X, &tmpX)) != MP_OKAY) {
5152 return absolute(b, c);
5155 return absolute(a, c);
  /src/external/gpl2/groff/dist/src/roff/troff/
env.cpp 2907 hunits absolute; local
2913 tab_type t = distance_to_next_tab(&d, &absolute);
2918 add_node(make_tag("tab L", absolute.to_units()));
2922 add_node(make_tag("tab R", absolute.to_units()));
2925 add_node(make_tag("tab C", absolute.to_units()));

Completed in 45 milliseconds

1 2