Searched refs:pcEnd (Results 1 – 5 of 5) sorted by relevance
| /netbsd-src/sys/lib/libunwind/ |
| H A D | libunwind.cxx | 365 MyCFIParser::pint_t pcStart, pcEnd; in __register_frame() local 367 MyCFIParser::findPCRange(sThisAddressSpace, (uintptr_t)fde, pcStart, pcEnd); in __register_frame() 368 if (pcEnd == 0) in __register_frame() 371 sThisAddressSpace.addFDE(pcStart, pcEnd, (uintptr_t)fde); in __register_frame() 379 MyCFIParser::pint_t pcStart, pcEnd; in __deregister_frame() local 381 MyCFIParser::findPCRange(sThisAddressSpace, (uintptr_t)fde, pcStart, pcEnd); in __deregister_frame() 382 if (pcEnd == 0) in __deregister_frame() 385 sThisAddressSpace.removeFDE(pcStart, pcEnd, (uintptr_t)fde); in __deregister_frame()
|
| H A D | AddressSpace.hpp | 56 pint_t &pcEnd); 285 bool addFDE(pint_t pcStart, pint_t pcEnd, pint_t fde) { in addFDE() argument 291 n->last_pc = pcEnd; in addFDE() 304 bool removeFDE(pint_t pcStart, pint_t pcEnd, pint_t fde) { in removeFDE() argument 312 assert(n->last_pc == pcEnd); in removeFDE()
|
| H A D | UnwindCursor.hpp | 117 if (pc < fdeInfo.pcStart || pc > fdeInfo.pcEnd) { in setInfoBasedOnIPRegister() 130 fInfo.end_ip = fdeInfo.pcEnd; in setInfoBasedOnIPRegister()
|
| H A D | DwarfParser.hpp | 55 pint_t pcEnd; member 112 pint_t &pcEnd) { in findPCRange() argument 114 pcEnd = 0; in findPCRange() 136 pcEnd = pcStart + addressSpace.getEncodedP( in findPCRange() 193 fdeInfo->pcEnd = pcStart + pcRange; in decodeFDE()
|
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A D | shell.c | 18739 const char *pcEnd = (pcDQBSRO && pcDQBSRO < pcPast)? pcDQBSRO : pcPast; in output_c_string() local 18740 if( pcEnd > z ) oputb(z, (int)(pcEnd-z)); in output_c_string() 18741 if( (c = *pcEnd)==0 ) break; in output_c_string() 18742 ++pcEnd; in output_c_string() 18762 z = pcEnd; in output_c_string() 18785 const char *pcEnd = (pcDQBS && pcDQBS < pcPast)? pcDQBS : pcPast; in output_json_string() local 18786 if( pcEnd > z ){ in output_json_string() 18787 oputb(z, (int)(pcEnd-z)); in output_json_string() 18788 z = pcEnd; in output_json_string()
|