Home
last modified time | relevance | path

Searched full:original (Results 1 – 25 of 3781) sorted by relevance

12345678910>>...152

/freebsd/sys/contrib/ck/include/
H A Dck_stack.h197 struct ck_stack original, update; in ck_stack_pop_mpmc() local
199 original.generation = ck_pr_load_ptr(&target->generation); in ck_stack_pop_mpmc()
201 original.head = ck_pr_load_ptr(&target->head); in ck_stack_pop_mpmc()
202 if (original.head == NULL) in ck_stack_pop_mpmc()
208 update.generation = original.generation + 1; in ck_stack_pop_mpmc()
209 update.head = original.head->next; in ck_stack_pop_mpmc()
211 while (ck_pr_cas_ptr_2_value(target, &original, &update, &original) == false) { in ck_stack_pop_mpmc()
212 if (original.head == NULL) in ck_stack_pop_mpmc()
215 update.generation = original.generation + 1; in ck_stack_pop_mpmc()
219 update.head = original.head->next; in ck_stack_pop_mpmc()
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/bclone/
H A Dbclone_common.kshlib129 typeset -r original="${srcdir}/original"
143 dd if=/dev/urandom of=$original bs=$filesize count=1 2>/dev/null
147 openssl base64 -A > $original
150 clonefile -f $original "${clone}-tmp"
163 log_must truncate_test -s $filesize -f $original
174 typeset -r original_checksum=$(xxh128digest $original)
179 clonefile -f $original "${clone}0"
183 # Clone the original again...
184 clonefile -f $original "${clone}1"
186 clonefile -f $original "${clone}1"
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DWindowScheduler.h20 // have enhanced the original window algorithm. The primary steps are as
23 // 1. Instead of duplicating the original MBB twice as mentioned in the
73 /// construct a DAG for a new MBB, which is created by copying the original
79 /// OriMIs keeps the MIs removed from the original MBB.
84 /// original MI.
86 /// OriToCycle keeps the mappings between the original MI and its issue cycle.
91 /// SchedPhiNum records the number of phi in the original MBB, and the
94 /// SchedInstrNum records the MIs involved in scheduling in the original MBB,
123 /// Back up the MIs in the original MBB and remove them from MBB.
125 /// Erase the MIs in current MBB and restore the original MIs.
[all …]
/freebsd/sys/contrib/openzfs/
H A DLICENSE15 1.2. "Contributor Version" means the combination of the Original
19 1.3. "Covered Software" means (a) the Original Software, or (b)
21 Original Software with files containing Modifications, in
28 makes Original Software available under this License.
45 modification of the contents of a file containing Original
48 B. Any new file that contains any part of the Original
54 1.10. "Original Software" means the Source Code and Executable
90 distribute the Original Software (or portions thereof),
95 selling of Original Software, to make, have made, use,
97 dispose of the Original Software (or portions thereof).
[all …]
/freebsd/sys/cddl/contrib/opensolaris/
H A DOPENSOLARIS.LICENSE15 1.2. "Contributor Version" means the combination of the Original
19 1.3. "Covered Software" means (a) the Original Software, or (b)
21 Original Software with files containing Modifications, in
28 makes Original Software available under this License.
45 modification of the contents of a file containing Original
48 B. Any new file that contains any part of the Original
54 1.10. "Original Software" means the Source Code and Executable
90 distribute the Original Software (or portions thereof),
95 selling of Original Software, to make, have made, use,
97 dispose of the Original Software (or portions thereof).
[all …]
/freebsd/cddl/contrib/opensolaris/
H A DOPENSOLARIS.LICENSE15 1.2. "Contributor Version" means the combination of the Original
19 1.3. "Covered Software" means (a) the Original Software, or (b)
21 Original Software with files containing Modifications, in
28 makes Original Software available under this License.
45 modification of the contents of a file containing Original
48 B. Any new file that contains any part of the Original
54 1.10. "Original Software" means the Source Code and Executable
90 distribute the Original Software (or portions thereof),
95 selling of Original Software, to make, have made, use,
97 dispose of the Original Software (or portions thereof).
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/snapshot/
H A Dsnapshot_002_pos.ksh38 # is identical even though the original file system has
45 # 4) Remove all the files in the original file system
86 log_must tar cf $SNAPSHOT_TARDIR/original.tar .
92 log_note "Remove all of the original files..."
101 log_must mkdir $TESTDIR/original $TESTDIR/snapshot
104 log_must cd $TESTDIR/original
105 log_must tar xf $SNAPSHOT_TARDIR/original.tar
112 log_must directory_diff $TESTDIR/original $TESTDIR/snapshot
H A Dsnapshot_006_pos.ksh44 # 4) Remove all the files in the original dataset
95 log_must tar cf $SNAPSHOT_TARDIR/original.tar .
101 log_note "Remove all of the original files..."
110 log_must mkdir $TESTDIR1/original mkdir $TESTDIR1/snapshot
113 log_must cd $TESTDIR1/original
114 log_must tar xf $SNAPSHOT_TARDIR/original.tar
121 log_must directory_diff $TESTDIR1/original $TESTDIR1/snapshot
/freebsd/tests/sys/cddl/zfs/tests/snapshot/
H A Dsnapshot_002_pos.ksh36 # is identical even though the original file system has
43 # 4) Remove all the files in the original file system
101 log_must $TAR cf $TESTDIR/tarball.original.tar file*
107 log_note "Remove all of the original files..."
116 log_must $MKDIR $TESTDIR/original
120 cd $TESTDIR/original || log_fail "Could not cd $TESTDIR/original"
121 log_must $TAR xf $TESTDIR/tarball.original.tar
128 $DIRCMP $TESTDIR/original $TESTDIR/snapshot > $TMPDIR/zfs_snapshot2.${TESTCASE_ID}
H A Dsnapshot_006_pos.ksh42 # 4) Remove all the files in the original dataset
99 log_must $TAR cf $TESTDIR1/tarball.original.tar file*
105 log_note "Remove all of the original files..."
114 log_must $MKDIR $TESTDIR1/original
118 cd $TESTDIR1/original || log_fail "Could not cd $TESTDIR1/original"
119 log_must $TAR xf $TESTDIR1/tarball.original.tar
126 $DIRCMP $TESTDIR1/original $TESTDIR1/snapshot > $TMPDIR/zfs_snapshot2.${TESTCASE_ID}
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCallPromotionUtils.cpp31 /// After versioning an invoke instruction, values coming from the original
66 /// After versioning an invoke instruction, values coming from the original
101 /// to merge the value of the original and new instructions. We do this by
102 /// creating a phi node and replacing uses of the original instruction with this
108 /// ; Uses of the original instruction are replaced by uses of the phi node.
143 /// ; Uses of the original return value are replaced by uses of the bitcast.
155 /// The edge between the original block and the invoke's normal destination is
162 /// ; Uses of the original return value are replaced by uses of the bitcast.
186 // Replace all the original uses of the calling instruction with the bitcast. in createRetBitCast()
195 /// The original call site is moved into the "else" block, and a clone of the
[all …]
/freebsd/contrib/sendmail/contrib/
H A Ddoublebounce.pl7 # Based on the original doublebounce.pl code by jr@terra.net, 12/4/97.
12 # Original intro included below, lines with ##
29 ## by sendmail on stdin, for the original message (it starts after the
34 ## return the message to the original sender, or do something about
98 The from header on the original e-mail was: $from.
141 # Ok, now we can get down to business, find the original message
153 if (/^ ----- Original message follows -----$/ ||
156 # Found the original message
195 # Start with the original (inner) sender
206 syslog('info', 'Unable to find original sender, falling back.');
/freebsd/contrib/llvm-project/clang/include/clang/Rewrite/Core/
H A DRewriteBuffer.h19 /// RewriteBuffer - As code is rewritten, SourceBuffer's from the original
22 /// to map between SourceLocation's in the original input and offsets in the
51 /// original buffer.
56 /// The original buffer is not actually changed.
64 /// the buffer is specified relative to the original SourceBuffer. The
71 /// offset in the buffer is specified relative to the original
79 /// offset in the buffer is specified relative to the original SourceBuffer.
92 /// getMappedOffset - Given an offset into the original SourceBuffer that this
/freebsd/lib/libsys/
H A Dmq_close.233 .\" event of any discrepancy between this version and the original IEEE and
34 .\" The Open Group Standard, the original IEEE and The Open Group Standard is
35 .\" the referee document. The original Standard can be obtained online at
100 event of any discrepancy between this version and the original IEEE and
101 The Open Group Standard, the original IEEE and The Open Group Standard is
102 the referee document. The original Standard can be obtained online at
H A Dmq_setattr.233 .\" event of any discrepancy between this version and the original IEEE and
34 .\" The Open Group Standard, the original IEEE and The Open Group Standard is
35 .\" the referee document. The original Standard can be obtained online at
118 event of any discrepancy between this version and the original IEEE and
119 The Open Group Standard, the original IEEE and The Open Group Standard is
120 the referee document. The original Standard can be obtained online at
H A Dmq_unlink.232 .\" event of any discrepancy between this version and the original IEEE and
33 .\" The Open Group Standard, the original IEEE and The Open Group Standard is
34 .\" the referee document. The original Standard can be obtained online at
115 In the event of any discrepancy between this version and the original IEEE and
116 The Open Group Standard, the original IEEE and The Open Group Standard is
118 The original Standard can be obtained online at
H A Dmq_getattr.233 .\" event of any discrepancy between this version and the original IEEE and
34 .\" The Open Group Standard, the original IEEE and The Open Group Standard is
35 .\" the referee document. The original Standard can be obtained online at
122 event of any discrepancy between this version and the original IEEE and
123 The Open Group Standard, the original IEEE and The Open Group Standard is
124 the referee document. The original Standard can be obtained online at
H A Dmq_notify.233 .\" event of any discrepancy between this version and the original IEEE and
34 .\" The Open Group Standard, the original IEEE and The Open Group Standard is
35 .\" the referee document. The original Standard can be obtained online at
160 event of any discrepancy between this version and the original IEEE and
161 The Open Group Standard, the original IEEE and The Open Group Standard is
162 the referee document. The original Standard can be obtained online at
H A Dmq_receive.233 .\" event of any discrepancy between this version and the original IEEE and
34 .\" The Open Group Standard, the original IEEE and The Open Group Standard is
35 .\" the referee document. The original Standard can be obtained online at
212 event of any discrepancy between this version and the original IEEE and
213 The Open Group Standard, the original IEEE and The Open Group Standard is
214 the referee document. The original Standard can be obtained online at
/freebsd/usr.bin/gzip/
H A Dznew.145 Test integrity of the gzipped file before deleting the original file.
46 If the integrity check fails, the original
56 Keep the original
66 utility tries to maintain the file mode of the original file.
67 If the original file is not writable, it is not able to do that and
/freebsd/share/man/man4/
H A Dng_vlan_rotate.447 .Va original ,
59 .Va original
91 .Va original
94 above, besides the ordered/original hooks are swapped and the
102 .Va original
120 .It Va original
168 mkpeer ${BNG_IF}: vlan_rotate lower original
224 mkpeer ${IN_IF}: vlan_rotate lower original
/freebsd/sys/kern/
H A Dsubr_sglist.c750 * entries for the first 'length' bytes of the 'original' list are
751 * stored in the '*head' list and are removed from 'original'.
762 * If 'original' is shared (refcount > 1), then EDOOFUS will be
766 sglist_split(struct sglist *original, struct sglist **head, size_t length, in sglist_split() argument
773 if (original->sg_refs > 1) in sglist_split()
780 for (i = 0; i < original->sg_nseg; i++) { in sglist_split()
781 space += original->sg_segs[i].ss_len; in sglist_split()
788 * 'original'. in sglist_split()
812 /* Copy 'count' entries to 'sg' from 'original'. */ in sglist_split()
813 bcopy(original->sg_segs, sg->sg_segs, count * in sglist_split()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DGlobPattern.cpp21 static Expected<BitVector> expand(StringRef S, StringRef Original) { in hasWildcard()
43 return make_error<StringError>("invalid glob pattern: " + Original, in expand()
26 expand(StringRef S,StringRef Original) expand() argument
66 scan(StringRef & S,StringRef Original) scan() argument
132 StringRef Original = S; create() local
/freebsd/share/man/man9/
H A Dsglist.9108 .Fn sglist_slice "struct sglist *original" "struct sglist **slice" "size_t offset" "size_t length" …
110 .Fn sglist_split "struct sglist *original" "struct sglist **head" "size_t length" "int mflags"
412 .Fa original
416 .Fa original
423 .Fa original
440 .Fa original
451 .Fa original .
476 .Fa original
561 .Fa original
587 .Fa original
/freebsd/share/man/man3/
H A DATOMIC_VAR_INIT.3140 and returns the original contents of the atomic variable.
174 and returns the original contents of the atomic variable.
186 while returning the original contents of the atomic variable.
198 while returning the original contents of the atomic variable.
206 and returns the original contents of the atomic variable.
218 while returning the original contents of the atomic variable.

12345678910>>...152