Searched refs:original (Results 26 - 50 of 90) sorted by relevance

1234

/freebsd-current/tools/tools/git/
H A Dcandidatematch.lua6 -- to-file specifies the original hashes of commits already merged to the
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp303 ClangASTImporter::DeclOrigin original = m_ast_importer_sp->GetDeclOrigin(interface_decl); local
305 if (original.Valid()) {
307 dyn_cast<ObjCInterfaceDecl>(original.decl)) {
409 ClangASTImporter::DeclOrigin original = m_ast_importer_sp->GetDeclOrigin(context_decl); local
411 if (!original.Valid())
415 static_cast<void *>(original.ctx),
416 static_cast<void *>(original.decl),
417 ClangUtil::DumpDecl(original.decl));
420 dyn_cast<ObjCInterfaceDecl>(original.decl)) {
425 original
936 ClangASTImporter::DeclOrigin original = m_ast_importer_sp->GetDeclOrigin(interface_decl); local
[all...]
H A DClangASTSource.h212 ClangASTSourceProxy(ClangASTSource &original) : m_original(original) {} argument
/freebsd-current/contrib/cortex-strings/src/arm/
H A Dmemset.S65 @ returns original address in r0
/freebsd-current/contrib/llvm-project/compiler-rt/lib/BlocksRuntime/
H A Druntime.c53 long original = InterlockedCompareExchange(dst, newl, oldl); local
54 return (original == oldl);
59 int original = InterlockedCompareExchange(dst, newi, oldi); local
60 return (original == oldi);
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/snapshot/
H A Drollback_002_pos.ksh45 # 6. Remove the original files
121 FILE_COUNT=$(ls -A $TESTDIR/original* $TESTDIR/afterfirst* | wc -l)
124 log_fail "$TESTDIR contains $FILE_COUNT original* files(s)."
/freebsd-current/contrib/arm-optimized-routines/string/arm/
H A Dmemset.S40 @ returns original address in r0
/freebsd-current/share/examples/ipfw/
H A Dchange_rules.sh126 seconds, the original rules will be restored.
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/
H A Dauto_replace_001_pos.ksh94 [[ -z "$part_uuid" ]] || log_note original disk GPT uuid ${part_uuid}
/freebsd-current/contrib/capsicum-test/
H A Dprocdesc.cc478 // Child has been reaped, so original process descriptor dangles but
518 sighandler_t original = signal(SIGCHLD, handle_signal); local
540 signal(SIGCHLD, original);
544 sighandler_t original = signal(SIGCHLD, handle_signal); local
568 signal(SIGCHLD, original);
809 sighandler_t original = signal(SIGCHLD, handle_signal); local
816 signal(SIGCHLD, original);
824 sighandler_t original = signal(SIGCHLD, handle_signal); local
838 signal(SIGCHLD, original);
1034 // Child: close our copy of the original proces
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-order-shuffle.mk37 # Sorting after shuffling must produce the original numbers.
H A Dvarparse-undef-partial.mk36 # In contrast to the previous line, evaluating the original LIST again now
H A Ddirective-for.mk68 . 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-current/sbin/gvinum/
H A Dgvinum.c186 char original[BUFSIZ], tmpfile[20], *token[GV_MAXARGS]; local
259 * Copy the original input line in case we need it for error
262 strlcpy(original, buf, sizeof(original));
276 warnx("line %d: '%s'", line, original);
300 warnx("line %d: '%s'", line, original);
337 warnx("line %d: '%s'", line, original);
371 warnx("line %d: '%s'", line, original);
384 warnx("line %d: '%s'", line, original);
/freebsd-current/contrib/bmake/mk/
H A Dtarget-flags.mk27 # variables. The original version of this macro file did
/freebsd-current/sys/dev/sfxge/common/
H A Dsiena_nic.c624 efx_oword_t original; local
634 EFSYS_BAR_READO(enp->en_esbp, rsp->address, &original,
642 reg = original;
674 EFSYS_BAR_WRITEO(enp->en_esbp, rsp->address, &original,
689 EFSYS_BAR_WRITEO(enp->en_esbp, rsp->address, &original, B_TRUE);
/freebsd-current/contrib/sendmail/contrib/
H A Ddoublebounce.pl7 # Based on the original doublebounce.pl code by jr@terra.net, 12/4/97.
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
156 # Found the original message
195 # Start with the original (inner) sender
206 syslog('info', 'Unable to find original sender, falling back.');
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DRelocations.h134 JumpModType original; member in struct:lld::elf::JumpInstrMod
180 // a relocation back to its original non-Thunk target, and restore the
181 // original addend, so we cannot fold offset + addend. A nested pair is used
/freebsd-current/contrib/kyua/utils/sqlite/
H A Dstatement.cpp57 /// \param original The native SQLite 3 data type.
61 c_type_to_cxx(const int original) argument
63 switch (original) {
560 /// string, so the original string object does not have to remain live. We
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DOptions.cpp862 // Given a permuted argument, find it's position in the original Args vector.
864 const Args &original) {
866 original, [arg](const Args::ArgEntry &D) { return D.c_str() == arg; });
869 // Given a permuted argument, find it's index in the original Args vector.
870 static size_t FindOriginalIndex(const char *arg, const Args &original) {
871 return std::distance(original.begin(), FindOriginalIter(arg, original));
874 // Construct a new Args object, consisting of the entries from the original
877 const Args &original) {
880 auto pos = FindOriginalIter(arg, original);
[all...]
/freebsd-current/sys/dev/sound/pci/hda/
H A Dhdaa.h124 uint32_t original; member in struct:hdaa_widget::__anon4585::__anon4586
/freebsd-current/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception.h46 // You can access original function by calling REAL(foo)(bar, baz).
124 const __sanitizer::uptr original; member in struct:interpose_substitution
/freebsd-current/contrib/bionic-x86_64-string/
H A Dsse2-memmove-slm.S71 # define ALIAS_SYMBOL(alias, original) \
73 .equ alias, original
/freebsd-current/share/mk/
H A Datf.test.mk123 # Former array is iterated to construct Kyuafile, where original file
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc1534 std::error_code CodePageToUTF16(unsigned codepage, llvm::StringRef original,
1536 if (!original.empty()) {
1538 ::MultiByteToWideChar(codepage, MB_ERR_INVALID_CHARS, original.begin(),
1539 original.size(), utf16.begin(), 0);
1549 ::MultiByteToWideChar(codepage, MB_ERR_INVALID_CHARS, original.begin(),
1550 original.size(), utf16.begin(), utf16.size());

Completed in 323 milliseconds

1234