/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | DAGDeltaAlgorithm.cpp | 122 /// ExecuteOneTest - Execute a single test predicate on the change set \p S. 182 for (change_ty Change : Changes) { in DAGDeltaAlgorithmImpl() local 183 Predecessors.insert(std::make_pair(Change, std::vector<change_ty>())); in DAGDeltaAlgorithmImpl() 184 Successors.insert(std::make_pair(Change, std::vector<change_ty>())); in DAGDeltaAlgorithmImpl() 192 for (change_ty Change : Changes) in DAGDeltaAlgorithmImpl() local 193 if (succ_begin(Change) == succ_end(Change)) in DAGDeltaAlgorithmImpl() 194 Roots.push_back(Change); in DAGDeltaAlgorithmImpl() 199 change_ty Change = Worklist.back(); in DAGDeltaAlgorithmImpl() local 202 std::set<change_ty> &ChangeSuccs = SuccClosure[Change]; in DAGDeltaAlgorithmImpl() 203 for (pred_iterator_ty it = pred_begin(Change), in DAGDeltaAlgorithmImpl() [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_change-key/ |
H A D | zfs_change-key_location.ksh | 26 # 'zfs change-key -o' should change the keylocation. 30 # 2. Change the key location to 'prompt' 34 # 6. Attempt to change the key location to 'none' 35 # 7. Attempt to change the key location to an invalid value 47 log_assert "'zfs change-key -o' should change the keylocation" 54 log_must eval "echo $PASSPHRASE1 | zfs change-key -o keylocation=prompt" \ 62 log_mustnot zfs change-key -o keylocation=none $TESTPOOL/$TESTFS1 63 log_mustnot zfs change-key -o keylocation=foobar $TESTPOOL/$TESTFS1 65 log_pass "'zfs change-key -o' changes the keylocation"
|
H A D | zfs_change-key_load.ksh | 26 # 'zfs change-key -l' should load a dataset's key to change it. 31 # 3. Attempt to change the key 33 # 3. Attempt to change the key 45 log_assert "'zfs change-key -l' should load a dataset's key to change it" 53 log_must zfs change-key -l $TESTPOOL/$TESTFS1 56 log_must zfs change-key -l $TESTPOOL/$TESTFS1 58 log_pass "'zfs change-key -l' loads a dataset's key to change it"
|
H A D | zfs_change-key_child.ksh | 26 # 'zfs change-key' should promote an encrypted child to an encryption root. 32 # 4. Attempt to change the key without any flags 33 # 5. Attempt to change the key specifying keylocation 34 # 6. Attempt to change the key specifying keyformat 37 # 9. Attempt to change the key specifying both the keylocation and keyformat 52 log_assert "'zfs change-key' should promote an encrypted child to an" \ 60 log_mustnot eval "echo $PASSPHRASE2 | zfs change-key" \ 63 log_mustnot eval "echo $PASSPHRASE2 | zfs change-key -o keylocation=prompt" \ 66 log_must eval "echo $PASSPHRASE2 | zfs change-key -o keyformat=passphrase" \ 79 log_must eval "echo $PASSPHRASE2 | zfs change-key -o keyformat=passphrase" \ [all …]
|
H A D | zfs_change-key_format.ksh | 27 # 'zfs change-key -o' should change the key format. 33 # 4. Change the key format to hex 36 # 7. Change the key format to raw 50 log_assert "'zfs change-key -o' should change the key format" 58 log_must eval "echo $HEXKEY | zfs change-key -o keyformat=hex" \ 65 log_must eval "printf '%s' $RAWKEY | zfs change-key -o keyformat=raw" \ 72 log_pass "'zfs change-key -o' changes the key format"
|
H A D | zfs_change-key.ksh | 26 # 'zfs change-key' should change the key material. 30 # 2. Attempt to change the key 47 log_assert "'zfs change-key' should change the key material" 51 log_must eval "echo $PASSPHRASE2 | zfs change-key $TESTPOOL/$TESTFS1" 62 log_pass "'zfs change-key' changes the key material"
|
/freebsd/sys/contrib/openzfs/.github/ |
H A D | PULL_REQUEST_TEMPLATE.md | 11 <!--- Why is this change required? What problem does it solve? --> 20 <!--- see how your change affects other areas of the code, etc. --> 21 <!--- If your change is a performance enhancement, please provide benchmarks here. --> 26 - [ ] Bug fix (non-breaking change which fixes an issue) 27 - [ ] New feature (non-breaking change which adds functionality) 28 - [ ] Performance enhancement (non-breaking change which improves efficiency) 29 - [ ] Code cleanup (non-breaking change which makes code smaller or more readable) 30 - [ ] Breaking change (fix or feature that would cause existing functionality to change) 31 - [ ] Library ABI change (libzfs, libzfs\_core, libnvpair, libuutil and libzfsbootenv) 32 - [ ] Documentation (a change to man pages or other documentation) [all …]
|
/freebsd/contrib/elftoolchain/elfcopy/ |
H A D | elfcopy.1 | 55 .Fl -change-section-address Ar section Ns {+|-|=} Ns Ar val 59 .Fl -change-start Ns = Ns Ar increment 63 .Fl -change-addresses Ns = Ns Ar increment 65 .Op Fl -adjust-warnings | Fl -change-warnings 66 .Op Fl -change-section-lma Ar section Ns {+|-|=} Ns Ar val 67 .Op Fl -change-section-vma Ar section Ns {+|-|=} Ns Ar val 74 .Op Fl -no-adjust-warnings | Fl -no-change-warnings 192 .Fl -change-section-address Ar section Ns {+|-|=} Ns Ar val 204 .Fl -change-start Ns = Ns Ar increment 211 .Fl -change-addresses Ns = Ns Ar increment [all …]
|
/freebsd/contrib/bsddialog/ |
H A D | CHANGELOG | 3 Utility internal refactoring (no functional change): 4 * change: rename an internal constant to avoid a future conflict 11 change: --form and --mixedform do not print field value to output fd if 23 * change: <maxletters> 0 was an error (remains error in lib). 24 * change: <fieldlen> 0 was an error (remains error in lib) 34 * change: truncate mixedgauge long (over the screen/minibars) 37 * change: invert UP/DOWN keys to set a rangebox value. 44 * change: Box-drawing characters, from utf8 to wide chars to avoid to 98 * change: rename themes --theme <3d|blackwhite|flat>. 99 * change [all...] |
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/ |
H A D | tst.localtcpstate.ksh.out | 7 tcp:::state-change to syn-sent - yes 8 tcp:::state-change to syn-received - yes 9 tcp:::state-change to established - yes 10 tcp:::state-change to fin-wait-1 - yes 11 tcp:::state-change to close-wait - yes 12 tcp:::state-change to fin-wait-2 - yes 13 tcp:::state-change to last-ack - yes 14 tcp:::state-change to time-wait - yes
|
H A D | tst.localsctpstate.ksh.out | 7 sctp:::state-change to cookie-wait - yes 8 sctp:::state-change to cookie-echoed - yes 9 sctp:::state-change to established - yes 10 sctp:::state-change to shutdown-sent - yes 11 sctp:::state-change to shutdown-received - yes 12 sctp:::state-change to shutdown-ack-sent - yes
|
H A D | tst.remotetcpstate.ksh.out | 7 tcp:::state-change to syn-sent - yes 8 tcp:::state-change to established - yes 9 tcp:::state-change to fin-wait-1 - yes 10 tcp:::state-change to close-wait - yes 11 tcp:::state-change to fin-wait-2 - yes 12 tcp:::state-change to time-wait - yes
|
/freebsd/contrib/diff/src/ |
H A D | context.c | 35 static struct change *find_hunk (struct change *); 36 static void mark_ignorable (struct change *); 37 static void pr_context_hunk (struct change *); 38 static void pr_unidiff_hunk (struct change *); 91 print_context_script (struct change *script, bool unidiff) in print_context_script() 97 struct change *e; in print_context_script() 157 pr_context_hunk (struct change *hunk) in pr_context_hunk() 203 struct change *next = hunk; in pr_context_hunk() 217 /* The change NEXT covers this line. in pr_context_hunk() 232 struct change *next = hunk; in pr_context_hunk() [all …]
|
H A D | diff.h | 207 /* The result of comparison is an "edit script": a chain of `struct change'. 208 Each `struct change' represents one place where some lines are deleted 218 struct change struct 220 struct change *link; /* Previous or next edit command */ argument 325 void print_context_script (struct change *, bool); 331 void print_ed_script (struct change *); 332 void pr_forward_ed_script (struct change *); 335 void print_ifdef_script (struct change *); 342 void print_normal_script (struct change *); 345 void print_rcs_script (struct change *); [all …]
|
/freebsd/contrib/netbsd-tests/usr.sbin/mtree/ |
H A D | d_merge.in | 7 ./a/change-dir-to-link type=dir mode=0755 8 ./a/change-dir-to-link type=link mode=0755 12 ./b/change-link-to-dir type=link mode=0755 13 ./b/change-link-to-dir type=dir mode=0755 19 ./c/change-dir-to-link type=dir mode=0755 20 ./c/change-dir-to-link type=link mode=0755 26 ./d/change-link-to-dir type=link mode=0755 27 ./d/change-link-to-dir type=dir mode=0755
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | WhitespaceManager.h | 87 /// Represents a change before a token, a break inside a token, 89 struct Change { struct 94 bool operator()(const Change &C1, const Change &C2) const; argument 100 /// Creates a \c Change. 102 /// The generated \c Change will replace the characters at 109 Change(const FormatToken &Tok, bool CreateReplacement, 115 // The kind of the token whose whitespace this change replaces, or in which 116 // this change inserts whitespace. 139 // If this change is inside of a token but not at the start of the token or 154 // If this Change represents a continuation of a block comment, argument [all …]
|
/freebsd/crypto/heimdal/lib/asn1/ |
H A D | setchgpw2.asn1 | 39 -- Change password 40 Req-change-pw ::= SEQUENCE { 47 Rep-change-pw ::= SEQUENCE { 53 Err-change-pw ::= SEQUENCE { 60 pw-change-too-short(4), 67 -- Change/Set keys 134 change-pw[1] Req-change-pw, 144 change-pw[1] Rep-change-pw, 154 change-pw[1] Err-change-pw,
|
/freebsd/sbin/fsdb/ |
H A D | fsdb.8 | 157 Change the i-number in directory entry 163 Change the name in directory entry 172 Change the type of the current inode to 183 Change the mode bits of the current inode to 185 You cannot change the file type with this subcommand; use 190 Change the file flags of the current inode to 194 Change the owner of the current inode to 198 Change the group of the current inode to 202 Change the generation number of the current inode to 209 Change the creation (birth), modification, change, or access
|
/freebsd/tools/tools/git/ |
H A D | HOWTO | 28 gives your reviewers the necessary context to understand your change. 37 to a review, the mailing list will be emailed for every comment or change 40 list announcing all of the reviews and giving a short summary of the change 43 3. When you need to make a change and upload it to a review, use the following 49 Next, make your change and perform whatever testing is necessary. Commit it 54 You can upload the change to the code review by running this command in your 60 change the message that will be shown in Differential for this upload. It's 61 recommended that you change it from the default "fixup! ...." as that does 70 a change that requires your commit to be based off of a later version of 71 head, I would suggest deferring the change from the review and creating a [all …]
|
/freebsd/contrib/ntp/sntp/libevent/ |
H A D | Makefile.am | 32 # If the ABI didn't change: 53 # 2.0.10-stable-- 2.0 5:1:0 (No ABI change) 55 # 2.0.12-stable-- 2.0 6:1:1 (No ABI change) 56 # 2.0.13-stable-- 2.0 6:2:1 (No ABI change) 57 # 2.0.14-stable-- 2.0 6:3:1 (No ABI change) 59 # 2.0.16-stable-- 2.0 6:4:1 (No ABI change) 60 # 2.0.17-stable-- 2.0 6:5:1 (No ABI change) 61 # 2.0.18-stable-- 2.0 6:6:1 (No ABI change) 62 # 2.0.19-stable-- 2.0 6:7:1 (No ABI change) 63 # 2.0.20-stable-- 2.0 6:8:1 (No ABI change) [all …]
|
/freebsd/contrib/libevent/ |
H A D | Makefile.am | 32 # If the ABI didn't change: 53 # 2.0.10-stable-- 2.0 5:1:0 (No ABI change) 55 # 2.0.12-stable-- 2.0 6:1:1 (No ABI change) 56 # 2.0.13-stable-- 2.0 6:2:1 (No ABI change) 57 # 2.0.14-stable-- 2.0 6:3:1 (No ABI change) 59 # 2.0.16-stable-- 2.0 6:4:1 (No ABI change) 60 # 2.0.17-stable-- 2.0 6:5:1 (No ABI change) 61 # 2.0.18-stable-- 2.0 6:6:1 (No ABI change) 62 # 2.0.19-stable-- 2.0 6:7:1 (No ABI change) 63 # 2.0.20-stable-- 2.0 6:8:1 (No ABI change) [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIModeRegister.cpp | 61 // produce the delta required to change the Mode to the required Mode 87 Status Change; member in BlockData 98 // which is used in Phase 3 if we need to insert a mode change. 218 // It is possible (though unlikely) for an instruction to require a change to 241 // - update the Change status, which tracks the changes to the Mode register 256 // - on exit we have set the Require, Change, and initial Exit modes. 287 insertSetreg(MBB, InsertionPoint, TII, IPChange.delta(NewInfo->Change)); in processBlockPhase1() 301 NewInfo->Change = NewInfo->Change.merge(Setreg); in processBlockPhase1() 303 NewInfo->Change = NewInfo->Change.mergeUnknown(Mask); in processBlockPhase1() 305 } else if (!NewInfo->Change.isCompatible(InstrMode)) { in processBlockPhase1() [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/ |
H A D | projectquota_009_pos.ksh | 36 # The project{obj}quota will not change during zfs actions, such as 43 # 3. Check the project{obj}quota can not change during zfs 45 # 4. Check the project{obj}quota can not change during zfs clone 46 # 5. Check the project{obj}quota can not change during zfs send/receive 58 log_assert "the project{obj}quota can't change during zfs actions" 89 log_note "zfs promote can not change the previously set project{obj}quota" 99 log_note "zfs send receive can not change the previously set project{obj}quota" 109 log_note "zfs rename can not change the previously set project{obj}quota" 119 log_note "zfs upgrade can not change the previously set project{obj}quota" 129 log_pass "the project{obj}quota can't change during zfs actions"
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/ |
H A D | userquota_011_pos.ksh | 37 # the userquota and groupquota will not change during zfs actions, such as 44 # 3. Check the user|group quota can not change during zfs rename|upgrade|promote 45 # 4. Check the user|group quota can not change during zfs clone 46 # 5. Check the user|group quota can not change during zfs send/receive 59 "the userquota and groupquota can't change during zfs actions" 88 log_note "zfs promote can not change the previously set user|group quota" 97 log_note "zfs send receive can not change the previously set user|group quota" 106 log_note "zfs rename can not change the previously set user|group quota" 115 log_note "zfs upgrade can not change the previously set user|group quota" 125 "the userquota and groupquota can't change during zfs actions"
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_diff/ |
H A D | zfs_diff_changes.ksh | 37 # Verify object $path has $change type 44 function verify_object_change # <path> <change> 47 change="$2" 51 if [[ "$diffchg" != "$change" ]]; then 52 log_fail "Unexpected change for $path ('$diffchg' != '$change')" 54 log_note "Object $path change is displayed correctly: '$change'"
|