Home
last modified time | relevance | path

Searched refs:bSize (Results 1 – 15 of 15) sorted by relevance

/external/ms-tpm-20-ref/Samples/Nucleo-TPM/Shared/Platform/src/
DUnique.c61 uint32_t bSize, // size of the buffer in _plat__GetUnique() argument
70 for(retVal = 0; retVal < bSize; retVal++) in _plat__GetUnique()
78 b = &b[((bSize < uSize) ? bSize : uSize) - 1]; in _plat__GetUnique()
79 for(retVal = 0; retVal < bSize; retVal++) in _plat__GetUnique()
/external/ms-tpm-20-ref/TPMCmd/Platform/src/
DUnique.c60 uint32_t bSize, // size of the buffer in _plat__GetUnique() argument
70 *from != 0 && retVal < bSize; in _plat__GetUnique()
79 b = &b[((bSize < uSize) ? bSize : uSize) - 1]; in _plat__GetUnique()
81 *from != 0 && retVal < bSize; in _plat__GetUnique()
/external/ms-tpm-20-ref/Samples/ARM32-FirmwareTPM/optee_ta/fTPM/platform/
DUnique.c64 uint32_t bSize, // size of the buffer in _plat__GetUnique() argument
85 *from != 0 && retVal < bSize; in _plat__GetUnique()
93 b = &b[((bSize < uSize) ? bSize : uSize) - 1]; in _plat__GetUnique()
95 *from != 0 && retVal < bSize; in _plat__GetUnique()
/external/ms-tpm-20-ref/TPMCmd/tpm/src/support/
DMathOnByteBuffers.c56 UINT32 bSize, // IN: size of b in UnsignedCompareB() argument
61 if(aSize > bSize) in UnsignedCompareB()
63 else if(aSize < bSize) in UnsignedCompareB()
86 const UINT32 bSize, // IN: size of b in SignedCompareB() argument
106 return UnsignedCompareB(aSize, a, bSize, b); in SignedCompareB()
109 return 0 - UnsignedCompareB(aSize, a, bSize, b); in SignedCompareB()
/external/ms-tpm-20-ref/TPMCmd/tpm/include/prototypes/
DMathOnByteBuffers_fp.h54 UINT32 bSize, // IN: size of b
68 const UINT32 bSize, // IN: size of b
/external/mesa3d/src/mesa/state_tracker/
Dst_atom_pixeltransfer.c51 const GLuint bSize = ctx->PixelMaps.BtoB.Size; in load_color_map_texture() local
74 rgba[2] = ctx->PixelMaps.BtoB.Map[j * bSize / texSize]; in load_color_map_texture()
/external/zstd/lib/compress/
Dzstdmt_compress.c154 static void ZSTDMT_setBufferSize(ZSTDMT_bufferPool* const bufPool, size_t const bSize) in ZSTDMT_setBufferSize() argument
157 DEBUGLOG(4, "ZSTDMT_setBufferSize: bSize = %u", (U32)bSize); in ZSTDMT_setBufferSize()
158 bufPool->bufferSize = bSize; in ZSTDMT_setBufferSize()
171 size_t const bSize = srcBufPool->bufferSize; /* forward parameters */ in ZSTDMT_expandBufferPool() local
176 ZSTDMT_setBufferSize(newBufPool, bSize); in ZSTDMT_expandBufferPool()
187 size_t const bSize = bufPool->bufferSize; in ZSTDMT_getBuffer() local
194 if ((availBufferSize >= bSize) & ((availBufferSize>>3) <= bSize)) { in ZSTDMT_getBuffer()
209 void* const start = ZSTD_customMalloc(bSize, bufPool->cMem); in ZSTDMT_getBuffer()
211 buffer.capacity = (start==NULL) ? 0 : bSize; in ZSTDMT_getBuffer()
215 DEBUGLOG(5, "ZSTDMT_getBuffer: created buffer of size %u", (U32)bSize); in ZSTDMT_getBuffer()
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/Shared/Platform/include/prototypes/
DPlatform_fp.h438 uint32_t bSize, // size of the buffer
/external/ms-tpm-20-ref/Samples/ARM32-FirmwareTPM/optee_ta/fTPM/platform/include/
DPlatform_fp.h428 uint32_t bSize, // size of the buffer
/external/ms-tpm-20-ref/TPMCmd/Platform/include/prototypes/
DPlatform_fp.h534 uint32_t bSize, // size of the buffer
/external/zstd/zlibWrapper/examples/
Dzwrapbench.c949 { size_t bSize = readU32FromChar(&argument); in main() local
950 … if (toupper(*argument)=='K') bSize<<=10, argument++; /* allows using KB notation */ in main()
951 if (toupper(*argument)=='M') bSize<<=20, argument++; in main()
954 BMK_SetBlockSize(bSize); in main()
/external/s2-geometry-library-java/src/com/google/common/geometry/
DS2Polygon.java771 int bSize = smallest.getKey().intValue(); in destructiveUnionSloppy() local
778 int unionSize = aSize + bSize; in destructiveUnionSloppy()
/external/skia/tests/
DGrBlockAllocatorTest.cpp523 size_t bSize = poolB->totalSize(); in DEF_TEST() local
524 size_t theftSize = bSize - poolB->preallocSize(); in DEF_TEST()
DResourceCacheTest.cpp1810 size_t bSize = context->getResourceCacheLimit(); in DEF_GPUTEST_FOR_MOCK_CONTEXT() local
1811 return uSize > bSize; in DEF_GPUTEST_FOR_MOCK_CONTEXT()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dfetch_jit.cpp1173 constexpr bool bSize = (sizeof(T) == sizeof(uint16_t)); in GetSimdValidIndicesHelper() local
1174 if (bSize) in GetSimdValidIndicesHelper()