/third_party/zlib/contrib/dotzlib/DotZLib/ |
H A D | DotZLib.cs | 230 private static int bitSize(uint bits)
in bitSize() method in DotZLib.Info 263 public int SizeOfUInt { get { return bitSize(_flags & 3); } }
268 public int SizeOfULong { get { return bitSize((_flags >> 2) & 3); } }
273 public int SizeOfPointer { get { return bitSize((_flags >> 4) & 3); } }
278 public int SizeOfOffset { get { return bitSize((_flags >> 6) & 3); } }
|
/third_party/libsnd/src/ALAC/ |
H A D | ag_enc.c | 232 int32_t dyn_comp (AGParamRecPtr params, int32_t * pc, BitBuffer * bitstream, int32_t numSamples, int32_t bitSize, uint32_t * outNumBits) in dyn_comp() argument 251 RequireAction ((bitSize >= 1) && (bitSize <= 32), return kALAC_ParamError ;) ; in dyn_comp() 280 //Assert (32-lead (n) <= bitSize) ; in dyn_comp() 282 if (dyn_code_32bit (bitSize, m, k, n, &numBits, &value, &overflow, &overflowbits)) in dyn_comp()
|
H A D | aglib.h | 73 int32_t dyn_comp (AGParamRecPtr params, int32_t * pc, struct BitBuffer * bitstream, int32_t numSamples, int32_t bitSize, uint32_t * outNumBits) ;
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassMultisampleTests.cpp | 1567 const deUint32 bitSize (bits[0] + bits[1] + bits[2] + bits[3]); in iterateInternal() 1580 while (nextSrcBit < de::min(bitSize, 10u)) in iterateInternal() 1612 const deUint32 bitSize (bits[0] + bits[1] + bits[2] + bits[3]); in iterateInternal() 1625 while (nextSrcBit < de::min(bitSize, 10u)) in iterateInternal() 1663 const deUint32 bitSize (bits[0] + bits[1] + bits[2] + bits[3]); in iterateInternal() 1676 while (nextSrcBit < de::min(bitSize, 10u)) in iterateInternal() 1833 const deUint32 bitSize (bits[0] + bits[1] + bits[2] + bits[3]); in init() 1839 while (nextSrcBit < de::min(bitSize, 10u)) in init() 1895 const deUint32 bitSize (bits[0] + bits[1] + bits[2] + bits[3]); in init() 1901 while (nextSrcBit < de::min(bitSize, 1 in init() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassMultisampleTests.cpp | 1560 const deUint32 bitSize (bits[0] + bits[1] + bits[2] + bits[3]); in iterateInternal() 1573 while (nextSrcBit < de::min(bitSize, 10u)) in iterateInternal() 1605 const deUint32 bitSize (bits[0] + bits[1] + bits[2] + bits[3]); in iterateInternal() 1618 while (nextSrcBit < de::min(bitSize, 10u)) in iterateInternal() 1655 const deUint32 bitSize (bits[0] + bits[1] + bits[2] + bits[3]); in iterateInternal() 1668 while (nextSrcBit < de::min(bitSize, 10u)) in iterateInternal() 1825 const deUint32 bitSize (bits[0] + bits[1] + bits[2] + bits[3]); in init() 1831 while (nextSrcBit < de::min(bitSize, 10u)) in init() 1887 const deUint32 bitSize (bits[0] + bits[1] + bits[2] + bits[3]); in init() 1893 while (nextSrcBit < de::min(bitSize, 1 in init() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmTrinaryMinMaxTests.cpp | 538 const std::string bitSize = de::toString(m_params.componentSize() * 8u); in getSpirVReplacements() local 549 baseTypeName = typePrefix + "int" + bitSize + "_t"; in getSpirVReplacements() 550 replacements["TYPES"] += "%" + baseTypeName + " = OpTypeInt " + bitSize + " " + signBit + "\n"; in getSpirVReplacements() 574 const std::string baseTypeName = "float" + bitSize + "_t"; in getSpirVReplacements() 575 replacements["TYPES"] += "%" + baseTypeName + " = OpTypeFloat " + bitSize + "\n"; in getSpirVReplacements()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsmTrinaryMinMaxTests.cpp | 538 const std::string bitSize = de::toString(m_params.componentSize() * 8u); in getSpirVReplacements() local 549 baseTypeName = typePrefix + "int" + bitSize + "_t"; in getSpirVReplacements() 550 replacements["TYPES"] += "%" + baseTypeName + " = OpTypeInt " + bitSize + " " + signBit + "\n"; in getSpirVReplacements() 574 const std::string baseTypeName = "float" + bitSize + "_t"; in getSpirVReplacements() 575 replacements["TYPES"] += "%" + baseTypeName + " = OpTypeFloat " + bitSize + "\n"; in getSpirVReplacements()
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_from_nir.cpp | 296 Converter::getDType(nir_op op, uint8_t bitSize) in getDType() argument 298 DataType ty = typeOfSize(bitSize / 8, isResultFloat(op), isResultSigned(op)); in getDType() 300 ERROR("couldn't get Type for op %s with bitSize %u\n", nir_op_infos[op].name, bitSize); in getDType() 329 uint8_t bitSize; in getSType() local 331 bitSize = src.ssa->bit_size; in getSType() 333 bitSize = src.reg.reg->bit_size; in getSType() 335 DataType ty = typeOfSize(bitSize / 8, isFloat, isSigned); in getSType() 344 ERROR("couldn't get Type for %s with bitSize %u\n", str, bitSize); in getSType() [all...] |
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
H A D | gen_framework.py | 1686 bitSize = "64" if foundBitmask.type == "VkFlags64" else "32" 1688 yield f"tcu::Format::Bitfield<{bitSize}> get{bitmask.name[2:]}Str ({bitmask.name} value)" 1699 yield f"\treturn tcu::Format::Bitfield<{bitSize}>(value, DE_ARRAY_BEGIN(s_desc), DE_ARRAY_END(s_desc));" 1704 bitSize = "64" if bitmask.type == "VkFlags64" else "32" 1706 yield f"tcu::Format::Bitfield<{bitSize}> get{bitmask.name[2:]}Str ({bitmask.name} value)" 1708 yield f"\treturn tcu::Format::Bitfield<{bitSize}>(value, DE_NULL, DE_NULL);"
|
H A D | ohos_gen_framework.py | 1376 bitSize = "64" if foundBitmask.type == "VkFlags64" else "32" 1378 yield f"tcu::Format::Bitfield<{bitSize}> get{bitmask.name[2:]}Str ({bitmask.name} value)" 1385 yield f"\treturn tcu::Format::Bitfield<{bitSize}>(value, DE_ARRAY_BEGIN(s_desc), DE_ARRAY_END(s_desc));" 1390 bitSize = "64" if bitmask.type == "VkFlags64" else "32" 1392 yield f"tcu::Format::Bitfield<{bitSize}> get{bitmask.name[2:]}Str ({bitmask.name} value)" 1394 yield f"\treturn tcu::Format::Bitfield<{bitSize}>(value, DE_NULL, DE_NULL);"
|