/freebsd/sys/contrib/ck/include/ |
H A D | ck_stack.h | 197 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 D | bclone_common.kshlib | 129 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" 184 clonefile -f $original "${clone}1" 186 clonefile -f $original "${clone}1" 197 clonefile -f $original "${clone}4" [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/snapshot/ |
H A D | snapshot_002_pos.ksh | 86 log_must tar cf $SNAPSHOT_TARDIR/original.tar . 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 D | snapshot_006_pos.ksh | 95 log_must tar cf $SNAPSHOT_TARDIR/original.tar . 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/tools/tools/locale/tools/ |
H A D | finalize | 138 for original in ${keep} 140 cp ${old}/${original} ${new}/ 166 for original in ${keep} 168 cp ${old}/${original}.src ${new}/ 173 for original in ${keep} 175 cp ${old}/${original}.src ${new}/
|
/freebsd/tests/sys/cddl/zfs/tests/snapshot/ |
H A D | snapshot_002_pos.ksh | 101 log_must $TAR cf $TESTDIR/tarball.original.tar file* 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 D | snapshot_006_pos.ksh | 99 log_must $TAR cf $TESTDIR1/tarball.original.tar file* 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/tools/test/stress2/misc/ |
H A D | swap4.sh | 72 static unsigned long size, original; 80 original = size; 110 if (size != original) 112 original / 1024 / 1024, size / 1024 / 1024);
|
H A D | swap.sh | 72 static unsigned long size, original; 80 original = size; 115 if (size != original) 117 original / 1024 / 1024, size / 1024 / 1024);
|
H A D | shm2.sh | 69 static unsigned long size, original; 78 original = size; 121 if (size != original) 123 original / 1024, size / 1024);
|
H A D | swap2.sh | 90 static unsigned long size, original; 98 original = size; 133 if (size != original) 135 original / 1024 / 1024, size / 1024 / 1024);
|
/freebsd/sys/kern/ |
H A D | subr_sglist.c | 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() 813 bcopy(original->sg_segs, sg->sg_segs, count * in sglist_split() 826 original->sg_segs[count].ss_paddr = in sglist_split() 828 original->sg_segs[count].ss_len = split; in sglist_split() 832 original->sg_nseg -= count; in sglist_split() 833 bcopy(original->sg_segs + count, original->sg_segs, count * in sglist_split() 897 sglist_slice(struct sglist *original, struct sglist **slice, size_t offset, in sglist_slice() argument [all …]
|
/freebsd/contrib/libcbor/misc/ |
H A D | update_version.py | 20 original = open(file_path).read() 21 updated = re.sub(pattern, replacement, original) 22 assert updated != original
|
/freebsd/bin/sleep/ |
H A D | sleep.c | 94 time_t original; in main() local 113 original = time_to_sleep.tv_sec = (time_t)seconds; in main() 124 (long)time_to_sleep.tv_sec, (long)original); in main()
|
/freebsd/tools/test/stress2/tools/ |
H A D | swap.c | 45 static unsigned long size, original; variable 113 original = size; in setup() 148 if (size != original) in test() 150 original / 1024 / 1024, size / 1024 / 1024); in test()
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | directive-for.mk | 68 . warning After the .for loop, var must still have its original value. 71 . warning After the .for loop, var2 must still have its original value. 82 . warning After the .for loop, var must still have its original value. 85 . warning After the .for loop, var2 must still have its original value.
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangASTSource.cpp | 302 ClangASTImporter::DeclOrigin original = m_ast_importer_sp->GetDeclOrigin(interface_decl); in CompleteType() local 304 if (original.Valid()) { in CompleteType() 306 dyn_cast<ObjCInterfaceDecl>(original.decl)) { in CompleteType() 408 ClangASTImporter::DeclOrigin original = m_ast_importer_sp->GetDeclOrigin(context_decl); in FindExternalLexicalDecls() local 410 if (!original.Valid()) in FindExternalLexicalDecls() 414 static_cast<void *>(original.ctx), in FindExternalLexicalDecls() 415 static_cast<void *>(original.decl), in FindExternalLexicalDecls() 416 ClangUtil::DumpDecl(original.decl)); in FindExternalLexicalDecls() 419 dyn_cast<ObjCInterfaceDecl>(original.decl)) { in FindExternalLexicalDecls() 424 original.decl = complete_iface_decl; in FindExternalLexicalDecls() [all …]
|
/freebsd/crypto/openssl/VMS/ |
H A D | translatesyms.pl | 39 (my $translated, my $original) = split /\$/; 40 $translations{$original} = $translated.'$';
|
/freebsd/contrib/pam_modules/pam_passwdqc/ |
H A D | passwdqc_check.c | 196 const char *haystack, const char *needle, const char *original) in is_based() argument 226 memcpy(scratch, original, i); in is_based() 227 memcpy(&scratch[i], &original[i + j], in is_based() 255 const char *needle, const char *original) in is_word_based() argument 266 if (is_based(params, unified, needle, original)) { in is_word_based()
|
/freebsd/contrib/sendmail/contrib/ |
H A D | README | 2 We will not fix bugs in these programs. Contact the original author 8 the original author, not to us.
|
/freebsd/sys/fs/cd9660/ |
H A D | cd9660_util.c | 165 int original, int assoc, int joliet_level, int flags, void *handle) in isofntrans() argument 177 if (!original && !joliet_level && c >= 'A' && c <= 'Z') in isofntrans() 179 else if (!original && c == ';') { in isofntrans()
|
/freebsd/contrib/pnglite/ |
H A D | LICENSE | 14 claim that you wrote the original software. If you use this software 19 misrepresented as being the original software.
|
/freebsd/sys/contrib/zlib/ |
H A D | LICENSE | 14 claim that you wrote the original software. If you use this software 18 misrepresented as being the original software.
|
/freebsd/usr.bin/indent/ |
H A D | README | 20 Thank you for your response about indent. I was wrong in my original 57 | original was version 6.) It was converted from its original filter 63 | original from the UofI. One is from Berkeley. 81 very original submission from the author to a unix tape, later the
|
/freebsd/contrib/capsicum-test/ |
H A D | README.md | 14 The original basis for these tests was: 17 …written by Robert Watson and Jonathan Anderson for the original FreeBSD 9.x Capsicum implementation 18 …capsicum_tests;hb=refs/heads/capsicum) written by Meredydd Luff for the original Capsicum-Linux po…
|