HomeSort by relevance Sort by last modified time
    Searched full:startaddress (Results 1 - 25 of 54) sorted by null

1 2 3

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
phdrs.t 10 /* This test will fail on architectures where the startaddress below
phdrs3.t 10 /* This test will fail on architectures where the startaddress below
phdrs3a.t 9 /* This test will fail on architectures where the startaddress below
  /external/dexmaker/src/dx/java/com/android/dx/io/
Code.java 68 final int startAddress;
72 Try(int startAddress, int instructionCount, int handlerOffset) {
73 this.startAddress = startAddress;
79 return startAddress;
  /external/lzma/CPP/Windows/
Thread.h 20 WRes Create(THREAD_FUNC_RET_TYPE (THREAD_FUNC_CALL_TYPE *startAddress)(void *), LPVOID parameter)
21 { return Thread_Create(&thread, startAddress, parameter); }
  /libcore/dex/src/main/java/com/android/dex/
Code.java 68 final int startAddress;
72 Try(int startAddress, int instructionCount, int catchHandlerIndex) {
73 this.startAddress = startAddress;
79 return startAddress;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
TryListBuilder.java 65 int startAddress = tryBlock.getStartCodeAddress();
66 int endAddress = startAddress + tryBlock.getCodeUnitCount();
69 tlb.addHandler(startAddress, endAddress, exceptionHandler);
189 private TryBounds<EH> getBoundingRanges(int startAddress, int endAddress) {
197 if (startAddress == currentStartAddress) {
203 } else if (startAddress > currentStartAddress && startAddress < currentEndAddress) {
209 startBlock = tryBlock.split(startAddress);
211 }else if (startAddress < currentStartAddress) {
217 startBlock = new MutableTryBlock<EH>(startAddress, endAddress)
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugRangeList.cpp 33 entry.StartAddress = data.getAddress(offset_ptr);
52 OS << format(format_str, Offset, RLE.StartAddress, RLE.EndAddress);
64 Res.push_back(std::make_pair(BaseAddress + RLE.StartAddress,
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugRangeList.h 30 uint64_t StartAddress;
41 return (StartAddress == 0) && (EndAddress == 0);
52 return StartAddress == -1U;
54 return StartAddress == -1ULL;
  /external/chromium-trace/catapult/tracing/tracing/ui/analysis/
memory_dump_vm_regions_details_pane_test.html 46 startAddress: 65536,
56 startAddress: 140296983150592,
64 startAddress: 10995116277760,
74 startAddress: 12094627905536,
85 startAddress: 13194139533312,
97 startAddress: 14293651161088,
121 startAddress: 65536,
131 startAddress: 140296983150592,
140 startAddress: 10995116277760,
150 startAddress: 12094627905536
    [all...]
memory_dump_vm_regions_details_pane.html 243 if (region.startAddress === undefined)
245 return region.startAddress >= 4294967296 /* 2^32 */;
324 var startAddress = region.startAddress;
325 if (startAddress === undefined)
327 return { 'Start address': hexString(startAddress, is64BitAddress) };
  /dalvik/libdex/
DexDebugInfo.cpp 116 u2 startAddress;
124 localCb(cnxt, reg, localInReg[reg].startAddress, endAddress,
169 localInReg[argReg].startAddress = 0;
206 localInReg[reg].startAddress = address;
247 localInReg[reg].startAddress = address;
280 localInReg[reg].startAddress = address;
DexDebugInfo.h 36 typedef void (*DexDebugNewLocalCb)(void *cnxt, u2 reg, u4 startAddress,
  /external/llvm/test/MC/COFF/
seh.s 60 // CHECK-NEXT: StartAddress: [[CodeSect1:[^ ]+]] [[BeginDisp1:(\+0x[A-F0-9]+)?]]
84 // CHECK-NEXT: StartAddress: [[CodeSect2:[^ ]+]] [[BeginDisp2:(\+0x[A-F0-9]+)?]]
99 // CHECK-NEXT: StartAddress: [[CodeSect1]] [[BeginDisp1]]
106 // CHECK-NEXT: StartAddress: [[CodeSect3:[^ ]+]] [[BeginDisp3:(\+0x[A-F0-9]+)?]]
seh-align1.s 41 // CHECK-NEXT: StartAddress: smallFunc {{(\+0x[A-F0-9]+ )?}}([[BeginDisp]])
seh-align2.s 43 // CHECK-NEXT: StartAddress: func {{(\+0x[A-F0-9]+ )?}}([[BeginDisp]])
seh-align3.s 43 // CHECK-NEXT: StartAddress: func {{(\+0x[A-F0-9]+ )?}}([[BeginDisp]])
  /external/v8/tools/sodium/
sodium.js 63 var startAddress = "";
76 firstSourcePosition, startAddress) {
84 this.startAddress = startAddress;
127 firstSourcePosition, startAddress);
137 if (startAddress == "") {
140 startAddress = matches[1];
  /external/chromium-trace/catapult/tracing/tracing/model/
memory_dump_test_utils.html 110 assert.strictEqual(actualRegion.startAddress,
111 expectedRegion.startAddress);
vm_region.html 25 function VMRegion(startAddress, sizeInBytes, protectionFlags,
27 this.startAddress = startAddress;
42 return this.mappedFile + '#' + this.startAddress;
60 dict.startAddress,
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
CatchMethodItem.java 46 int codeAddress, @Nullable String exceptionType, int startAddress, int endAddress,
51 tryStartLabel = labelCache.internLabel(new LabelMethodItem(options, startAddress, "try_start_"));
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
StdCatchBuilder.java 281 CodeAddress startAddress = addresses.getLast(start);
286 return new CatchTable.Entry(startAddress.getAddress(),
311 int startAddress = addresses.getLast(start).getAddress();
314 return (endAddress - startAddress) <= MAX_CATCH_RANGE;
  /dalvik/dx/src/com/android/dx/dex/code/
StdCatchBuilder.java 280 CodeAddress startAddress = addresses.getLast(start);
285 return new CatchTable.Entry(startAddress.getAddress(),
310 int startAddress = addresses.getLast(start).getAddress();
313 return (endAddress - startAddress) <= MAX_CATCH_RANGE;
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
StdCatchBuilder.java 281 CodeAddress startAddress = addresses.getLast(start);
286 return new CatchTable.Entry(startAddress.getAddress(),
311 int startAddress = addresses.getLast(start).getAddress();
314 return (endAddress - startAddress) <= MAX_CATCH_RANGE;
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 65 static LineNumberInfo DILineInfoToIntelJITFormat(uintptr_t StartAddress,
70 Result.Offset = Address - StartAddress;

Completed in 1215 milliseconds

1 2 3