Searched refs:notes (Results 1 - 25 of 95) sorted by relevance

1234

/openbsd-current/distrib/
H A DMakefile3 SUBDIR= special notes
/openbsd-current/games/battlestar/
H A Dcommand1.c43 if ((!notes[CANTMOVE] && !notes[LAUNCHED]) ||
45 (fuel > 0 && notes[LAUNCHED])) {
57 if (notes[CANTMOVE] && !notes[LAUNCHED])
155 notes[CANTSEE] = 1;
162 notes[CANTSEE] = 0;
228 notes[CANTMOVE] = 1;
230 notes[CANTMOVE] = 0;
252 notes[LAUNCHE
[all...]
H A Dcommand6.c46 if (TestBit(location[position].objects, VIPER) && !notes[CANTLAUNCH]) {
50 notes[LAUNCHED] = 1;
66 if (notes[LAUNCHED] && TestBit(location[position].objects, LAND) &&
68 notes[LAUNCHED] = 0;
H A Dcommand3.c45 if (!notes[DUG]) {
50 notes[DUG] = 1;
255 notes[JINXED]++;
265 notes[JINXED]++;
278 notes[JINXED]++;
299 notes[JINXED]++;
H A Dcommand2.c157 notes[CANTSEE] = 0;
223 notes[JINXED]++;
230 notes[JINXED]++;
242 notes[JINXED]++;
252 notes[JINXED]++;
353 notes[CANTSEE] = 1;
H A Dglobals.c262 int notes[NUMOFNOTES]; variable
H A Dsave.c63 fread(notes, sizeof notes, 1, fp);
116 fwrite(notes, sizeof notes, 1, fp);
/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_arm64.cpp23 llvm::ArrayRef<CoreNote> notes) {
26 DataExtractor sve_data = getRegset(notes, arch.GetTriple(), AARCH64_SVE_Desc);
33 DataExtractor pac_data = getRegset(notes, arch.GetTriple(), AARCH64_PAC_Desc);
41 gpregset, notes));
46 const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes)
54 m_fpr_data = getRegset(notes, target_triple, FPR_Desc);
57 m_sve_data = getRegset(notes, target_triple, AARCH64_SVE_Desc);
60 m_pac_data = getRegset(notes, target_triple, AARCH64_PAC_Desc);
21 Create(Thread &thread, const ArchSpec &arch, const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) argument
44 RegisterContextCorePOSIX_arm64( Thread &thread, std::unique_ptr<RegisterInfoPOSIX_arm64> register_info, const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) argument
H A DRegisterContextPOSIXCore_arm64.h24 llvm::ArrayRef<lldb_private::CoreNote> notes);
45 llvm::ArrayRef<lldb_private::CoreNote> notes);
H A DRegisterContextPOSIXCore_powerpc.cpp21 const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes)
29 DataExtractor fpregset = getRegset(notes, arch.GetTriple(), FPR_Desc);
35 DataExtractor vregset = getRegset(notes, arch.GetTriple(), PPC_VMX_Desc);
19 RegisterContextCorePOSIX_powerpc( Thread &thread, RegisterInfoInterface *register_info, const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) argument
H A DRegisterContextPOSIXCore_ppc64le.cpp24 const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes)
32 DataExtractor fpregset = getRegset(notes, arch.GetTriple(), FPR_Desc);
38 DataExtractor vmxregset = getRegset(notes, arch.GetTriple(), PPC_VMX_Desc);
44 DataExtractor vsxregset = getRegset(notes, arch.GetTriple(), PPC_VSX_Desc);
22 RegisterContextCorePOSIX_ppc64le( Thread &thread, RegisterInfoInterface *register_info, const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) argument
H A DRegisterContextPOSIXCore_ppc64le.h22 llvm::ArrayRef<lldb_private::CoreNote> notes);
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_mips64.h23 llvm::ArrayRef<lldb_private::CoreNote> notes);
H A DRegisterContextPOSIXCore_arm.h23 llvm::ArrayRef<lldb_private::CoreNote> notes);
H A DRegisterContextPOSIXCore_s390x.h22 llvm::ArrayRef<lldb_private::CoreNote> notes);
H A DRegisterContextPOSIXCore_x86_64.h21 llvm::ArrayRef<lldb_private::CoreNote> notes);
H A DRegisterContextPOSIXCore_mips64.cpp20 const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes)
28 notes, register_info->GetTargetArchitecture().GetTriple(), FPR_Desc);
18 RegisterContextCorePOSIX_mips64( Thread &thread, RegisterInfoInterface *register_info, const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) argument
H A DRegisterContextPOSIXCore_s390x.cpp21 const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes)
29 notes, register_info->GetTargetArchitecture().GetTriple(), FPR_Desc);
19 RegisterContextCorePOSIX_s390x( Thread &thread, RegisterInfoInterface *register_info, const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) argument
H A DRegisterContextPOSIXCore_x86_64.cpp18 const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes)
30 notes, register_info->GetTargetArchitecture().GetTriple(), FPR_Desc);
16 RegisterContextCorePOSIX_x86_64( Thread &thread, RegisterInfoInterface *register_info, const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) argument
H A DRegisterContextPOSIXCore_arm.cpp20 const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes)
18 RegisterContextCorePOSIX_arm( Thread &thread, std::unique_ptr<RegisterInfoPOSIX_arm> register_info, const DataExtractor &gpregset, llvm::ArrayRef<CoreNote> notes) argument
H A DRegisterContextPOSIXCore_powerpc.h22 llvm::ArrayRef<lldb_private::CoreNote> notes);
H A DProcessElfCore.cpp254 // the main executable using data we found in the core file notes.
526 "Error parsing NetBSD core(5) notes: Unsupported procinfo version",
532 "Error parsing NetBSD core(5) notes: Unsupported procinfo size",
593 llvm::Error ProcessElfCore::parseFreeBSDNotes(llvm::ArrayRef<CoreNote> notes) {
602 for (const auto &note : notes) {
635 thread_data.notes.push_back(note);
650 /// NetBSD ELF core files use notes to provide information about
664 /// machine-dependent space) to identify register info notes. The
665 /// info in such notes is in the same format that ptrace(2) would
670 llvm::Error ProcessElfCore::parseNetBSDNotes(llvm::ArrayRef<CoreNote> notes) {
[all...]
/openbsd-current/gnu/usr.bin/perl/Porting/
H A Dgit-deltatool169 my $note = $log->notes;
201 $self->git->notes('edit', '-F', "$tempfh", $id);
205 # git notes won't take an empty file as input
206 system("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;
[all...]
/openbsd-current/gnu/usr.bin/gcc/contrib/
H A Dgennews3 # Script to generate the NEWS file from online release notes.
38 automatically from the online release notes. It covers releases of GCC

Completed in 135 milliseconds

1234