Home
last modified time | relevance | path

Searched refs:wCount (Results 1 – 10 of 10) sorted by relevance

/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Drivers/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_hal_pcd.h674 #define PCD_SET_EP_RX_CNT(USBx, bEpNum,wCount) {\ argument
676 PCD_SET_EP_CNT_RX_REG(pdwReg, (wCount));\
705 #define PCD_CALC_BLK32(dwReg,wCount,wNBlocks) {\ argument
706 (wNBlocks) = (wCount) >> 5;\
707 if(((wCount) & 0x1f) == 0)\
714 #define PCD_CALC_BLK2(dwReg,wCount,wNBlocks) {\ argument
715 (wNBlocks) = (wCount) >> 1;\
716 if(((wCount) & 0x1) != 0)\
723 #define PCD_SET_EP_CNT_RX_REG(dwReg,wCount) {\ argument
725 if((wCount) > 62) \
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Drivers/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_hal_pcd.h674 #define PCD_SET_EP_RX_CNT(USBx, bEpNum,wCount) {\ argument
676 PCD_SET_EP_CNT_RX_REG(pdwReg, (wCount));\
705 #define PCD_CALC_BLK32(dwReg,wCount,wNBlocks) {\ argument
706 (wNBlocks) = (wCount) >> 5;\
707 if(((wCount) & 0x1f) == 0)\
714 #define PCD_CALC_BLK2(dwReg,wCount,wNBlocks) {\ argument
715 (wNBlocks) = (wCount) >> 1;\
716 if(((wCount) & 0x1) != 0)\
723 #define PCD_SET_EP_CNT_RX_REG(dwReg,wCount) {\ argument
725 if((wCount) > 62) \
[all …]
/external/libese/third_party/NXPNFC_P61_JCOP_Kit/src/
DJcopOsDownload.cpp428 INT32 wIndex,wCount=0; in load_JcopOS_image() local
468 wCount=0; in load_JcopOS_image()
473 for(wCount =0; (wCount < 5 && !feof(Os_info->fp)); wCount++, wIndex++) in load_JcopOS_image()
488 for(wCount =0; (wCount < wLen && !feof(Os_info->fp)); wCount++, wIndex++) in load_JcopOS_image()
DAla.cpp787 INT32 wIndex,wCount=0; in ALA_loadapplet() local
1308 INT32 wCount, wLen, wIndex = 0; in ALA_ReadScript() local
1316 for(wCount =0; (wCount < 2 && !feof(Os_info->fp)); wCount++, wIndex++) in ALA_ReadScript()
1323 Os_info->bytes_read = Os_info->bytes_read + (wCount*2); in ALA_ReadScript()
1328 for(wCount =0; (wCount < 1 && !feof(Os_info->fp)); wCount++, wIndex++) in ALA_ReadScript()
1338 Os_info->bytes_read = Os_info->bytes_read + (wCount*2); in ALA_ReadScript()
1368 for(wCount =0; (wCount < 1 && !feof(Os_info->fp)); wCount++, wIndex++) in ALA_ReadScript()
1379 Os_info->bytes_read = Os_info->bytes_read + (wCount*2); in ALA_ReadScript()
1384 for(wCount =0; (wCount < 2 && !feof(Os_info->fp)); wCount++, wIndex++) in ALA_ReadScript()
1394 Os_info->bytes_read = Os_info->bytes_read + (wCount*2); in ALA_ReadScript()
[all …]
/external/dng_sdk/source/
Ddng_bottlenecks.h439 uint32 wCount,
448 uint32 wCount);
458 uint32 wCount,
468 uint32 wCount,
1444 uint32 wCount, in DoResampleDown16() argument
1453 wCount, in DoResampleDown16()
1463 uint32 wCount) in DoResampleDown32() argument
1471 wCount); in DoResampleDown32()
1482 uint32 wCount, in DoResampleAcross16() argument
1492 wCount, in DoResampleAcross16()
[all …]
Ddng_reference.h398 uint32 wCount,
406 uint32 wCount);
415 uint32 wCount,
424 uint32 wCount,
Ddng_reference.cpp1856 uint32 wCount, in RefResampleDown16() argument
1867 for (uint32 k = 0; k < wCount; k++) in RefResampleDown16()
1891 uint32 wCount) in RefResampleDown32() argument
1911 for (uint32 j = 1; j < wCount - 1; j++) in RefResampleDown32()
1929 w = wPtr [wCount - 1]; in RefResampleDown32()
1949 uint32 wCount, in RefResampleAcross16() argument
1967 for (uint32 k = 1; k < wCount; k++) in RefResampleAcross16()
1989 uint32 wCount, in RefResampleAcross32() argument
2006 for (uint32 k = 1; k < wCount; k++) in RefResampleAcross32()
Ddng_lens_correction.cpp1300 const int32 wCount = fWeights.Width (); in ProcessArea() local
1315 const int32 hMax = SafeInt32Sub (SafeInt32Sub (srcArea.r, wCount), 1); in ProcessArea()
1318 const int32 vMax = SafeInt32Sub (SafeInt32Sub (srcArea.b, wCount), 1); in ProcessArea()
1402 for (int32 i = 0; i < wCount; i++) in ProcessArea()
1405 for (int32 j = 0; j < wCount; j++) in ProcessArea()
1412 w += wCount; in ProcessArea()
/external/kernel-headers/original/uapi/linux/usb/
Dfunctionfs.h69 __le16 wCount; member
/external/skia/src/core/
DSkPath.cpp3378 const SkScalar ws[], int wCount, in Make() argument
3385 if (!info.valid || info.points > pointCount || info.weights > wCount) { in Make()