Home
last modified time | relevance | path

Searched refs:staticSize (Results 1 – 9 of 9) sorted by relevance

/external/fonttools/Lib/fontTools/ttLib/tables/
DotConverters.py187 if hasattr(self, 'staticSize'): return self.staticSize
230 staticSize = 4 variable in Long
237 staticSize = 4 variable in ULong
249 staticSize = 2 variable in Short
256 staticSize = 2 variable in UShort
263 staticSize = 1 variable in Int8
270 staticSize = 1 variable in UInt8
277 staticSize = 3 variable in UInt24
297 staticSize = 4 variable in Tag
304 staticSize = 2 variable in GlyphID
[all …]
DotBase.py137 def readValue(self, typecode, staticSize): argument
139 newpos = pos + staticSize
145 return self.readValue("H", staticSize=2)
147 def readArray(self, typecode, staticSize, count): argument
149 newpos = pos + count * staticSize
156 return self.readArray("H", staticSize=2, count=count)
159 return self.readValue("b", staticSize=1)
162 return self.readValue("h", staticSize=2)
165 return self.readValue("l", staticSize=4)
168 return self.readValue("B", staticSize=1)
[all …]
DotTables.py62 staticSize = 4 variable in RearrangementMorphAction
144 staticSize = 8 variable in ContextualMorphAction
223 staticSize = 6 variable in LigatureMorphAction
365 staticSize = 8 variable in InsertionMorphAction
1180 subReader.advance(conv.staticSize)
/external/zstd/lib/decompress/
Dzstd_decompress.c108 dctx->staticSize = 0; in ZSTD_initDCtx_internal()
138 dctx->staticSize = workspaceSize; in ZSTD_initStaticDCtx()
172 RETURN_ERROR_IF(dctx->staticSize, memory_allocation, "not compatible with static DCtx"); in ZSTD_freeDCtx()
729 RETURN_ERROR_IF(dctx->staticSize, memory_allocation, in ZSTD_decompressMultiFrame()
1675 RETURN_ERROR_IF(zds->staticSize, memory_allocation, in ZSTD_decompressStream()
1692 RETURN_ERROR_IF(zds->staticSize, memory_allocation, in ZSTD_decompressStream()
1786 if (zds->staticSize) { /* static DCtx */ in ZSTD_decompressStream()
1787 DEBUGLOG(4, "staticSize : %u", (U32)zds->staticSize); in ZSTD_decompressStream()
1788 assert(zds->staticSize >= sizeof(ZSTD_DCtx)); /* controlled at init */ in ZSTD_decompressStream()
1790 bufferSize > zds->staticSize - sizeof(ZSTD_DCtx), in ZSTD_decompressStream()
Dzstd_decompress_internal.h130 size_t staticSize; member
/external/llvm-project/clang/test/Sema/
Dnullability.c207 int staticSize[_Nonnull static 2],
/external/fonttools/Tests/ttLib/tables/
DotConverters_test.py374 recordSize = converter.staticSize
/external/zstd/lib/compress/
Dzstd_compress.c119 cctx->staticSize = workspaceSize; in ZSTD_initStaticCCtx()
152 assert(cctx->staticSize == 0); in ZSTD_freeCCtxContent()
163 RETURN_ERROR_IF(cctx->staticSize, memory_allocation, in ZSTD_freeCCtx()
550 RETURN_ERROR_IF((value!=0) && cctx->staticSize, parameter_unsupported, in ZSTD_CCtx_setParameter()
1011 RETURN_ERROR_IF(cctx->staticSize, memory_allocation, in ZSTD_CCtx_loadDictionary_advanced()
1639 &params.cParams, &params.ldmParams, zc->staticSize != 0, in ZSTD_resetCCtx_internal()
1643 if (!zc->staticSize) ZSTD_cwksp_bump_oversized_duration(ws, 0); in ZSTD_resetCCtx_internal()
1658 RETURN_ERROR_IF(zc->staticSize, memory_allocation, "static cctx : no resize"); in ZSTD_resetCCtx_internal()
Dzstd_compress_internal.h282 size_t staticSize; member