| /openbsd-src/usr.sbin/pkg_add/OpenBSD/ |
| H A D | Handle.pm | 44 if (defined $self->location) { 46 $self->location->close_with_client_error; 48 $self->location->close_now; 50 $self->location->wipe_info; 72 } elsif (defined $self->{location}) { 73 $self->{pkgname} = $self->{location}->name; 85 sub location($self) subroutine 87 return $self->{location}; 99 } elsif (defined $self->{location} && 100 defined $self->{location}{update_info}) { [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | AssertFrameRecognizer.cpp | 37 bool GetAbortLocation(llvm::Triple::OSType os, SymbolLocation &location) { in GetAbortLocation() argument 41 location.module_spec = FileSpec("libsystem_kernel.dylib"); in GetAbortLocation() 42 location.symbols.push_back(ConstString("__pthread_kill")); in GetAbortLocation() 45 location.module_spec = FileSpec("libc.so.6"); in GetAbortLocation() 46 location.symbols.push_back(ConstString("raise")); in GetAbortLocation() 47 location.symbols.push_back(ConstString("__GI_raise")); in GetAbortLocation() 48 location.symbols.push_back(ConstString("gsignal")); in GetAbortLocation() 49 location.symbols.push_back(ConstString("pthread_kill")); in GetAbortLocation() 50 location.symbols_are_regex = true; in GetAbortLocation() 70 bool GetAssertLocation(llvm::Triple::OSType os, SymbolLocation &location) { in GetAssertLocation() argument [all …]
|
| /openbsd-src/games/battlestar/ |
| H A D | command3.c | 46 SetBit(location[position].objects, DEADWOOD); in dig() 47 SetBit(location[position].objects, COMPASS); in dig() 48 SetBit(location[position].objects, KNIFE); in dig() 49 SetBit(location[position].objects, MACE); in dig() 94 SetBit(location[position].objects, n); in jump() 111 …if (wordtype[wordnumber] == NOUNS && (TestBit(location[position].objects, value) || value == BODY)… in bury() 115 if (TestBit(inven, MAID) || TestBit(location[position].objects, MAID)) in bury() 117 if (TestBit(inven, DEADWOOD) || TestBit(location[position].objects, DEADWOOD)) in bury() 119 if (TestBit(inven, DEADGOD) || TestBit(location[position].objects, DEADGOD)) in bury() 121 if (TestBit(inven, DEADTIME) || TestBit(location[position].objects, DEADTIME)) in bury() [all …]
|
| H A D | command2.c | 142 location[position].down = 160; in use() 143 whichway(location[position]); in use() 218 if (TestBit(location[position].objects, BATHGOD)) { in murder() 220 ClearBit(location[position].objects, BATHGOD); in murder() 221 SetBit(location[position].objects, DEADGOD); in murder() 225 if (TestBit(location[position].objects, NORMGOD)) { in murder() 227 ClearBit(location[position].objects, NORMGOD); in murder() 228 SetBit(location[position].objects, DEADGOD); in murder() 237 if (TestBit(location[position].objects, TIMER)) { in murder() 239 ClearBit(location[position].objects, TIMER); in murder() [all …]
|
| H A D | command6.c | 46 if (TestBit(location[position].objects, VIPER) && !notes[CANTLAUNCH]) { in launch() 48 ClearBit(location[position].objects, VIPER); in launch() 49 position = location[position].up; in launch() 66 if (notes[LAUNCHED] && TestBit(location[position].objects, LAND) && in land() 67 location[position].down) { in land() 69 position = location[position].down; in land() 70 SetBit(location[position].objects, VIPER); in land() 183 if (TestBit(location[position].objects, CAR)) { in drive() 186 ClearBit(location[position].objects, CAR); in drive() 187 SetBit(location[position].objects, CRASH); in drive() [all …]
|
| H A D | command1.c | 44 TestBit(location[position].objects, LAND) || in moveplayer() 53 whichway(location[position]); in moveplayer() 81 location = nightfile; in convert() 88 location = dayfile; in convert() 113 if (location == nightfile) { in news() 122 ClearBit(location[POOLS].objects, BATHGOD); in news() 137 if (TestBit(location[position].objects, ELF)) { in news() 141 if (TestBit(location[position].objects, DARK)) { in news() 145 if (TestBit(location[position].objects, WOODSMAN)) { in news() 165 if (TestBit(location[position].objects, GIRL)) in news() [all …]
|
| H A D | command4.c | 132 if (TestBit(location[position].objects, AMULET)) { in take() 143 if (TestBit(location[position].objects, MEDALION)) { in take() 151 if (TestBit(location[position].objects, TALISMAN)) { in take() 158 …if (TestBit(location[position].objects, BATHGOD) && (TestBit(wear, AMULET) || TestBit(inven, AMULE… in take() 166 ClearBit(location[position].objects, BATHGOD); in take() 168 if (!TestBit(location[position].objects, BATHGOD)) in take() 210 deposit = location[position].up * (location[position].access || position == FINAL); in throw() 214 deposit = location[position].down; in throw() 220 if (deposit && TestBit(location[position].objects, value)) { in throw() 221 ClearBit(location[position].objects, value); in throw() [all …]
|
| H A D | command5.c | 45 && TestBit(location[position].objects, BATHGOD)) { in kiss() 51 if (TestBit(location[position].objects, wordvalue[wordnumber])) { in kiss() 98 if ((TestBit(location[position].objects, BATHGOD) || in love() 99 TestBit(location[position].objects, NORMGOD)) && in love() 121 SetBit(location[position].objects, MEDALION); in love() 132 if (TestBit(location[position].objects, wordvalue[wordnumber])) { in love() 172 if (location[position].down) { in zzz() 173 position = location[position].down; in zzz() 188 SetBit(location[position].objects, n); in zzz() 196 SetBit(location[position].objects, DEADWOOD); in zzz() [all …]
|
| H A D | save.c | 55 location = tmp ? dayfile : nightfile; in restore() 57 fread(location[n].link, sizeof location[n].link, 1, fp); in restore() 58 fread(location[n].objects, sizeof location[n].objects, 1, fp); in restore() 107 tmp = location == dayfile; in save() 110 fwrite(location[n].link, sizeof location[n].link, 1, fp); in save() 111 fwrite(location[n].objects, sizeof location[n].objects, 1, fp); in save()
|
| H A D | cypher.c | 109 if (location[position].access || tempwiz) { in cypher() 110 if (!location[position].access) in cypher() 112 if (!moveplayer(location[position].up, AHEAD)) in cypher() 122 if (!moveplayer(location[position].down, AHEAD)) in cypher() 152 verb_with_all(location[position].objects, OBJ_PERSON, in cypher() 161 if (TestBit(location[position].objects, n) && objsht[n]) { in cypher() 187 wordnumber = take(location[position].objects); in cypher() 193 take(location[position].objects); in cypher() 223 (TestBit(location[position].objects, n) && objsht[n])) { in cypher() 244 verb_with_all(location[position].objects, 0, puton, "put on"); in cypher() [all …]
|
| /openbsd-src/gnu/llvm/clang/tools/libclang/ |
| H A D | CXSourceLocation.cpp | 200 int clang_Location_isInSystemHeader(CXSourceLocation location) { in clang_Location_isInSystemHeader() argument 202 SourceLocation::getFromRawEncoding(location.int_data); in clang_Location_isInSystemHeader() 207 *static_cast<const SourceManager*>(location.ptr_data[0]); in clang_Location_isInSystemHeader() 211 int clang_Location_isFromMainFile(CXSourceLocation location) { in clang_Location_isFromMainFile() argument 213 SourceLocation::getFromRawEncoding(location.int_data); in clang_Location_isFromMainFile() 218 *static_cast<const SourceManager*>(location.ptr_data[0]); in clang_Location_isFromMainFile() 222 void clang_getExpansionLocation(CXSourceLocation location, in clang_getExpansionLocation() argument 227 if (!isASTUnitSourceLocation(location)) { in clang_getExpansionLocation() 228 CXLoadedDiagnostic::decodeLocation(location, file, line, column, offset); in clang_getExpansionLocation() 232 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data); in clang_getExpansionLocation() [all …]
|
| /openbsd-src/gnu/llvm/lldb/examples/python/ |
| H A D | diagnose_nsstring.py | 10 def read_memory(process, location, size): argument 14 byte = process.ReadUnsignedFromMemory(x + location, 1, error) 147 location = 2 * ptr_size + nsstring_address 148 location = process.ReadPointerFromMemory(location, error) 150 location = 3 * ptr_size + nsstring_address 152 location = 2 * ptr_size + nsstring_address 157 location += ptr_size 159 location = process.ReadPointerFromMemory(location, error) 161 location = nsstring_address + ptr_size + 4 163 location = 2 * ptr_size + nsstring_address [all …]
|
| /openbsd-src/gnu/llvm/llvm/docs/AMDGPUDwarfExtensionAllowLocationDescriptionOnTheDwarfExpressionStack/ |
| H A D | AMDGPUDwarfExtensionAllowLocationDescriptionOnTheDwarfExpressionStack.md | 9 - [3.2.2 Variable Location in Register](#variable-location-in-register) 10 - [3.2.3 Variable Location in Memory](#variable-location-in-memory) 12 - [3.2.5 Offsetting a Composite Location](#offsetting-a-composite-location) 17 - [4.1 Location Description](#location-description) 18 - [4.2 Stack Location Description Operations](#stack-location-description-operations) 35 - [A.2.5.3 DWARF Location Description](#a-2-5-3-dwarf-location-description) 44 - [A.2.5.4.4 Location Description Operations](#a-2-5-4-4-location-description-operations) 45 …- [A.2.5.4.4.1 General Location Description Operations](#a-2-5-4-4-1-general-location-description-… 46 …- [A.2.5.4.4.2 Undefined Location Description Operations](#a-2-5-4-4-2-undefined-location-descript… 47 …- [A.2.5.4.4.3 Memory Location Description Operations](#a-2-5-4-4-3-memory-location-description-op… [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/ |
| H A D | NSString.cpp | 144 uint64_t location = 2 * ptr_size + valobj_addr; in NSStringSummaryProvider() local 145 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider() 149 options.SetLocation(location); in NSStringSummaryProvider() 162 options.SetLocation(location + 1); in NSStringSummaryProvider() 176 uint64_t location = 3 * ptr_size + valobj_addr; in NSStringSummaryProvider() local 178 options.SetLocation(location); in NSStringSummaryProvider() 189 uint64_t location = valobj_addr + 2 * ptr_size; in NSStringSummaryProvider() local 194 location += ptr_size; in NSStringSummaryProvider() 196 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider() 200 options.SetLocation(location); in NSStringSummaryProvider() [all …]
|
| /openbsd-src/gnu/llvm/llvm/docs/CommandGuide/ |
| H A D | llvm-locstats.rst | 1 llvm-locstats - calculate statistics on DWARF debug location 15 It parses :program:`llvm-dwarfdump` statistics regarding debug location by 18 The line 0% shows the number and the percentage of DIEs with no location 20 location information in all code section bytes (where the variable or parameter 22 where the location information is between 50 and 60 percentage of its scope 30 calculate the location statistics only for local variables 34 calculate the location statistics only for formal parameters 38 ignore the location statistics on locations containing the 43 make histogram of location buckets generated (requires 48 compare the debug location coverage on two files provided, and draw [all …]
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | AMDGPUDwarfExtensionsForHeterogeneousDebugging.rst | 102 .. _amdgpu-dwarf-allow-location-description-on-the-dwarf-evaluation-stack: 107 DWARF Version 5 does not allow location descriptions to be entries on the DWARF 109 expression. However, by allowing a location description to be a first-class 111 containing both values and location descriptions naturally. It allows objects to 118 location description. This can be extended to allow a default address space 119 memory location description to be implicitly converted back to its address 121 while enabling the ability to explicitly create memory location descriptions in 122 non-default address spaces and generalizing the power of composite location 123 descriptions to any kind of location description. 125 For those familiar with the definition of location descriptions in DWARF Version [all …]
|
| /openbsd-src/gnu/llvm/clang/bindings/python/tests/cindex/ |
| H A D | test_diagnostics.py | 20 self.assertEqual(tu.diagnostics[0].location.line, 1) 21 self.assertEqual(tu.diagnostics[0].location.column, 11) 30 self.assertEqual(tu.diagnostics[0].location.line, 2) 31 self.assertEqual(tu.diagnostics[0].location.column, 7) 42 self.assertEqual(tu.diagnostics[0].location.line, 1) 43 self.assertEqual(tu.diagnostics[0].location.column, 26) 57 self.assertEqual(tu.diagnostics[0].location.line, 1) 58 self.assertEqual(tu.diagnostics[0].location.column, 16) 77 self.assertEqual(d.location.line, 1) 78 self.assertEqual(d.location.column, 11) [all …]
|
| H A D | test_location.py | 33 self.assert_location(one.location,line=1,column=5,offset=4) 34 self.assert_location(two.location,line=2,column=5,offset=13) 44 self.assert_location(one.location,line=2,column=5,offset=5) 45 self.assert_location(two.location,line=3,column=5,offset=14) 52 self.assert_location(one.location,line=1,column=6,offset=5) 53 self.assert_location(two.location,line=2,column=5,offset=14) 60 location = SourceLocation.from_position(tu, file, 1, 5) 61 cursor = Cursor.from_location(tu, location) 69 self.assertEqual(location, location2)
|
| /openbsd-src/gnu/llvm/clang/include/clang-c/ |
| H A D | CXSourceLocation.h | 80 CINDEX_LINKAGE int clang_Location_isInSystemHeader(CXSourceLocation location); 86 CINDEX_LINKAGE int clang_Location_isFromMainFile(CXSourceLocation location); 135 CINDEX_LINKAGE void clang_getExpansionLocation(CXSourceLocation location, 180 CINDEX_LINKAGE void clang_getPresumedLocation(CXSourceLocation location, 192 CINDEX_LINKAGE void clang_getInstantiationLocation(CXSourceLocation location, 219 CINDEX_LINKAGE void clang_getSpellingLocation(CXSourceLocation location, 247 CINDEX_LINKAGE void clang_getFileLocation(CXSourceLocation location,
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/bfd/ |
| H A D | cpu-ns32k.c | 176 bfd_byte *location; local 520 location = (bfd_byte *) data + addr; 525 bfd_vma x = get_data (location, 1); 527 put_data ((bfd_vma) x, location, 1); 534 bfd_vma x = get_data (location, 2); 536 put_data ((bfd_vma) x, location, 2); 542 bfd_vma x = get_data (location, 4); 544 put_data ((bfd_vma) x, location, 4); 549 bfd_vma x = get_data (location, 4); 552 put_data ((bfd_vma) x, location, 4); [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/bfd/ |
| H A D | cpu-ns32k.c | 176 bfd_byte *location; local 522 location = (bfd_byte *) data + addr; 527 bfd_vma x = get_data (location, 1); 529 put_data ((bfd_vma) x, location, 1); 536 bfd_vma x = get_data (location, 2); 538 put_data ((bfd_vma) x, location, 2); 544 bfd_vma x = get_data (location, 4); 546 put_data ((bfd_vma) x, location, 4); 551 bfd_vma x = get_data (location, 4); 554 put_data ((bfd_vma) x, location, 4); [all …]
|
| /openbsd-src/etc/examples/ |
| H A D | httpd.conf | 5 location "/.well-known/acme-challenge/*" { 9 location * { 20 location "/pub/*" { 23 location "/.well-known/acme-challenge/*" {
|
| /openbsd-src/gnu/llvm/clang/lib/Tooling/Syntax/ |
| H A D | Tokens.cpp | 46 return SM.isBeforeInTranslationUnit(T.location(), R.getBegin()); in getTokensCovering() 50 return !SM.isBeforeInTranslationUnit(R.getEnd(), T.location()); in getTokensCovering() 208 const char *Start = SM.getCharacterData(location(), &Invalid); in text() 214 assert(location().isFileID() && "must be a spelled token"); in range() 217 std::tie(File, StartOffset) = SM.getDecomposedLoc(location()); in range() 287 SourceLocation Loc = ExpandedTokens[I].location(); in indexExpandedTokens() 329 SourceMgr->getFileID(SourceMgr->getExpansionLoc(Expanded->location()))); in spelledForExpandedToken() 442 [&](const syntax::Token &Tok) { return Tok.location() < Loc; }); in spelledTokenAt() 443 if (!Tok || Tok->location() != Loc) in spelledTokenAt() 465 FileID FID = SourceMgr->getFileID(FirstSpelled->location()); in spelledForExpanded() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/ |
| H A D | macscp.exp | 64 set location {} 75 if {[llength $location] == 0 && [llength $definition] == 0} { 76 set location $expect_out(1,string) 86 if {[llength $location] == 0 && [llength $definition] == 0} { 99 if {[llength $location] != 0} { 100 lappend location $expect_out(1,string) 111 && [llength $location] == 0} { 112 set location $expect_out(1,string) 147 if {[llength $location] >= 1} { 148 return [concat $location [list $definition]]
|
| /openbsd-src/gnu/gcc/gcc/treelang/ |
| H A D | parse.y | 206 &tok->tp.tok.location, tok->tp.tok.length, tok->tp.tok.chars); 220 tok->tp.tok.location); 283 &tok->tp.tok.location, tok->tp.tok.length, tok->tp.tok.chars); 329 first_parms, tok->tp.tok.location); 356 error ("%Hno prototype found for %q.*s", &tok->tp.tok.location, 363 tree_code_create_function_initial (proto->tp.pro.code, tok->tp.tok.location); 369 tree_code_create_function_wrapup (tok->tp.tok.location); 485 exp->tp.pro.main_token->tp.tok.location); 502 tree_code_if_start (exp->tp.pro.code, tok->tp.tok.location); 510 tree_code_if_else (tok->tp.tok.location); [all …]
|