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

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
bit.h 24 // - It requires trivially-constructible To, to avoid UB in the implementation.
26 typename To, typename From,
27 typename = std::enable_if_t<sizeof(To) == sizeof(From)>
31 typename = std::enable_if_t<std::is_trivially_constructible<To>::value>
34 typename = std::enable_if_t<__is_trivially_constructible(To)>
41 typename = std::enable_if_t<std::is_trivially_copyable<To>::value>,
45 typename = std::enable_if_t<__is_trivially_copyable(To)>,
49 // llvm/Support/type_traits.h's is_trivially_copyable we don't want to
55 inline To bit_cast(const From &from) noexcept
56 To to; variable
    [all...]
  /src/external/bsd/nsd/dist/compat/
memmove.c 17 uint8_t* to = (uint8_t*) dest; local
19 if (from == to || n == 0)
21 if (to > from && to-from < (int)n) {
22 /* to overlaps with from */
24 /* <to........> */
25 /* copy in reverse, to avoid overwriting from */
28 to[i] = from[i];
31 if (from > to && from-to < (int)n)
    [all...]
  /src/external/bsd/unbound/dist/compat/
memmove.c 17 uint8_t* to = (uint8_t*) dest; local
19 if (from == to || n == 0)
21 if (to > from && to-from < (int)n) {
22 /* to overlaps with from */
24 /* <to........> */
25 /* copy in reverse, to avoid overwriting from */
28 to[i] = from[i];
31 if (from > to && from-to < (int)n)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/guile/lib/gdb/
experimental.scm 28 (define-public with-gdb-output-to-port (@@ (gdb) %with-gdb-output-to-port))
29 (define-public with-gdb-error-to-port (@@ (gdb) %with-gdb-error-to-port))
31 (define-public (with-gdb-output-to-string thunk)
34 (lambda (p) (with-gdb-output-to-port p thunk))))
  /src/external/gpl3/gdb/dist/gdb/guile/lib/gdb/
experimental.scm 28 (define-public with-gdb-output-to-port (@@ (gdb) %with-gdb-output-to-port))
29 (define-public with-gdb-error-to-port (@@ (gdb) %with-gdb-error-to-port))
31 (define-public (with-gdb-output-to-string thunk)
34 (lambda (p) (with-gdb-output-to-port p thunk))))
  /src/games/warp/
