Searched refs:fHeader (Results 1 – 8 of 8) sorted by relevance
29 RBBIDataHeader fHeader; field in RBBIDataWrapper144 return ROW_DATA + state * (fHeader.fCatCount + 4); in getRowIndex()175 This.fHeader = new RBBIDataHeader(); in get()176 This.fHeader.fMagic = bytes.getInt(); in get()180 This.fHeader.fVersion = bytes.getInt(bytes.position()); in get()181 This.fHeader.fFormatVersion[0] = bytes.get(); in get()182 This.fHeader.fFormatVersion[1] = bytes.get(); in get()183 This.fHeader.fFormatVersion[2] = bytes.get(); in get()184 This.fHeader.fFormatVersion[3] = bytes.get(); in get()185 This.fHeader.fLength = bytes.getInt(); in get()[all …]
1413 if (mode == RBBI_END || fRData.fHeader.fVersion == 1) { in handlePrevious()
92 fHeader = NULL; in init0()108 fHeader = data; in init()109 if (fHeader->fMagic != 0xb1a0 || fHeader->fFormatVersion[0] != 3) in init()120 fForwardTable = (RBBIStateTable *)((char *)data + fHeader->fFTable); in init()123 fReverseTable = (RBBIStateTable *)((char *)data + fHeader->fRTable); in init()126 fSafeFwdTable = (RBBIStateTable *)((char *)data + fHeader->fSFTable); in init()129 fSafeRevTable = (RBBIStateTable *)((char *)data + fHeader->fSRTable); in init()134 (uint8_t *)data + fHeader->fTrie, in init()135 fHeader->fTrieLen, in init()143 fRuleSource = (UChar *)((char *)data + fHeader->fRuleSource); in init()[all …]
171 const RBBIDataHeader *fHeader; variable
1111 U_ASSERT(category<fData->fHeader->fCatCount); in handleNext()1331 U_ASSERT(category<fData->fHeader->fCatCount); in handlePrevious()1518 retPtr = (const uint8_t *)fData->fHeader; in getBinaryRules()1519 length = fData->fHeader->fLength; in getBinaryRules()
178 isFmt = GR_GL_COMPRESSED_RED_RGTC1 == fHeader.fGLInternalFormat || in isCompressedFormat()179 GR_GL_COMPRESSED_3DC_X == fHeader.fGLInternalFormat; in isCompressedFormat()182 return isFmt || compressed_fmt_to_gl_define(fmt) == fHeader.fGLInternalFormat; in isCompressedFormat()186 return this->valid() && GR_GL_RGBA8 == fHeader.fGLInternalFormat; in isRGBA8()190 return this->valid() && GR_GL_RGB8 == fHeader.fGLInternalFormat; in isRGB8()215 fHeader.fGLType = this->readInt(&buf, &bytesLeft); in readKTXFile()216 fHeader.fGLTypeSize = this->readInt(&buf, &bytesLeft); in readKTXFile()217 fHeader.fGLFormat = this->readInt(&buf, &bytesLeft); in readKTXFile()218 fHeader.fGLInternalFormat = this->readInt(&buf, &bytesLeft); in readKTXFile()219 fHeader.fGLBaseInternalFormat = this->readInt(&buf, &bytesLeft); in readKTXFile()[all …]
47 int width() const { return static_cast<int>(fHeader.fPixelWidth); } in width()48 int height() const { return static_cast<int>(fHeader.fPixelHeight); } in height()60 int numMipmaps() const { return static_cast<int>(fHeader.fNumberOfMipmapLevels); } in numMipmaps()94 } fHeader; variable
449 EmbeddedSystemFontLoader(const SkEmbeddedResourceHeader* header) : fHeader(header) { } in EmbeddedSystemFontLoader()454 for (int i = 0; i < fHeader->count; ++i) { in loadSystemFonts()455 const SkEmbeddedResource& fontEntry = fHeader->entries[i]; in loadSystemFonts()516 const SkEmbeddedResourceHeader* fHeader; member in EmbeddedSystemFontLoader