Home
last modified time | relevance | path

Searched refs:dup (Results 1 – 25 of 296) sorted by relevance

12345678910>>...12

/freebsd/stand/forth/
H A Dmenu.4th151 dup -1 = if
562 2dup swap dup ( n y -- n y y n n )
568 2dup swap dup ( n y -- n y y n n )
636 dup init_stateN dup @ 0= if
650 dup
801 2dup at-xy 38 spaces 1+ 2dup at-xy 38 spaces 1+
802 2dup at-xy 38 spaces 1+ 2dup at-xy 38 spaces 1+
803 2dup at-xy 38 spaces 1+ 2dup at-xy 38 spaces 1+
804 2dup at-xy 38 spaces 1+ 2dup at-xy 38 spaces 1+
805 2dup at-xy 38 spaces 1+ 2dup at-xy 38 spaces 1+
[all …]
H A Dcheck-password.4th64 dup 0 = if ( 1 ) ." /" else
65 dup 1 = if ( 2 ) ." -" else
66 dup 2 = if ( 3 ) ." \" else
75 dup bs_key = if exit then
77 dup ctrl_u = if exit then
84 begin dup 0> while
85 -rot 2dup c! 1+ rot 1-
109 dup enter_key = if
114 else dup ctrl_u = if
117 else dup bs_key = if
[all …]
H A Dsupport.4th275 swap dup c@ dup 32 = over 9 = or over 10 = or
286 swap dup c@ dup 32 = over 9 = or over 10 = or
793 dup
1003 ?dup
1024 ?dup
1263 ?dup
1354 dup 0=
1574 dup >r
1587 dup
1624 dup
[all …]
H A Dloader.4th33 2dup u< if 2drop 0 exit then
43 dup 0x80 u< if emit exit then
45 begin 2dup u> while
91 dup -1 <> if
118 dup if
128 ?dup if exit then
138 ?dup if exit then
143 ?dup 0= if bootmsg 0 1 boot then
154 ?dup 0= if 0 1 autoboot then
234 dup module.name strtype
[all …]
H A Dversion.4th46 s" loader_version_x" getenv dup -1 <> if
49 s" loader_version_y" getenv dup -1 <> if
54 s" loader_version" getenv dup -1 = if
57 s" loader_logo" getenv dup -1 = if
61 2dup s" tribute" compare-insensitive 0= if
68 else 2dup s" tributebw" compare-insensitive 0= if
79 then dup -1 = if
84 dup versionX @ swap - versionY @ at-xy
87 loader_color? dup ( c-addr/u -- c-addr/u bool bool )
/freebsd/tools/test/stress2/misc/
H A Ddup.sh40 rm -f /tmp/dup /tmp/dup.c || exit 1
41 sed '1,/^EOF/d' < $odir/$0 > $dir/dup.c
42 mycc -o dup -Wall -Wextra dup.c || exit 1
43 rm -f dup.c
46 /tmp/dup; s=$?
48 rm -f /tmp/dup
86 if ((fd2 = dup(fd)) == -1) {
/freebsd/contrib/capsicum-test/
H A Dcapability-fd-pair.cc22 int cap_in_ro = dup(in_fd); in TEST()
25 int cap_in_wo = dup(in_fd); in TEST()
28 int cap_out_ro = dup(sock_fds[0]); in TEST()
31 int cap_out_wo = dup(sock_fds[0]); in TEST()
69 int cap_in_wo = dup(pipe1_fds[0]); in TEST()
72 int cap_in_rw = dup(pipe1_fds[0]); in TEST()
75 int cap_out_ro = dup(pipe2_fds[1]); in TEST()
118 int cap_in_wo = dup(pipe1_fds[0]); in TEST()
121 int cap_in_ro = dup(pipe1_fds[0]); in TEST()
167 int cap_ro = dup(pipe_fds[1]); in TEST()
[all …]
/freebsd/stand/ficl/softwords/
H A Dmarker.fr10 get-order dup ,
14 dup body> >name drop
16 dup @ ( pfa current-wid )
17 dup set-current forget-wid ( pfa )
18 cell+ dup @ swap ( count count-addr )
21 dup @ dup ( wid-addr wid wid )
H A Dsoftcore.fr12 nUser dup @ user 1 swap +! ;
25 dup 0< if negate endif ;
71 rot over - dup 0< if
103 r> r> r> dup >r swap >r swap >r ;
112 ?DO I c@ dup 127 bl within
122 dup 8 u.r ." : " dup .line cr 16 +
128 \ wordlist dup create , brand-wordlist
169 search> dup >search >search ;
183 dup wid-get-name ( wid c-addr u )
184 ?dup if
[all …]
H A Difbrack.fr9 2dup s" [if]" compare-insensitive 0=
13 2dup s" [else]" compare-insensitive 0=
17 2dup s" [then]" compare-insensitive 0= >r
18 2dup s" [endif]" compare-insensitive 0= r>
28 parse-word dup while \ ( level addr len )
33 2drop 1- dup if 1+ endif
37 endif ?dup 0= if exit endif \ level
H A Djhlocal.fr24 2dup s" --" compare 0= ;
26 2dup s" }" compare 0= ;
28 2dup s" |" compare 0= ;
35 over dup c@ [char] 2 =
49 dup 0=
57 0 dup locals| locstate |
62 ?delim dup to locstate
76 ?delim dup to locstate
93 ?delim dup to locstate
H A Dficllocal.fr20 0 dup locals| nLocs locstate |
23 ?dup 0= abort" Error: out of text without seeing }}"
24 2dup 2dup ?-- -rot ?}} or 0=
38 2dup ?}} 0=
/freebsd/sys/gnu/gcov/
H A Dgcc_4_7.c284 struct gcov_info *dup; in gcov_info_dup() local
293 if ((dup = malloc(sizeof(*dup), M_GCOV, M_NOWAIT|M_ZERO)) == NULL) in gcov_info_dup()
295 memcpy(dup, info, sizeof(*dup)); in gcov_info_dup()
297 dup->next = NULL; in gcov_info_dup()
298 dup->filename = NULL; in gcov_info_dup()
299 dup->functions = NULL; in gcov_info_dup()
302 if (dup->filename == NULL) in gcov_info_dup()
306 if (dup->functions == NULL) in gcov_info_dup()
314 if (!dup->functions[fi_idx]) in gcov_info_dup()
339 return (dup); in gcov_info_dup()
[all …]
/freebsd/contrib/bearssl/src/codec/
H A Dpemdec.t0125 dup dup `a >= swap `z <= and if 32 - then ;
131 dup data-get8 norm-upper dup ifnot 2drop -1 ret then
142 dup { orig-len }
153 begin dup while
155 dup addr-name + get8 `- <> if
166 dup if trim-dashes ret then
191 dup `\n <> swap 32 <= and ;
196 read8 dup ws? ifnot ret then
234 dup `\n = if drop 2 ret then
245 dup `= = if
[all …]
/freebsd/contrib/bearssl/src/x509/
H A Dasn1.t064 dup dup `. = swap 32 <= or if ret then
73 swap dup 0x7F > if
183 begin dup while read-blob-inner dup if co then repeat
189 begin dup while skip-remaining-inner dup if co then repeat ;
416 begin dup while
421 drop dup ;
497 dup 0x800 < uf
519 begin dup while
546 dup while
559 begin dup while
[all …]
/freebsd/sys/netgraph/
H A Dng_tee.c72 struct hookinfo *dest, *dup; member
191 privdata->right.dup = hinfo; in ng_tee_newhook()
197 privdata->left.dup = hinfo; in ng_tee_newhook()
308 if (hinfo->dup) { in ng_tee_rcvdata()
315 h = hinfo->dup; in ng_tee_rcvdata()
380 sc->left.dest = sc->left.dup; in ng_tee_disconnect()
381 sc->left.dup = NULL; in ng_tee_disconnect()
383 sc->left.dup = NULL; in ng_tee_disconnect()
385 sc->right.dest = sc->right.dup; in ng_tee_disconnect()
386 sc->right.dup = NULL; in ng_tee_disconnect()
[all …]
/freebsd/share/examples/bootforth/
H A Dframes.4th61 2dup 4 pick
66 2dup
72 2dup 1+ 4 pick 1- -rot
74 2dup 1+ swap 5 pick + swap 4 pick 1- -rot
76 2dup swap 1+ swap 5 pick 1- -rot
78 2dup swap 1+ swap 4 pick + 5 pick 1- -rot
80 2dup at-xy lt_el @ emit \ Draw left-top corner
81 2dup 4 pick + at-xy lb_el @ emit \ Draw left bottom corner
82 2dup swap 5 pick + swap at-xy rt_el @ emit \ Draw right top corner
H A Dmenuconf.4th29 dup seconds u< if
47 dup 32 = if
50 dup 0< if
53 dup emit
77 dup 49 = if
84 dup 50 = if
91 dup 51 = if
97 dup 52 = if
H A Dmenu.4th27 dup seconds u< if
45 dup 32 = if
48 dup 0< if
51 dup emit
76 dup 49 = if
82 dup 50 = if
87 dup 51 = if
/freebsd/contrib/ofed/libibverbs/
H A Dsysfs.c64 char *dup; in ibv_get_sysfs_path() local
66 sysfs_path = dup = strndup(env, IBV_SYSFS_PATH_MAX); in ibv_get_sysfs_path()
67 len = strlen(dup); in ibv_get_sysfs_path()
68 while (len > 0 && dup[len - 1] == '/') { in ibv_get_sysfs_path()
70 dup[len] = '\0'; in ibv_get_sysfs_path()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_destroy/
H A Dzfs_clone_livelist_dedup.ksh58 log_must cp /$TESTPOOL/$TESTCLONE/data /$TESTPOOL/$TESTCLONE/data-dup-0
59 log_must cp /$TESTPOOL/$TESTCLONE/data /$TESTPOOL/$TESTCLONE/data-dup-1
60 log_must cp /$TESTPOOL/$TESTCLONE/data /$TESTPOOL/$TESTCLONE/data-dup-2
61 log_must cp /$TESTPOOL/$TESTCLONE/data /$TESTPOOL/$TESTCLONE/data-dup-3
71 log_must rm /$TESTPOOL/$TESTCLONE/data-dup-2
72 log_must rm /$TESTPOOL/$TESTCLONE/data-dup-3
/freebsd/contrib/bearssl/src/ssl/
H A Dssl_hs_client.t0398 begin dup while
477 dup while 1-
702 dup if
879 dup dup 2 < swap 6 > or if ERR_INVALID_ALGORITHM fail then
976 begin dup while
1042 dup while
1043 dup 256 > if 256 else dup then { len }
1118 dup write16
1123 dup write8
1131 15 write8 dup
[all …]
/freebsd/contrib/bearssl/T0/
H A Dkern.t029 dup (local) swap if
36 dup "}" eqstr if
39 dup ";" eqstr if
54 dup `| = if
58 dup 0x20 > if
73 dup dup `0 >= swap `9 <= and if `0 - ret then
74 dup dup `A >= swap `F <= and if `A - 10 + ret then
75 dup dup `a >= swap `f <= and if `a - 10 + ret then
86 dup dup `0 >= swap `9 <= and if `0 - ret then
102 dup data-get8 8 << swap 1+ data-get8 + ;
[all …]
/freebsd/contrib/netbsd-tests/ipf/expected/
H A Di64 pass in on lo0(!) dup-to qe0(!) inet from 127.0.0.1/32 to 127.0.0.1/32
5 pass in on le0(!) dup-to qe0:127.0.0.1 inet from 127.0.0.1/32 to 127.0.0.1/32
6 pass in on le0(!) to hme0:10.1.1.1 dup-to qe0:127.0.0.1 inet from 127.0.0.1/32 to 127.0.0.1/32
9 pass out quick dup-to hme0(!) from any to any
11 pass in on le0(!) dup-to qe0:127.0.0.1 reply-to hme1:10.10.10.10 inet all
/freebsd/contrib/netbsd-tests/ipf/regress/
H A Di64 pass in on lo0 dup-to qe0 from localhost to localhost
5 pass in on le0 dup-to qe0:127.0.0.1 from localhost to localhost
6 pass in on le0 to hme0:10.1.1.1 dup-to qe0:127.0.0.1 from localhost to localhost
9 pass out quick dup-to hme0 from any to any
11 pass in on le0 dup-to qe0:127.0.0.1 reply-to hme1:10.10.10.10 all

12345678910>>...12