| /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 | 123 typeset -r original="${srcdir}/original" 137 dd if=/dev/urandom of=$original bs=$filesize count=1 2>/dev/null 141 openssl base64 -A > $original 144 clonefile -f $original "${clone}-tmp" 157 log_must truncate_test -s $filesize -f $original 168 typeset -r original_checksum=$(xxh128digest $original) 173 clonefile -f $original "${clone}0" 178 clonefile -f $original "${clone}1" 180 clonefile -f $original "${clone}1" 191 clonefile -f $original "${clone}4" [all …]
|
| /freebsd/crypto/openssl/test/ |
| H A D | bio_comp_test.c | 28 static unsigned char *original = NULL; variable 54 osize = BIO_write(bcomp, original, size); in do_bio_comp_test() 68 || !TEST_mem_eq(original, osize, result, rsize)) in do_bio_comp_test() 86 original = OPENSSL_malloc(BUFFER_SIZE); in do_bio_comp() 89 if (!TEST_ptr(original) || !TEST_ptr(result)) in do_bio_comp() 95 memset(original, 0, BUFFER_SIZE); in do_bio_comp() 99 memset(original, 1, BUFFER_SIZE); in do_bio_comp() 104 original[i] = i & 0xFF; in do_bio_comp() 108 if (!TEST_int_gt(RAND_bytes(original, BUFFER_SIZE), 0)) in do_bio_comp() 119 OPENSSL_free(original); in do_bio_comp()
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/snapshot/ |
| H A D | snapshot_006_pos.ksh | 96 log_must tar cf $SNAPSHOT_TARDIR/original.tar . 111 log_must mkdir $TESTDIR1/original mkdir $TESTDIR1/snapshot 114 log_must cd $TESTDIR1/original 115 log_must tar xf $SNAPSHOT_TARDIR/original.tar 122 log_must directory_diff $TESTDIR1/original $TESTDIR1/snapshot
|
| H A D | snapshot_002_pos.ksh | 87 log_must tar cf $SNAPSHOT_TARDIR/original.tar . 102 log_must mkdir $TESTDIR/original $TESTDIR/snapshot 105 log_must cd $TESTDIR/original 106 log_must tar xf $SNAPSHOT_TARDIR/original.tar 113 log_must directory_diff $TESTDIR/original $TESTDIR/snapshot
|
| /freebsd/tools/tools/locale/tools/ |
| H A D | finalize | 143 for original in ${keep} 145 cp ${old}/${original} ${new}/ 171 for original in ${keep} 173 cp ${old}/${original}.src ${new}/ 178 for original in ${keep} 180 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/share/vt/keymaps/ |
| H A D | us.intl.acc.kbd | 2 # Differences to the original: 4 # alt shift 9 yields 0x93 (original: empty) 5 # alt shift 0 yields 0x94 (original: empty) 6 # alt shift - yields � (original: empty) 7 # alt shift . yields � (original: empty) 8 # alt shift / yields � (original: empty) 9 # ^ - yields � (original: empty) 10 # ^ shift - yields � (original: empty) 11 # ^ shift . yields � (original: empty)
|
| /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/contrib/openzfs/contrib/icp/gcm-simd/boringssl/ |
| H A D | README | 1 This directory contains the original BoringSSL [1] GCM x86-64 assembly 6 The main purpose to include these files (and the original ones) here, is to
|
| /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.
|