HomeSort by relevance Sort by last modified time
    Searched refs:iOffset (Results 1 - 8 of 8) sorted by null

  /external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
binaryajax.js 21 this.getByteAt = function(iOffset) {
22 return data.charCodeAt(iOffset + dataOffset) & 0xFF;
27 this.getByteAt = function(iOffset) {
28 return IEBinary_getByteAt(data, iOffset + dataOffset);
36 this.getSByteAt = function(iOffset) {
37 var iByte = this.getByteAt(iOffset);
44 this.getShortAt = function(iOffset, bBigEndian) {
46 (this.getByteAt(iOffset) << 8) + this.getByteAt(iOffset + 1)
47 : (this.getByteAt(iOffset + 1) << 8) + this.getByteAt(iOffset
    [all...]
exif.js 332 var iOffset = 2;
334 while (iOffset < iLength) {
335 if (oFile.getByteAt(iOffset) != 0xFF) {
336 if (bDebug) console.log("Not a valid marker at offset " + iOffset + ", found: " + oFile.getByteAt(iOffset));
340 var iMarker = oFile.getByteAt(iOffset+1);
347 return readEXIFData(oFile, iOffset + 4, oFile.getShortAt(iOffset+2, true)-2);
348 iOffset += 2 + oFile.getShortAt(iOffset+2, true)
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetSegGraph.py 324 iOffset = 0
326 iOffset = self.iMidiModeStart
331 dc.DrawRectangle(self.iEdges + iOffset, gHeight-6, till, 3)
346 iOffset = 0
348 iOffset = self.iMidiModeStart
356 dc.DrawRectangle(self.iEdges + iOffset, gHeight-6, till, 3)
  /external/webkit/WebKitLibraries/WebCoreSQLite3/
sqlite3.h     [all...]
  /external/sqlite/dist/
sqlite3.h     [all...]
sqlite3.c     [all...]
sqlite3.c.orig     [all...]
sqlite3.h.orig     [all...]

Completed in 89 milliseconds