Home
last modified time | relevance | path

Searched refs:sizeBits (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/
DDictionary.java26 static final int[] sizeBits = new int[32]; field in Dictionary
42 public static void setData(ByteBuffer data, int[] sizeBits) { in setData() argument
47 if (sizeBits.length > MAX_DICTIONARY_WORD_LENGTH) { in setData()
52 if (sizeBits[i] != 0) { in setData()
57 int[] dictionarySizeBits = Dictionary.sizeBits; in setData()
58 System.arraycopy(sizeBits, 0, dictionarySizeBits, 0, sizeBits.length); in setData()
61 for (int i = 0; i < sizeBits.length; ++i) { in setData()
74 for (int i = sizeBits.length; i < 32; ++i) { in setData()
DDictionaryData.java37 String skipFlip, int[] sizeBits, String sizeBitsData) { in unpackDictionaryData() argument
58 sizeBits[i] = sizeBitsData.charAt(i) - 65; in unpackDictionaryData()
66 int[] sizeBits = new int[25];
67 unpackDictionaryData(dictionary, DATA0, DATA1, SKIP_FLIP, sizeBits, SIZE_BITS_DATA); in unpackDictionaryData() argument
69 Dictionary.setData(dictionary.asReadOnlyBuffer(), sizeBits); in dictionary.asReadOnlyBuffer()
DSetDictionaryTest.java68 int[] sizeBits = { in testSetDictionary() local
71 Dictionary.setData(dictionary, sizeBits); in testSetDictionary()
DDecode.java972 int shift = Dictionary.sizeBits[wordLength]; in doUseDictionary()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkImageUtil.cpp3313 deUint32 sizeBits) in getChannelAccessFormat() argument
3355 if (sizeBits == 8) in getChannelAccessFormat()
3357 else if (sizeBits == 16) in getChannelAccessFormat()
3359 else if (sizeBits == 32) in getChannelAccessFormat()
3361 else if (sizeBits == 64) in getChannelAccessFormat()
3371 sizeBits == 10) in getChannelAccessFormat()
3375 sizeBits == 12) in getChannelAccessFormat()
3411 formatInfo.channels[channelNdx].sizeBits), in getChannelAccess()
3456 formatInfo.channels[channelNdx].sizeBits), in getChannelAccess()
DvkImageUtil.hpp119 deUint8 sizeBits; // Value size in bits member
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesImageSparseResidency.cpp871 …or = tcu::TexVerifierUtil::computeFixedPointError(formatDescription.channels[channelNdx].sizeBits); in iterate()
916 …or = tcu::TexVerifierUtil::computeFixedPointError(formatDescription.channels[channelNdx].sizeBits); in iterate()
986 …or = tcu::TexVerifierUtil::computeFixedPointError(formatDescription.channels[channelNdx].sizeBits); in iterate()
DvktSparseResourcesImageMemoryAliasing.cpp789 …or = tcu::TexVerifierUtil::computeFixedPointError(formatDescription.channels[channelNdx].sizeBits); in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationTimelineSemaphoreTests.cpp862 tcu::IVec4 value(rng.getInt(0, deIntMaxValue32(planeDesc.channels[0].sizeBits)), in randomizeData()
863 rng.getInt(0, deIntMaxValue32(planeDesc.channels[1].sizeBits)), in randomizeData()
864 rng.getInt(0, deIntMaxValue32(planeDesc.channels[2].sizeBits)), in randomizeData()
865 rng.getInt(0, deIntMaxValue32(planeDesc.channels[3].sizeBits))); in randomizeData()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/
DvktYCbCrUtil.cpp970 const deUint8 sizeBits = formatInfo.channels[channelNdx].sizeBits; in getChannelAccess() local
987 …return ChannelAccess((tcu::TextureChannelClass)formatInfo.channels[channelNdx].type, sizeBits, tcu… in getChannelAccess()
DvktYCbCrStorageImageWriteTests.cpp430 …or = tcu::TexVerifierUtil::computeFixedPointError(formatDescription.channels[channelNdx].sizeBits); in testStorageImageWrite()