Home
last modified time | relevance | path

Searched refs:notes (Results 1 – 25 of 390) sorted by relevance

12345678910>>...16

/openbsd-src/games/battlestar/
H A Dcommand1.c43 if ((!notes[CANTMOVE] && !notes[LAUNCHED]) || in moveplayer()
45 (fuel > 0 && notes[LAUNCHED])) { in moveplayer()
57 if (notes[CANTMOVE] && !notes[LAUNCHED]) in moveplayer()
155 notes[CANTSEE] = 1; in news()
162 notes[CANTSEE] = 0; in news()
228 notes[CANTMOVE] = 1; in news()
230 notes[CANTMOVE] = 0; in news()
252 notes[LAUNCHED] = 0; in crash()
274 if (notes[LAUNCHED]) in newlocation()
280 if (!notes[CANTSEE] || TestBit(inven, LAMPON) || in newlocation()
H A Dcommand3.c45 if (!notes[DUG]) { in dig()
50 notes[DUG] = 1; in dig()
255 notes[JINXED]++; in shoot()
265 notes[JINXED]++; in shoot()
278 notes[JINXED]++; in shoot()
299 notes[JINXED]++; in shoot()
H A Dcommand2.c157 notes[CANTSEE] = 0; in use()
223 notes[JINXED]++; in murder()
230 notes[JINXED]++; in murder()
242 notes[JINXED]++; in murder()
252 notes[JINXED]++; in murder()
353 notes[CANTSEE] = 1; in follow()
H A Dcommand6.c46 if (TestBit(location[position].objects, VIPER) && !notes[CANTLAUNCH]) { in launch()
50 notes[LAUNCHED] = 1; in launch()
66 if (notes[LAUNCHED] && TestBit(location[position].objects, LAND) && in land()
68 notes[LAUNCHED] = 0; in land()
H A Dsave.c63 fread(notes, sizeof notes, 1, fp); in restore()
116 fwrite(notes, sizeof notes, 1, fp); in save()
/openbsd-src/gnu/usr.bin/perl/Porting/
H A Dgit-deltatool169 my $note = $log->notes;
201 $self->git->notes('edit', '-F', "$tempfh", $id);
242 @list = grep { ! $_->notes } @commits;
258 my @delta = split "\n", ($log->notes || '');
266 my $note = $log->notes or return '';
273 my $note = $log->notes or return '';
349 return unless my $notes = $log->notes;
350 say $lf ? "\n$notes" : $notes;
406 my $note = $log->notes;
414 my $old_note = $log->notes;
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_arm64.cpp23 llvm::ArrayRef<CoreNote> notes) { in Create() argument
26 DataExtractor sve_data = getRegset(notes, arch.GetTriple(), AARCH64_SVE_Desc); in Create()
33 DataExtractor pac_data = getRegset(notes, arch.GetTriple(), AARCH64_PAC_Desc); in Create()
41 gpregset, notes)); in Create()
46 const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) in RegisterContextCorePOSIX_arm64() argument
54 m_fpr_data = getRegset(notes, target_triple, FPR_Desc); in RegisterContextCorePOSIX_arm64()
57 m_sve_data = getRegset(notes, target_triple, AARCH64_SVE_Desc); in RegisterContextCorePOSIX_arm64()
60 m_pac_data = getRegset(notes, target_triple, AARCH64_PAC_Desc); in RegisterContextCorePOSIX_arm64()
H A DRegisterContextPOSIXCore_ppc64le.cpp24 const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) in RegisterContextCorePOSIX_ppc64le() argument
32 DataExtractor fpregset = getRegset(notes, arch.GetTriple(), FPR_Desc); in RegisterContextCorePOSIX_ppc64le()
38 DataExtractor vmxregset = getRegset(notes, arch.GetTriple(), PPC_VMX_Desc); in RegisterContextCorePOSIX_ppc64le()
44 DataExtractor vsxregset = getRegset(notes, arch.GetTriple(), PPC_VSX_Desc); in RegisterContextCorePOSIX_ppc64le()
H A DProcessElfCore.h173 llvm::Error parseFreeBSDNotes(llvm::ArrayRef<lldb_private::CoreNote> notes);
174 llvm::Error parseNetBSDNotes(llvm::ArrayRef<lldb_private::CoreNote> notes);
175 llvm::Error parseOpenBSDNotes(llvm::ArrayRef<lldb_private::CoreNote> notes);
176 llvm::Error parseLinuxNotes(llvm::ArrayRef<lldb_private::CoreNote> notes);
H A DRegisterContextPOSIXCore_powerpc.cpp21 const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) in RegisterContextCorePOSIX_powerpc() argument
29 DataExtractor fpregset = getRegset(notes, arch.GetTriple(), FPR_Desc); in RegisterContextCorePOSIX_powerpc()
35 DataExtractor vregset = getRegset(notes, arch.GetTriple(), PPC_VMX_Desc); in RegisterContextCorePOSIX_powerpc()
H A DProcessElfCore.cpp593 llvm::Error ProcessElfCore::parseFreeBSDNotes(llvm::ArrayRef<CoreNote> notes) { in parseFreeBSDNotes() argument
602 for (const auto &note : notes) { in parseFreeBSDNotes()
635 thread_data.notes.push_back(note); in parseFreeBSDNotes()
670 llvm::Error ProcessElfCore::parseNetBSDNotes(llvm::ArrayRef<CoreNote> notes) { in parseNetBSDNotes() argument
681 for (const auto &note : notes) { in parseNetBSDNotes()
726 thread_data.notes.push_back(note); in parseNetBSDNotes()
752 thread_data.notes.push_back(note); in parseNetBSDNotes()
778 thread_data.notes.push_back(note); in parseNetBSDNotes()
830 llvm::Error ProcessElfCore::parseOpenBSDNotes(llvm::ArrayRef<CoreNote> notes) { in parseOpenBSDNotes() argument
832 for (const auto &note : notes) { in parseOpenBSDNotes()
[all …]
H A DRegisterContextPOSIXCore_arm64.h24 llvm::ArrayRef<lldb_private::CoreNote> notes);
45 llvm::ArrayRef<lldb_private::CoreNote> notes);
H A DRegisterContextPOSIXCore_x86_64.cpp18 const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) in RegisterContextCorePOSIX_x86_64() argument
30 notes, register_info->GetTargetArchitecture().GetTriple(), FPR_Desc); in RegisterContextCorePOSIX_x86_64()
H A DRegisterContextPOSIXCore_mips64.cpp20 const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) in RegisterContextCorePOSIX_mips64() argument
28 notes, register_info->GetTargetArchitecture().GetTriple(), FPR_Desc); in RegisterContextCorePOSIX_mips64()
H A DRegisterContextPOSIXCore_s390x.cpp21 const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) in RegisterContextCorePOSIX_s390x() argument
29 notes, register_info->GetTargetArchitecture().GetTriple(), FPR_Desc); in RegisterContextCorePOSIX_s390x()
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperl.pod283 perlaix Perl notes for AIX
284 perlamiga Perl notes for AmigaOS
285 perlandroid Perl notes for Android
286 perlbs2000 Perl notes for POSIX-BC BS2000
287 perlcygwin Perl notes for Cygwin
288 perlfreebsd Perl notes for FreeBSD
289 perlhaiku Perl notes for Haiku
290 perlhpux Perl notes for HP-UX
291 perlhurd Perl notes for Hurd
292 perlirix Perl notes fo
[all...]
/openbsd-src/gnu/llvm/clang/docs/
H A DAPINotes.rst22 That's API notes.
24 API notes use a YAML-based file format. YAML is a format best explained by
28 notes for a hypothetical "SomeKit" framework.
34 API notes files are found relative to the module map that defines a module,
44 Clang will search for API notes files next to module maps only when passed the
45 ``-fapi-notes-modules`` option.
51 - Since they're identified by module name, API notes cannot be used to modify
58 Many API notes affect how a C API is imported into Swift. In order to change
59 that behavior while still remaining backwards-compatible, API notes can be
61 compiler (e.g. ``-fapi-notes-swift-version=5``). The rule is that an
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DOpts.td18 "--symbols, --relocations, --dynamic-table, --notes, --version-info, --unwind, "
59 def notes : FF<"notes", "Display notes">, Group<grp_elf>;
130 def : F<"n", "Alias for --notes">, Alias<notes>;
/openbsd-src/gnu/gcc/gcc/
H A Dinsn-notes.def22 NOTE_LINE_NUMBER field of a NOTE insn for kinds of notes that are
26 We are slowly removing the concept of insn-chain notes from the
29 mean, such as register notes or bits in the basic-block structure. */
/openbsd-src/distrib/
H A DMakefile3 SUBDIR= special notes
/openbsd-src/gnu/llvm/lld/docs/
H A DReleaseNotes.rst11 These are in-progress notes for the upcoming LLVM |release| release.
12 Release notes for previous releases can be found on
18 This document contains the release notes for the lld linker, release |release|.
/openbsd-src/gnu/llvm/llvm/lib/Target/AVR/
H A DREADME.md8 * [Architecture notes](https://github.com/avr-llvm/architecture)
/openbsd-src/gnu/usr.bin/perl/cpan/Text-Tabs/t/
H A Dfill.t31 notes to see what we fixed!
48 can check out our release notes to see what we fixed!
/openbsd-src/gnu/usr.bin/binutils/gas/
H A Dstabs.c209 saved_string_obstack_end = notes.next_free; in s_stab_generic()
349 if (saved_string_obstack_end == notes.next_free) in s_stab_generic()
350 obstack_free (&notes, string); in s_stab_generic()
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/
H A Dstabs.c206 saved_string_obstack_end = notes.next_free; in s_stab_generic()
344 if (saved_string_obstack_end == notes.next_free) in s_stab_generic()
345 obstack_free (&notes, string); in s_stab_generic()

12345678910>>...16