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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/opentype/
OpenTypeTypes.h 51 struct BigEndianULong {
53 BigEndianULong(unsigned u) : v((u & 0xff) << 24 | (u & 0xff00) << 8 | (u & 0xff0000) >> 8 | u >> 24) { }
60 typedef BigEndianULong UInt32;
OpenTypeUtilities.cpp 40 struct BigEndianULong {
42 BigEndianULong(unsigned u) : v((u & 0xff) << 24 | (u & 0xff00) << 8 | (u & 0xff0000) >> 8 | u >> 24) { }
67 BigEndianULong tag;
68 BigEndianULong checkSum;
69 BigEndianULong offset;
70 BigEndianULong length;
107 BigEndianULong unicodeRange[4];
117 BigEndianULong codePageRange[2];
128 BigEndianULong checkSumAdjustment;
129 BigEndianULong magicNumber
    [all...]

Completed in 450 milliseconds