play.c 37 OBJECT *to; local
45 sleep(1); /* allow buffers to empty */
156 to = occupant[(curobj->posy+curobj->vely+YSIZE00)%YSIZE]
158 if (to && !to->vely && !to->velx) {
  /src/sys/compat/common/
if_spppsubr50.c 10 * Heavily revamped to conform to RFC 1661.
25 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
111 struct spppidletimeout50 *to = (struct spppidletimeout50 *)data; local
114 to->idle_seconds = (uint32_t)sp->pp_idle_timeout;
120 struct spppidletimeout50 *to = (struct spppidletimeout50 *)data; local
123 sp->pp_idle_timeout = (time_t)to->idle_seconds;
  /src/sys/stand/
copy.c 16 * may be used to endorse or promote products derived from this software
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
49 * Copy from from to to. Intended for use in system installation.
54 register int from, to, record, rcc, wcc, bsize = BSIZE; local
58 to = getfile("To", 1);
81 if ((wcc = write(to, buf, rcc)) < 0) {
  /src/external/gpl3/gcc/dist/libgcc/
fixed-obj.mk 2 # $(iter-items). On each inclusion, we advance $o to the next element.
3 # $(iter-labels) and $(iter-from) and $(iter-to) are also advanced.
14 $o-to := $(firstword $(iter-to))
15 iter-to := $(wordlist 2,$(words $(iter-to)),$(iter-to))
17 ifeq ($($o-from),$($o-to))
20 $o-opt := -DFROM_$($o-from) -DTO_$($o-to)
  /src/external/gpl3/gcc.old/dist/libgcc/
fixed-obj.mk 2 # $(iter-items). On each inclusion, we advance $o to the next element.
3 # $(iter-labels) and $(iter-from) and $(iter-to) are also advanced.
14 $o-to := $(firstword $(iter-to))
15 iter-to := $(wordlist 2,$(words $(iter-to)),$(iter-to))
17 ifeq ($($o-from),$($o-to))
20 $o-opt := -DFROM_$($o-from) -DTO_$($o-to)
  /src/lib/libc/db/recno/
rec_delete.c 7 * This code is derived from software contributed to Berkeley by
19 * may be used to endorse or promote products derived from this software
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
59 * dbp: pointer to access method
60 * key: key to delete
114 * nrec: record to delete
146 * index: index on current page to delete
158 void *to; local
164 * them to be added being deleted. Pages made empty by deletion ar
    [all...]
  /src/tests/kernel/kqueue/read/
t_fifo.c 7 * This code is derived from software contributed to The NetBSD Foundation
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
75 const struct timespec to = { 0, 0 }; local
98 /* We expect the FIFO to not be readable. */
99 ATF_REQUIRE(kevent(kq, NULL, 0, event, 1, &to) == 0);
104 /* We expect the FIFO to be readable. */
105 ATF_REQUIRE(kevent(kq, NULL, 0, event, 1, &to) == 1);
113 /* We expect the FIFO to not be readable. */
114 ATF_REQUIRE(kevent(kq, NULL, 0, event, 1, &to) == 0);
    [all...]
  /src/tests/kernel/kqueue/write/
t_fifo.c 7 * This code is derived from software contributed to The NetBSD Foundation
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
75 const struct timespec to = { 0, 0 }; local
98 /* We expect the FIFO to be writable. */
99 ATF_REQUIRE(kevent(kq, NULL, 0, event, 1, &to) == 1);
105 * defined as insufficient buffer space to hold the
113 /* We expect the FIFO to no longer be writable. */
114 ATF_REQUIRE(kevent(kq, NULL, 0, event, 1, &to) == 0);
124 ATF_REQUIRE(kevent(kq, NULL, 0, event, 1, &to) == 0)
    [all...]
  /src/tests/lib/libpthread/
t_rwlock.c 18 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
43 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
71 struct timespec to; variable in typeref:struct:timespec
100 ATF_REQUIRE_EQ_MSG(clock_gettime(CLOCK_REALTIME, &to), 0,
102 to.tv_sec++;
103 error = pthread_rwlock_timedwrlock(&lk, &to);
109 ATF_REQUIRE_EQ_MSG(clock_gettime(CLOCK_REALTIME, &to), 0,
111 to.tv_sec++
    [all...]
  /src/crypto/external/bsd/heimdal/dist/admin/
copy.c 20 * may be used to endorse or promote products derived from this software
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
59 const char *to = argv[1]; local
67 ret = krb5_kt_resolve (context, to, &dst_keytab);
70 krb5_warn (context, ret, "resolving dst keytab `%s'", to);
81 fprintf(stderr, "copying %s to %s\n", from, to);
103 /* this entry is already in the new keytab, so no need to
118 to, name_str, etype_str, entry.vno)
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/clang-rename/
clang-rename.el 7 ;; To install clang-rename.el make sure the directory of this file is in your
12 ;; to your .emacs configuration.
21 "Path to clang-rename executable."
27 "Rename all instances of the symbol at point to NEW-NAME using clang-rename."
39 (clang-rename--bufferpos-to-filepos
43 ;; available, to resolve the inconsistency.
54 ;; Failure; append exit code to output buffer and display it.
64 (defalias 'clang-rename--bufferpos-to-filepos
65 (if (fboundp 'bufferpos-to-filepos)
66 'bufferpos-to-filepo
    [all...]
  /src/external/bsd/ipf/dist/ipsend/
sbpf.c 68 struct timeval to; local
131 to.tv_sec = 1;
132 to.tv_usec = 0;
133 if (ioctl(fd, BIOCSRTIMEOUT, (caddr_t)&to) == -1)
  /src/external/bsd/ntp/dist/util/
pps-api.c 5 Try to run this program to see what the PPS-API finds. You give it the
6 device as argument and you may have to modify the pp.mode = BLA assignment.
59 struct timespec to; local
84 to.tv_nsec = 0;
85 to.tv_sec = 0;
86 i = time_pps_fetch(ph, PPS_TSFMT_TSPEC, &pi, &to);
  /src/external/bsd/nvi/dist/ex/
ex_join.c 43 db_recno_t from, to; local
52 to = cmdp->addr2.lno;
54 /* Check for no lines to join. */
56 msgq(sp, M_ERR, "131|No following lines to join");
64 * historically, to other counts for other commands.
71 from = cmdp->addr1.lno, to = cmdp->addr2.lno; from <= to; ++from) {
104 * One change -- add ? and ! to the list of characters for
156 * Historic practice for vi was to put the cursor at the first
159 * last character of the line if joined to an empty line. I
    [all...]
  /src/external/bsd/nvi/dist/motif_l/
m_util.c 80 /* we may or may not have to free the children */
96 * If the X resource does not exist, no change is made to the value
104 XrmValue from, to;
118 to.addr = resources[i].value;
123 to.size = sizeof(int);
128 /* String to Boolean */
129 to.size = sizeof(Boolean);
134 /* String to Font structure */
135 to.size = sizeof(XFontStruct *);
140 /* String to Pixel backup algorithm *
102 XrmValue from, to; local
    [all...]
  /src/external/gpl2/groff/dist/src/preproc/eqn/
limit.cpp 20 with groff; see the file COPYING. If not, write to the Free Software
30 box *to; member in class:limit_box
46 : p(pp), from(qq), to(rr)
55 delete to;
71 if (to != 0) {
72 int r = to->compute_metrics(script_style(style));
76 mark_uid = to->uid;
95 if (to != 0)
97 p->uid, to->uid);
105 if (to != 0
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
tree-hasher.h 26 tree to; member in struct:int_tree_map
39 return v.to == reinterpret_cast<tree> (1);
41 static void mark_deleted (value_type &v) { v.to = reinterpret_cast<tree> (0x1); }
42 static bool is_empty (const value_type &v) { return v.to == NULL; }
44 static void mark_empty (value_type &v) { v.to = NULL; }
  /src/external/gpl3/gcc.old/dist/gcc/
tree-hasher.h 26 tree to; member in struct:int_tree_map
39 return v.to == reinterpret_cast<tree> (1);
41 static void mark_deleted (value_type &v) { v.to = reinterpret_cast<tree> (0x1); }
42 static bool is_empty (const value_type &v) { return v.to == NULL; }
44 static void mark_empty (value_type &v) { v.to = NULL; }
  /src/external/mpl/dhcp/dist/includes/
ctrace.h 11 * This Source Code Form is subject to the terms of the Mozilla Public
16 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
49 struct iaddr to; member in struct:__anon24424
  /src/external/apache2/llvm/dist/clang/tools/clang-format/
clang-format.el 9 ;; This package allows to filter code through clang-format to fix its formatting.
10 ;; clang-format is a tool that formats C/C++/Obj-C code according to a set of
24 ;; to your .emacs configuration.
26 ;; You may also want to bind `clang-format-region' to a key:
50 "Style argument to pass to clang-format.
61 "Fallback style to pass to clang-format
    [all...]

Completed in 105 milliseconds

1 2 3 4 5 6 7 8 91011>>