Home
last modified time | relevance | path

Searched refs:sizeInBits (Results 1 – 16 of 16) sorted by relevance

/external/minigbm/cros_gralloc/gralloc4/
DCrosGralloc4Utils.cc390 .sizeInBits = 8}, in GetPlaneLayoutsMap()
393 .sizeInBits = 8}, in GetPlaneLayoutsMap()
396 .sizeInBits = 8}, in GetPlaneLayoutsMap()
399 .sizeInBits = 8}}, in GetPlaneLayoutsMap()
409 .sizeInBits = 10}, in GetPlaneLayoutsMap()
412 .sizeInBits = 10}, in GetPlaneLayoutsMap()
415 .sizeInBits = 10}, in GetPlaneLayoutsMap()
418 .sizeInBits = 2}}, in GetPlaneLayoutsMap()
428 .sizeInBits = 16}, in GetPlaneLayoutsMap()
431 .sizeInBits = 16}, in GetPlaneLayoutsMap()
[all …]
/external/parameter-framework/upstream/parameter/
DIntegerParameterBuilder.h45 size_t sizeInBits; in createElement() local
46 sizeInBits = xmlElement.getAttribute("Size", sizeInBits) ? sizeInBits : 32; in createElement()
53 switch (sizeInBits) { in createElement()
DFloatingPointParameterType.cpp88 size_t sizeInBits = 32; in fromXml() local
89 xmlElement.getAttribute("Size", sizeInBits); in fromXml()
93 if (sizeInBits != sizeof(float) * CHAR_BIT) { in fromXml()
95 serializingContext.setError("Unsupported size (" + std::to_string(sizeInBits) + ") for " + in fromXml()
102 setSize(sizeInBits / CHAR_BIT); in fromXml()
DFixedPointParameterType.cpp94 size_t sizeInBits = 0; in fromXml() local
95 xmlElement.getAttribute("Size", sizeInBits); in fromXml()
102 if (sizeInBits < getUtilSizeInBits()) { in fromXml()
114 setSize(sizeInBits / 8); in fromXml()
DEnumParameterType.cpp82 size_t sizeInBits = 0; in fromXml() local
83 if (not xmlElement.getAttribute("Size", sizeInBits)) { in fromXml()
88 setSize(sizeInBits / 8); in fromXml()
DParameterType.cpp204 size_t sizeInBits = getSize() * 8; in makeEncodable() local
206 uint32_t uiMask = (1 << sizeInBits) - 1; in makeEncodable()
/external/ms-tpm-20-ref/TPMCmd/tpm/src/crypt/
DCryptHash.c732 UINT32 sizeInBits, // IN: size of generated key in bits in CryptKDFa() argument
761 pAssert(((sizeInBits + 7) / 8) <= INT16_MAX); in CryptKDFa()
767 bytes = (blocks > 0) ? blocks * digestSize : (UINT16)BITS_TO_BYTES(sizeInBits); in CryptKDFa()
799 CryptDigestUpdateInt(&hState.hashState, 4, sizeInBits); in CryptKDFa()
833 UINT32 sizeInBits, // IN: size of generated key in bits in CryptKDFe() argument
845 pAssert(keyStream != NULL && Z != NULL && ((sizeInBits + 7) / 8) < INT16_MAX); in CryptKDFe()
848 bytes = (INT16)((sizeInBits + 7) / 8); in CryptKDFe()
904 if((sizeInBits % 8) != 0) in CryptKDFe()
905 keyStream[0] &= ((1 << (sizeInBits % 8)) - 1); in CryptKDFe()
907 return (UINT16)((sizeInBits + 7) / 8); in CryptKDFe()
/external/llvm-project/clang/utils/TableGen/
DMveEmitter.cpp144 virtual unsigned sizeInBits() const = 0;
181 unsigned sizeInBits() const override { return 0; } in sizeInBits() function in __anonf88c1dfe0111::VoidType
197 unsigned sizeInBits() const override { return 32; } in sizeInBits() function in __anonf88c1dfe0111::PointerType
251 unsigned sizeInBits() const override { return Bits; } in sizeInBits() function in __anonf88c1dfe0111::ScalarType
295 unsigned sizeInBits() const override { return Lanes * Element->sizeInBits(); } in sizeInBits() function in __anonf88c1dfe0111::VectorType
320 unsigned sizeInBits() const override { in sizeInBits() function in __anonf88c1dfe0111::MultiVectorType
321 return Registers * Element->sizeInBits(); in sizeInBits()
347 unsigned sizeInBits() const override { return 16; } in sizeInBits() function in __anonf88c1dfe0111::PredicateType
928 unsigned ArgTypeBits = IA.ArgType->sizeInBits(); in genSema()
942 tmp = utostr(IA.ArgType->sizeInBits()); in genSema()
[all …]
/external/ms-tpm-20-ref/TPMCmd/tpm/include/prototypes/
DCryptHash_fp.h379 UINT32 sizeInBits, // IN: size of generated key in bits
409 UINT32 sizeInBits, // IN: size of generated key in bits
/external/llvm-project/mlir/lib/Analysis/
DUtils.cpp392 unsigned sizeInBits; in getMemRefEltSizeInBytes() local
394 sizeInBits = elementType.getIntOrFloatBitWidth(); in getMemRefEltSizeInBytes()
397 sizeInBits = in getMemRefEltSizeInBytes()
400 return llvm::divideCeil(sizeInBits, 8); in getMemRefEltSizeInBytes()
/external/llvm-project/lld/COFF/
DChunks.cpp556 int sizeInBits = getRuntimePseudoRelocSize(rel.Type); in getRuntimePseudoRelocs() local
557 if (sizeInBits == 0) { in getRuntimePseudoRelocs()
567 RuntimePseudoReloc(target, this, rel.VirtualAddress, sizeInBits)); in getRuntimePseudoRelocs()
/external/llvm-project/mlir/lib/Transforms/
DLoopFusion.cpp759 unsigned sizeInBits; in getMemRefEltSizeInBytes() local
761 sizeInBits = elementType.getIntOrFloatBitWidth(); in getMemRefEltSizeInBytes()
764 sizeInBits = in getMemRefEltSizeInBytes()
767 return llvm::divideCeil(sizeInBits, 8); in getMemRefEltSizeInBytes()
/external/llvm/lib/Support/
DAPFloat.cpp58 unsigned int sizeInBits; member
869 return semantics.sizeInBits; in semanticsSizeInBits()
3396 return Sem.sizeInBits; in getSizeInBits()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPFloat.cpp68 unsigned int sizeInBits; member
202 return semantics.sizeInBits; in semanticsSizeInBits()
206 return Sem.sizeInBits; in getSizeInBits()
/external/llvm-project/mlir/lib/Conversion/StandardToLLVM/
DStandardToLLVM.cpp2086 unsigned sizeInBits; in getMemRefEltSizeInBytes() local
2088 sizeInBits = elementType.getIntOrFloatBitWidth(); in getMemRefEltSizeInBytes()
2091 sizeInBits = in getMemRefEltSizeInBytes()
2094 return llvm::divideCeil(sizeInBits, 8); in getMemRefEltSizeInBytes()
/external/llvm-project/llvm/lib/Support/
DAPFloat.cpp68 unsigned int sizeInBits; member
216 return semantics.sizeInBits; in semanticsSizeInBits()
220 return Sem.sizeInBits; in getSizeInBits()