Home
last modified time | relevance | path

Searched refs:tmpSize (Results 1 – 25 of 260) sorted by relevance

1234567891011

/dports/games/xonotic/Xonotic/source/qcsrc/common/vehicles/
H A Dcl_vehicles.qc153 vector tmpSize = '0 0 0';
190 tmpSize = '1 1 1' * hud_fontsize;
195 tmpSize.x = vehicleHud_Size.x / 3;
196 tmpSize.y = vehicleHud_Size.y;
217 drawsetcliparea(tmpPos.x + (tmpSize.x * (1 - health)), tmpPos.y, tmpSize.x, tmpSize.y);
223 drawsetcliparea(tmpPos.x + (tmpSize.x * (1 - shield)), tmpPos.y, tmpSize.x, tmpSize.y);
231 drawsetcliparea(tmpPos.x, tmpPos.y, tmpSize.x * ammo1, tmpSize.y);
233 drawsetcliparea(tmpPos.x, tmpPos.y, tmpSize.x * reload1, tmpSize.y);
241 drawsetcliparea(tmpPos.x, tmpPos.y, tmpSize.x * ammo2, tmpSize.y);
243 drawsetcliparea(tmpPos.x, tmpPos.y, tmpSize.x * reload2, tmpSize.y);
[all …]
/dports/textproc/libextractor/libextractor-1.11/src/common/
H A Dconvert.c44 size_t tmpSize; in EXTRACTOR_common_convert_to_utf8() local
61 tmpSize = 3 * len + 4; in EXTRACTOR_common_convert_to_utf8()
62 tmp = malloc (tmpSize); in EXTRACTOR_common_convert_to_utf8()
69 finSize = tmpSize; in EXTRACTOR_common_convert_to_utf8()
76 ret = malloc (tmpSize - finSize + 1); in EXTRACTOR_common_convert_to_utf8()
83 memcpy (ret, tmp, tmpSize - finSize); in EXTRACTOR_common_convert_to_utf8()
84 ret[tmpSize - finSize] = '\0'; in EXTRACTOR_common_convert_to_utf8()
/dports/www/gitea/gitea-1.16.5/vendor/github.com/duo-labs/webauthn/protocol/googletpm/
H A Dgoogletpm.go76 var tmpSize uint16
77 if err := binary.Read(buf, binary.BigEndian, &tmpSize); err != nil {
80 size = int(tmpSize)
83 var tmpSize uint16
84 if err := binary.Read(buf, binary.BigEndian, &tmpSize); err != nil {
87 size = int(tmpSize)
90 var tmpSize uint32
91 if err := binary.Read(buf, binary.BigEndian, &tmpSize); err != nil {
94 size = int(tmpSize)
/dports/multimedia/gpac-mp4box/gpac-1.0.0/src/odf/
H A Dodf_command.c245 u32 tmpSize = 0, nbBytes = 0; in gf_odf_read_od_update() local
253 nbBytes += tmpSize + gf_odf_size_field_size(tmpSize); in gf_odf_read_od_update()
263 u32 i, tmpSize; in gf_odf_size_od_update() local
270 *outSize += tmpSize + gf_odf_size_field_size(tmpSize); in gf_odf_size_od_update()
346 u32 tmpSize = 0, nbBits = 0; in gf_odf_read_esd_update() local
358 nbBits += ( tmpSize + gf_odf_size_field_size(tmpSize) ) * 8; in gf_odf_read_esd_update()
376 u32 i, BitSize, tmpSize; in gf_odf_size_esd_update() local
385 BitSize += ( tmpSize + gf_odf_size_field_size(tmpSize) ) * 8; in gf_odf_size_esd_update()
612 nbBytes += tmpSize + gf_odf_size_field_size(tmpSize); in gf_odf_read_ipmp_update()
624 u32 i, tmpSize; in gf_odf_size_ipmp_update() local
[all …]
/dports/multimedia/ccextractor/ccextractor-0.85/src/gpacmp4/
H A Dodf_command.c244 u32 tmpSize = 0, nbBytes = 0; in gf_odf_read_od_update() local
252 nbBytes += tmpSize + gf_odf_size_field_size(tmpSize); in gf_odf_read_od_update()
262 u32 i, tmpSize; in gf_odf_size_od_update() local
269 *outSize += tmpSize + gf_odf_size_field_size(tmpSize); in gf_odf_size_od_update()
345 u32 tmpSize = 0, nbBits = 0; in gf_odf_read_esd_update() local
357 nbBits += (tmpSize + gf_odf_size_field_size(tmpSize)) * 8; in gf_odf_read_esd_update()
375 u32 i, BitSize, tmpSize; in gf_odf_size_esd_update() local
384 BitSize += (tmpSize + gf_odf_size_field_size(tmpSize)) * 8; in gf_odf_size_esd_update()
610 nbBytes += tmpSize + gf_odf_size_field_size(tmpSize); in gf_odf_read_ipmp_update()
622 u32 i, tmpSize; in gf_odf_size_ipmp_update() local
[all …]
/dports/multimedia/gpac-libgpac/gpac-1.0.0/src/odf/
H A Dodf_command.c245 u32 tmpSize = 0, nbBytes = 0; in gf_odf_read_od_update() local
253 nbBytes += tmpSize + gf_odf_size_field_size(tmpSize); in gf_odf_read_od_update()
263 u32 i, tmpSize; in gf_odf_size_od_update() local
270 *outSize += tmpSize + gf_odf_size_field_size(tmpSize); in gf_odf_size_od_update()
346 u32 tmpSize = 0, nbBits = 0; in gf_odf_read_esd_update() local
358 nbBits += ( tmpSize + gf_odf_size_field_size(tmpSize) ) * 8; in gf_odf_read_esd_update()
376 u32 i, BitSize, tmpSize; in gf_odf_size_esd_update() local
385 BitSize += ( tmpSize + gf_odf_size_field_size(tmpSize) ) * 8; in gf_odf_size_esd_update()
612 nbBytes += tmpSize + gf_odf_size_field_size(tmpSize); in gf_odf_read_ipmp_update()
624 u32 i, tmpSize; in gf_odf_size_ipmp_update() local
[all …]
/dports/x11-toolkits/mygui-ogre/mygui-MyGUI3.4.0/Wrappers/MyGUI_Managed/
H A DUtility.cpp42 int tmpSize = MultiByteToWideChar( CP_UTF8, 0, srcPtr, -1, 0, 0 ); in utf8_to_utf16() local
43 WCHAR* tmpBuff = new WCHAR [ tmpSize + 1 ]; in utf8_to_utf16()
44 MultiByteToWideChar( CP_UTF8, 0, srcPtr, -1, tmpBuff, tmpSize ); in utf8_to_utf16()
53 int tmpSize = MultiByteToWideChar( CP_ACP, 0, srcPtr, -1, 0, 0 ); in ansi_to_utf16() local
54 WCHAR* tmpBuff = new WCHAR [ tmpSize + 1 ]; in ansi_to_utf16()
55 MultiByteToWideChar( CP_ACP, 0, srcPtr, -1, tmpBuff, tmpSize ); in ansi_to_utf16()
/dports/x11-toolkits/mygui-dummy/mygui-MyGUI3.4.0/Wrappers/MyGUI_Managed/
H A DUtility.cpp42 int tmpSize = MultiByteToWideChar( CP_UTF8, 0, srcPtr, -1, 0, 0 ); in utf8_to_utf16() local
43 WCHAR* tmpBuff = new WCHAR [ tmpSize + 1 ]; in utf8_to_utf16()
44 MultiByteToWideChar( CP_UTF8, 0, srcPtr, -1, tmpBuff, tmpSize ); in utf8_to_utf16()
53 int tmpSize = MultiByteToWideChar( CP_ACP, 0, srcPtr, -1, 0, 0 ); in ansi_to_utf16() local
54 WCHAR* tmpBuff = new WCHAR [ tmpSize + 1 ]; in ansi_to_utf16()
55 MultiByteToWideChar( CP_ACP, 0, srcPtr, -1, tmpBuff, tmpSize ); in ansi_to_utf16()
/dports/x11-toolkits/mygui-opengl/mygui-MyGUI3.4.0/Wrappers/MyGUI_Managed/
H A DUtility.cpp42 int tmpSize = MultiByteToWideChar( CP_UTF8, 0, srcPtr, -1, 0, 0 ); in utf8_to_utf16() local
43 WCHAR* tmpBuff = new WCHAR [ tmpSize + 1 ]; in utf8_to_utf16()
44 MultiByteToWideChar( CP_UTF8, 0, srcPtr, -1, tmpBuff, tmpSize ); in utf8_to_utf16()
53 int tmpSize = MultiByteToWideChar( CP_ACP, 0, srcPtr, -1, 0, 0 ); in ansi_to_utf16() local
54 WCHAR* tmpBuff = new WCHAR [ tmpSize + 1 ]; in ansi_to_utf16()
55 MultiByteToWideChar( CP_ACP, 0, srcPtr, -1, tmpBuff, tmpSize ); in ansi_to_utf16()
/dports/x11-toolkits/mygui/mygui-MyGUI3.4.0/Wrappers/MyGUI_Managed/
H A DUtility.cpp42 int tmpSize = MultiByteToWideChar( CP_UTF8, 0, srcPtr, -1, 0, 0 ); in utf8_to_utf16() local
43 WCHAR* tmpBuff = new WCHAR [ tmpSize + 1 ]; in utf8_to_utf16()
44 MultiByteToWideChar( CP_UTF8, 0, srcPtr, -1, tmpBuff, tmpSize ); in utf8_to_utf16()
53 int tmpSize = MultiByteToWideChar( CP_ACP, 0, srcPtr, -1, 0, 0 ); in ansi_to_utf16() local
54 WCHAR* tmpBuff = new WCHAR [ tmpSize + 1 ]; in ansi_to_utf16()
55 MultiByteToWideChar( CP_ACP, 0, srcPtr, -1, tmpBuff, tmpSize ); in ansi_to_utf16()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/queso/src/misc/src/
H A D1D1DFunction.C445 unsigned int tmpSize = m_domainValues.size(); in Sampled1D1DFunction() local
446 for (unsigned int i = 0; i < tmpSize; ++i) { in Sampled1D1DFunction()
487 for (i = 0; i < tmpSize; ++i) { in value()
540 for (unsigned int i = 0; i < tmpSize; ++i) { in domainValueMatchesExactly()
558 unsigned int tmpSize = domainValues.size(); in set() local
560 m_maxDomainValue = domainValues[tmpSize-1]; in set()
562 m_domainValues.resize(tmpSize,0.); in set()
563 m_imageValues.resize(tmpSize,0.); in set()
564 for (unsigned int i = 0; i < tmpSize; ++i) { in set()
579 if (tmpSize == 0) { in printForMatlab()
[all …]
/dports/devel/fifechan/fifechan-0.1.5/src/widgets/
H A Dflowcontainer.cpp60 int tmpSize = 0; in adjustContent() local
78 layoutMax.push_back(tmpSize); in adjustContent()
79 tmpSize = 0; in adjustContent()
82tmpSize = std::max(tmpSize, rec.width + child->getMarginLeft() + (child->getMarginRight() > 0 ? ch… in adjustContent()
88 layoutMax.push_back(tmpSize); in adjustContent()
89 tmpSize = 0; in adjustContent()
92tmpSize = std::max(tmpSize, rec.height + child->getMarginTop() + (child->getMarginBottom() > 0 ? c… in adjustContent()
95 if (tmpSize != 0) { in adjustContent()
96 layoutMax.push_back(tmpSize); in adjustContent()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/
H A DCKeyPairGenerator.java87 int tmpSize; in initialize() local
89 tmpSize = DEF_RSA_KEY_SIZE; in initialize()
96 tmpSize = ((RSAKeyGenParameterSpec) params).getKeysize(); in initialize()
104 RSAKeyFactory.checkKeyLengths(tmpSize, null, in initialize()
111 this.keySize = tmpSize; in initialize()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/
H A DCKeyPairGenerator.java87 int tmpSize; in initialize() local
89 tmpSize = DEF_RSA_KEY_SIZE; in initialize()
96 tmpSize = ((RSAKeyGenParameterSpec) params).getKeysize(); in initialize()
104 RSAKeyFactory.checkKeyLengths(tmpSize, null, in initialize()
111 this.keySize = tmpSize; in initialize()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/windows/classes/sun/security/mscapi/
H A DCKeyPairGenerator.java87 int tmpSize; in initialize() local
89 tmpSize = DEF_RSA_KEY_SIZE; in initialize()
96 tmpSize = ((RSAKeyGenParameterSpec) params).getKeysize(); in initialize()
104 RSAKeyFactory.checkKeyLengths(tmpSize, null, in initialize()
111 this.keySize = tmpSize; in initialize()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/
H A DCKeyPairGenerator.java87 int tmpSize; in initialize() local
89 tmpSize = DEF_RSA_KEY_SIZE; in initialize()
96 tmpSize = ((RSAKeyGenParameterSpec) params).getKeysize(); in initialize()
104 RSAKeyFactory.checkKeyLengths(tmpSize, null, in initialize()
111 this.keySize = tmpSize; in initialize()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/
H A DCKeyPairGenerator.java87 int tmpSize; in initialize() local
89 tmpSize = DEF_RSA_KEY_SIZE; in initialize()
96 tmpSize = ((RSAKeyGenParameterSpec) params).getKeysize(); in initialize()
104 RSAKeyFactory.checkKeyLengths(tmpSize, null, in initialize()
111 this.keySize = tmpSize; in initialize()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/
H A DCKeyPairGenerator.java87 int tmpSize; in initialize() local
89 tmpSize = DEF_RSA_KEY_SIZE; in initialize()
96 tmpSize = ((RSAKeyGenParameterSpec) params).getKeysize(); in initialize()
104 RSAKeyFactory.checkKeyLengths(tmpSize, null, in initialize()
111 this.keySize = tmpSize; in initialize()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/
H A DCKeyPairGenerator.java87 int tmpSize; in initialize() local
89 tmpSize = DEF_RSA_KEY_SIZE; in initialize()
96 tmpSize = ((RSAKeyGenParameterSpec) params).getKeysize(); in initialize()
104 RSAKeyFactory.checkKeyLengths(tmpSize, null, in initialize()
111 this.keySize = tmpSize; in initialize()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/
H A DCKeyPairGenerator.java87 int tmpSize; in initialize() local
89 tmpSize = DEF_RSA_KEY_SIZE; in initialize()
96 tmpSize = ((RSAKeyGenParameterSpec) params).getKeysize(); in initialize()
104 RSAKeyFactory.checkKeyLengths(tmpSize, null, in initialize()
111 this.keySize = tmpSize; in initialize()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/
H A DCKeyPairGenerator.java87 int tmpSize; in initialize() local
89 tmpSize = DEF_RSA_KEY_SIZE; in initialize()
96 tmpSize = ((RSAKeyGenParameterSpec) params).getKeysize(); in initialize()
104 RSAKeyFactory.checkKeyLengths(tmpSize, null, in initialize()
111 this.keySize = tmpSize; in initialize()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/windows/classes/sun/security/mscapi/
H A DCKeyPairGenerator.java87 int tmpSize; in initialize() local
89 tmpSize = DEF_RSA_KEY_SIZE; in initialize()
96 tmpSize = ((RSAKeyGenParameterSpec) params).getKeysize(); in initialize()
104 RSAKeyFactory.checkKeyLengths(tmpSize, null, in initialize()
111 this.keySize = tmpSize; in initialize()
/dports/audio/carla/Carla-2.4.1/source/native-plugins/
H A Dmidi-base.hpp362 ssize_t tmpSize; in setState() local
379 tmpSize = needle - dataRead; in setState()
380 CARLA_SAFE_ASSERT_RETURN(tmpSize > 0,); in setState()
381 CARLA_SAFE_ASSERT_RETURN(tmpSize < 24,); in setState()
384 const size_t uSize = static_cast<size_t>(tmpSize); in setState()
386 tmpBuf[tmpSize] = '\0'; in setState()
400 tmpSize = needle - dataRead; in setState()
401 CARLA_SAFE_ASSERT_RETURN(tmpSize > 0 && tmpSize < 24,); in setState()
406 tmpBuf[tmpSize] = '\0'; in setState()
421 tmpSize = i==0 ? 4 : 3; in setState()
[all …]
/dports/graphics/blend2d/blend2d-592d1ba52672bbf6365aba476bfe26b7bd2dfab8/src/blend2d/codec/
H A Ddeflate.cpp330 uint32_t tmpSize; \
333 tmpSize = tmpCode >> 9; \
339 tmpSize = DeflateTable::kFastBits + 1; \
341 while (tmpCode >= (_Table_)->maxCode[tmpSize]) \
342 tmpSize++; \
345 if (tmpSize == 16) BL_DEFLATE_INVALID(); \
348 tmpCode = uint32_t(int32_t(tmpCode >> (16 - tmpSize)) + \
349 (_Table_)->delta[tmpSize]); \
351 BL_ASSERT((_Table_)->size[tmpCode] == tmpSize); \
355 BL_DEFLATE_CONSUME(tmpSize); \
/dports/math/optpp/optpp-2.4/src/Base/
H A DNLP0.C119 const int tmpSize = (int) ceil((double) ndim/nprocs); in BDGrad() local
120 double *tmpGradMinus = new double[tmpSize]; in BDGrad()
221 MPI_Bcast(tmpGradMinus, tmpSize, MPI_DOUBLE, i, MPI_COMM_WORLD); in BDGrad()
246 const int tmpSize = (int) ceil((double) ndim/nprocs); in FDGrad() local
247 double *tmpGradPlus = new double[tmpSize]; in FDGrad()
347 MPI_Bcast(tmpGradPlus, tmpSize, MPI_DOUBLE, i, MPI_COMM_WORLD); in FDGrad()
369 int j, tmpSize; in CDGrad() local
500 tmpSize = (int) ceil((double) (2*ndim)/nprocs); in CDGrad()
504 tmpSize = (int) ceil((double) (2*ndim)/(nprocs-1)); in CDGrad()
506 double *tmpGradPlus = new double[tmpSize]; in CDGrad()
[all …]

1234567891011