Home
last modified time | relevance | path

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

12345678910

/titanic_41/usr/src/cmd/fs.d/ufs/fsck/
H A Ddup_avl.c133 fragment_t *dup; in find_dup_ref() local
148 dup = avl_find(&dup_frags, (void *)&key, &where); in find_dup_ref()
149 if ((dup == NULL) & (flags & DB_CREATE)) { in find_dup_ref()
150 dup = alloc_dup(fragno); in find_dup_ref()
151 avl_insert(&dup_frags, (void *)dup, where); in find_dup_ref()
154 if (dup != NULL) { in find_dup_ref()
160 added = increment_claimant(dup, ino, lfn); in find_dup_ref()
165 removed = decrement_claimant(dup, ino, lfn); in find_dup_ref()
173 return (added || removed || (dup != NULL)); in find_dup_ref()
197 fragment_t *dup; in report_dups() local
[all …]
/titanic_41/usr/src/psm/stand/bootblks/zfs/common/
H A Dzfs.fth42 \ stack ops and logical ops (dup, and, etc) are 64b
45 rot 2dup u< if ( x2.lo x1.lo x1.hi x2.hi )
49 else swap 2dup u< if ( x1.lo x2.lo )
71 swap dup 0= ( adr u done? )
73 dup numbuf - /buf-len swap - ( adr len )
113 dup c@ swap 1+ c@ ( c[0] c[1] )
124 1- dup 0>= ( dend dst mlen' any? r: cpy )
127 swap r> dup 1+ >r c@ ( dend mlen dst c r: cpy' )
141 begin 2dup > while
144 dup 8 pow2 = if
[all …]
/titanic_41/usr/src/psm/stand/bootblks/ufs/common/
H A Dufs.fth79 dup cgmask invert and cgoffset * swap fpg * +
101 dup itog cgimin swap ipg mod inopb / blkstofrags +
120 dup temp-block bsize rot itod ( i# adr len blk# )
122 dup itoo /inode * temp-block + inode /inode move
127 : l@++ ( ptr -- value ) dup @ l@ /l rot +! ;
145 -rot dup >r @ over = if ( adr fs-blk# r: var )
148 2dup bsize swap read-fs-blocks ( adr fs-blk# r: var )
173 dup #direct < if ( lblk# )
180 dup #sgl-addr < if
188 dup #dbl-addr < if
[all …]
/titanic_41/usr/src/psm/stand/bootblks/common/
H A Dboot.fth31 d# 1024 dup * constant 1meg
89 c@ dup h# f0 h# f3 between swap h# fd = or
99 2dup dev-open ?dup 0= if
104 dup /fs-fcode fs-offset r@ read-disk
106 dup check-fcode invert if
109 dup 1 byte-load
160 2dup ['] vmem-alloc catch if ( size virt ??? ??? )
162 2dup begin ( size virt len adr )
179 begin dup while
181 dup 4meg min ( virt sz-left read-sz r: fd )
[all …]
H A Dutil.fth43 dup begin
44 dup c@
50 : cscount ( cstr -- adr,len ) dup cstrlen ;
81 2dup find-package 0= if
100 2dup cif-ph find-method 0= if ( adr,len )
116 >r 2dup r> get-package-property if ( name$ )
156 rot 2dup swap mem-claim ( virt align size phys.lo phys.hi )
157 >r >r rot ?dup if ( align size virt r: phys.lo phys.hi )
162 2dup swap mmu-claim ( align size virt r: phys.lo phys.hi )
208 dup >r 0 swap cif-seek if ( adr len r: ih )
/titanic_41/usr/src/tools/protocmp/
H A Dprotodir.c89 elem *dup; in parse_proto_line() local
208 if (!(dup = find_elem(list, e, FOLLOW_LINK))) { in parse_proto_line()
213 } else if (dup->file_type == DIR_T) { in parse_proto_line()
214 if (!(dup->pkgs = add_pkg(dup->pkgs, pkgname))) { in parse_proto_line()
218 pkgname, dup->name); in parse_proto_line()
221 if (e->perm != dup->perm) { in parse_proto_line()
225 pkgname, e->perm, dup->name, dup->perm); in parse_proto_line()
227 if (strcmp(e->owner, dup->owner) != 0) { in parse_proto_line()
231 pkgname, e->owner, dup->name, dup->owner); in parse_proto_line()
233 if (strcmp(e->group, dup->group) != 0) { in parse_proto_line()
[all …]
/titanic_41/usr/src/lib/smbsrv/libsmbns/common/
H A Dsmbns_netbios_cache.c723 struct name_entry *dup; in smb_netbios_name_dup() local
737 dup = (struct name_entry *)malloc(size); in smb_netbios_name_dup()
738 if (dup == 0) in smb_netbios_name_dup()
741 bzero(dup, size); in smb_netbios_name_dup()
743 dup->forw = dup->back = dup; in smb_netbios_name_dup()
744 dup->attributes = entry->attributes; in smb_netbios_name_dup()
745 (void) memcpy(dup->name, entry->name, NETBIOS_NAME_SZ); in smb_netbios_name_dup()
746 (void) strlcpy((char *)dup->scope, (char *)entry->scope, in smb_netbios_name_dup()
748 dup->addr_list = entry->addr_list; in smb_netbios_name_dup()
749 dup->addr_list.forw = dup->addr_list.back = &dup->addr_list; in smb_netbios_name_dup()
[all …]
/titanic_41/usr/src/cmd/diff3/
H A Ddiff3prog.c108 static void change(int i, struct range *rold, int dup);
115 static int edit(struct diff *diff, int dup, int j);
279 int dup; in merge() local
339 dup = duplicate(&d1->old, &d2->old); in merge()
345 separate(dup?"3":""); in merge()
346 change(1, &d1->old, dup); in merge()
351 j = edit(d1, dup, j); in merge()
396 change(int i, struct range *rold, int dup) in change() argument
401 if (dup) in change()
515 edit(struct diff *diff, int dup, int j) in edit() argument
[all …]
/titanic_41/usr/src/cmd/lp/filter/postscript/font/devpost/charlib/
H A Dlc39 0 1 idtransform dup mul exch dup mul add sqrt dup
48 bvbbox 5 get bvbbox 4 get 8 mul add dup bvbbox 3 get lineto
52 bvbbox 4 get dup dup
H A Dlf39 0 1 idtransform dup mul exch dup mul add sqrt dup
48 bvbbox 5 get bvbbox 4 get 8 mul add dup bvbbox 3 get lineto
52 bvbbox 4 get dup dup
H A Drc39 0 1 idtransform dup mul exch dup mul add sqrt dup
48 bvbbox 5 get bvbbox 4 get 8 mul sub dup bvbbox 3 get lineto
52 bvbbox 4 get dup dup
H A Drf39 0 1 idtransform dup mul exch dup mul add sqrt dup
48 bvbbox 5 get bvbbox 4 get 8 mul sub dup bvbbox 3 get lineto
52 bvbbox 4 get dup dup
/titanic_41/usr/src/cmd/svr4pkg/libinst/
H A Dpathdup.c51 struct dup { struct
53 struct dup *next; argument
56 static struct dup *head, *tail, *new;
94 new = calloc(1, sizeof (struct dup)); in growstore()
/titanic_41/usr/src/lib/efcode/fcode_test/
H A Dstack.fth32 " dup" 1 dup = .passed?
38 " 2dup" 1 -1 2dup + 0= nip nip .passed?
39 " ?dup" 0 1 ?dup = nip .passed?
H A Dloop.fth28 " loop to 0 (1)" 9 begin dup while 1- repeat 0= .passed?
32 : btest2 9 begin dup while 1- repeat 0= .passed? ;
37 " no loop (3)" 1 begin dup until .passed?
38 " loop to 0 (3)" 9 begin 1- dup 0= until 0= .passed?
41 : btest3 1 begin dup until .passed? ;
42 : btest4 9 begin 1- dup 0= until 0= .passed? ;
/titanic_41/usr/src/psm/stand/bootblks/hsfs/common/
H A Dhsfs.fth53 dup c@ swap char+ ( c0 adr+1 )
65 dup xw@ swap wa1+ ( w0 adr+2 )
124 dup 0= if
216 i c@ dup 2 = if ( dst 2 )
219 else dup 4 = if ( dst 4 )
223 else dup 8 = if ( dst 8 )
227 else dup 0<> if
231 i char+ dup c@ >r ( dst src+1 R:nbytes )
266 2dup " NM" $= if
270 2dup " SL" $= if
[all …]
/titanic_41/usr/src/cmd/refer/
H A Dglue4.c56 sv0 = dup(0); in grepcall()
60 sv1 = dup(1); in grepcall()
69 dup(sv0); in grepcall()
72 dup(sv1); in grepcall()
/titanic_41/usr/src/cmd/ypcmd/ypupdated/
H A Dopenchild.c57 extern int dup();
95 (void) dup(pdto[0]);
97 (void) dup(pdfrom[1]);
/titanic_41/usr/src/lib/libfsmgt/common/
H A Dcmd.c116 if (dup(output[1]) == -1) { in cmd_execute_command()
129 if (dup(error[1]) == -1) { in cmd_execute_command()
215 if (dup(output[1]) == -1) { in cmd_execute_command_and_retrieve_string()
228 if (dup(output[1]) == -1) { in cmd_execute_command_and_retrieve_string()
/titanic_41/usr/src/cmd/sgs/ar/common/
H A Dcmd.c670 char *dup = NULL; in create_extract() local
683 dup = malloc(f_len+1); in create_extract()
684 if (dup == NULL) { in create_extract()
690 (void) strncpy(dup, f_name, f_len); in create_extract()
692 f_name = dup; in create_extract()
718 if (dup != NULL) in create_extract()
719 free(dup); in create_extract()
737 if (dup != NULL) in create_extract()
738 free(dup); in create_extract()
757 if (dup) in create_extract()
[all …]
/titanic_41/usr/src/cmd/sgs/liblddbg/common/
H A Dunused.c90 Dbg_unused_path(Lm_list *lml, const char *path, uint_t orig, uint_t dup, in Dbg_unused_path() argument
102 if (dup) in Dbg_unused_path()
107 if (dup) in Dbg_unused_path()
/titanic_41/usr/src/cmd/keyserv/
H A Ddetach.c70 dup(0); in detachfromtty()
71 dup(0); in detachfromtty()
/titanic_41/usr/src/cmd/bnu/
H A Din.uucpd.c107 dup(0); dup(0);
165 dup(s); dup(s); dup(s);
193 dup(s); dup(s); dup(s);
/titanic_41/usr/src/cmd/vi/port/
H A Dex_unix.c300 dup(newstdin);
306 dup(pvec[1]);
309 dup(1);
459 dup(1); in recover()
461 dup(pvec[1]); in recover()
472 dup(2); in recover()
/titanic_41/usr/src/lib/libast/common/misc/
H A Dmime.c245 register Cap_t* dup; in mimeset() local
248 for (pud = 0, dup = ent->cap; dup; pud = dup, dup = dup->next) in mimeset()
249 if (!cap->test && !dup->test || cap->test && dup->test && streq(cap->test, dup->test)) in mimeset()
257 if (!(cap->next = dup->next)) in mimeset()
259 cap = dup; in mimeset()

12345678910