HomeSort by relevance Sort by last modified time
    Searched full:offsettable (Results 1 - 17 of 17) 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/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/compression/
CompressionTableGenerator.java 96 int [] offsetTable = new int [ BLOCKSIZE + 1 ];
102 offsetTable[i] = i * 0x80;
106 offsetTable[i] = (i * 0x80) + 0xAC00;
110 offsetTable[ LATININDEX ] = 0x00C0;
111 offsetTable[ IPAEXTENSIONINDEX ] = 0x0250;
112 offsetTable[ GREEKINDEX ] = 0x0370;
113 offsetTable[ ARMENIANINDEX ] = 0x0530;
114 offsetTable[ HIRAGANAINDEX ] = 0x3040;
115 offsetTable[ KATAKANAINDEX ] = 0x30A0;
116 offsetTable[ HALFWIDTHKATAKANAINDEX ] = 0xFF60
    [all...]
  /external/icu/icu4c/source/layout/
LigatureSubstProc.cpp 86 LEReferenceToArrayOf<le_int16> offsetTable(stHeader, success, 2 * SignExtend(offset, lafComponentOffsetMask), LE_UNBOUNDED_ARRAY);
98 i += SWAPW(offsetTable.getObject(LE_GET_GLYPH(glyphStorage[componentGlyph]), success));
  /external/harfbuzz_ng/src/
hb-open-file-private.hh 50 struct OffsetTable;
71 typedef struct OffsetTable
145 ArrayOf<OffsetTo<OffsetTable, ULONG>, ULONG>
146 table; /* Array of offsets to the OffsetTable for each font
  /external/svox/pico/lib/
picoktab.c 198 picoos_uint8 * offsetTable;
217 ktabgraphs->offsetTable = &(this->base[KTAB_START_GRAPHS_OFFSET_TABLE]);
387 graphsOffset = g->offsetTable[g->sizeOffset*m];
390 graphsOffset = g->offsetTable[g->sizeOffset*m ] +
391 256*g->offsetTable[g->sizeOffset*m + 1];
392 /* PICODBG_DEBUG(("picoktab_graphOffset: %i %i %i %i", m, g->offsetTable[g->sizeOffset*m], g->offsetTable[g->sizeOffset*m + 1], graphsOffset));
587 graphsOffset = g->offsetTable[graphIndex];
589 graphsOffset = g->offsetTable[2 * graphIndex]
590 + (g->offsetTable[2 * graphIndex + 1] << 8)
    [all...]
  /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 316 Log.errorAndQuit("You've got an EncodedMethod that points to an Offsettable"
  /external/sfntly/cpp/src/sfntly/
font_factory.h 106 // Offsets from end of OffsetTable.
  /external/aac/libPCMutils/src/
pcmutils_lib.cpp 448 UCHAR offsetTable[PCM_DMX_MAX_CHANNELS], /* out */
463 FDK_ASSERT(offsetTable != NULL);
468 FDKmemset(offsetTable, 255, PCM_DMX_MAX_CHANNELS*sizeof(UCHAR));
542 offsetTable[CENTER_FRONT_CHANNEL] = chIdx[CH_GROUP_FRONT][0];
573 offsetTable[chMapPos] = chIdx[grpIdx][ch];
605 if (offsetTable[chMapPos] == 255) {
630 offsetTable[chMapPos++] = hardToPlace[ch];
675 UCHAR offsetTable[PCM_DMX_MAX_CHANNELS] /* out */
685 FDK_ASSERT(offsetTable != NULL);
690 FDKmemset(offsetTable, 255, PCM_DMX_MAX_CHANNELS*sizeof(UCHAR))
    [all...]
  /external/clang/lib/Basic/
TargetInfo.cpp 608 case 'o': // offsettable memory operand.
609 case 'V': // non-offsettable memory operand.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.registry_3.5.0.v20100503.jar 
  /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...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.registry_3.5.301.v20130717-1549.jar 

Completed in 1632 milliseconds