HomeSort by relevance Sort by last modified time
    Searched full:offsettable (Results 1 - 18 of 18) sorted by null

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Offset.java 28 * The Offsettable that this Offset points to.
30 private Offsettable offsettable; field in class:Offset
71 return offsettable.getItem();
75 return offsettable != null;
93 return (offsettable.getItem().equals(thisItem));
97 * Returns true if this Offset points at the provided Offsettable.
99 public boolean pointsToThisOffsettable(Offsettable thisOffsettable) {
103 return (offsettable.equals(thisOffsettable));
107 * Makes this Offset point at a new Offsettable
    [all...]
Offsettable.java 23 public class Offsettable {
25 * The position of this Offsettable's item when it was read in.
30 * Set as we write out any Offsettable, so the Offset knows what its
36 * The actual Item this Offsettable contains.
42 * to put the location in the offsettable map, so when Offsets are being
43 * associated, they know which Offsettable to point at.
44 * Or when an Offsettable is created that is marked as new, so we don't
51 * Set when we calculate the new position of this Offsettable as the file is
57 * Only the OffsetTracker should be able to create a new Offsettable.
59 public Offsettable(RawDexObject item, boolean isNew)
    [all...]
OffsetTracker.java 28 * This class allows the recording of both Offsettable items (that is, items that can be
30 * The idea in a nutshell is that for every Offsettable item we read, we remember
33 * the whole file, we use the map to find the Offsettable it pointed at.
34 * Then, as we write out the file, for every Offsettable we write out, we record its new position,
35 * using the order we collected earlier. For every Offset we write out, we look at its Offsettable
44 * Finally, we provide methods for adding new Offsettable items into the right place in the order
50 * the Offsettable it points to. (That Offsettable will contain
54 private Map<Integer, Offsettable> offsettableMap;
59 * the Offsettable.new_position field with the correct value wrt t
128 Offsettable offsettable = new Offsettable(item, false); local
130 offsettableMap.put(offsettable.getOriginalPosition(), offsettable); local
189 Offsettable offsettable = offsettableTable.get(offsettableTableIdx); local
418 Offsettable offsettable = new Offsettable(item, true); local
439 Offsettable offsettable = new Offsettable(item, true); local
461 Offsettable offsettable = new Offsettable(item, true); local
478 Offsettable offsettable = new Offsettable(item, true); local
    [all...]
  /external/v8/src/debug/
interface-types.h 54 using OffsetTable = std::vector<WasmDisassemblyOffsetTableEntry>;
56 WasmDisassembly(std::string disassembly, OffsetTable offset_table)
61 OffsetTable offset_table;
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/compression/
CompressionTableGenerator.java 98 int [] offsetTable = new int [ BLOCKSIZE + 1 ];
104 offsetTable[i] = i * 0x80;
108 offsetTable[i] = (i * 0x80) + 0xAC00;
112 offsetTable[ LATININDEX ] = 0x00C0;
113 offsetTable[ IPAEXTENSIONINDEX ] = 0x0250;
114 offsetTable[ GREEKINDEX ] = 0x0370;
115 offsetTable[ ARMENIANINDEX ] = 0x0530;
116 offsetTable[ HIRAGANAINDEX ] = 0x3040;
117 offsetTable[ KATAKANAINDEX ] = 0x30A0;
118 offsetTable[ HALFWIDTHKATAKANAINDEX ] = 0xFF60
    [all...]
  /external/v8/src/inspector/
wasm-translation.cc 55 using OffsetTable = debug::WasmDisassembly::OffsetTable;
78 const OffsetTable& offset_table = GetOffsetTable(loc);
106 const OffsetTable* reverse_table = GetReverseTable(func_index);
212 const OffsetTable& GetOffsetTable(const TransLocation* loc) {
221 const OffsetTable* GetReverseTable(int func_index) {
229 OffsetTable reverse_table = it->second;
231 auto cmp = [](OffsetTable::value_type el1, OffsetTable::value_type el2) {
248 std::unordered_map<int, const OffsetTable> offset_tables_
    [all...]
  /external/harfbuzz_ng/src/
hb-open-file-private.hh 50 struct OffsetTable;
74 typedef struct OffsetTable
157 ArrayOf<LOffsetTo<OffsetTable>, UINT32>
158 table; /* Array of offsets to the OffsetTable for each font
  /external/fonttools/Lib/fontTools/ttLib/
sfnt.py 39 offsetTable = struct.unpack(">%dL" % self.numFonts, self.file.read(self.numFonts * 4))
42 self.file.seek(offsetTable[fontNumber])
278 # OffsetTable[numFonts]: L # array with offsets from beginning of file
  /art/tools/dexfuzz/src/dexfuzz/program/
IdCreator.java 23 import dexfuzz.rawdex.Offsettable;
339 // (Need to save the Offsettable, because the StringIdItem will point to it.)
340 Offsettable offsettableStringData = null;
704 Offsettable typeListOffsettable = null;
Program.java 329 Log.errorAndQuit("You've got an EncodedMethod that points to an Offsettable"
  /external/aac/libPCMutils/src/
pcmdmx_lib.cpp 523 UCHAR offsetTable[(8)], /* out */
537 FDK_ASSERT(offsetTable != NULL);
546 FDKmemset(offsetTable, 255, (8) * sizeof(UCHAR));
590 if (offsetTable[mapCh] == 255) {
599 offsetTable[mapPos] = (UCHAR)ch;
619 if (offsetTable[mapCh] == 255) {
632 offsetTable[mapPos] = (UCHAR)ch;
643 if (offsetTable[ch] == 255) {
657 offsetTable[ch] = (UCHAR)mapPos;
699 UCHAR offsetTable[(8)] /* out *
    [all...]
  /external/sfntly/cpp/src/sfntly/
font_factory.h 106 // Offsets from end of OffsetTable.
  /external/v8/src/wasm/
wasm-text.cc 38 debug::WasmDisassembly::OffsetTable *offset_table) {
wasm-objects.cc     [all...]
  /external/clang/lib/Basic/
TargetInfo.cpp 617 case 'o': // offsettable memory operand.
618 case 'V': // non-offsettable memory operand.
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.registry_3.5.300.v20130327-1442.jar 
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]

Completed in 1366 milliseconds