Searched defs:retSize (Results 1 - 4 of 4) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Shell/OS/Windows/
H A DPVRShellOS.cpp109 DWORD retSize; local
116 retSize = GetModuleFileName(NULL, exeNameTCHAR, DIR_BUFFER_LEN);
118 if (DIR_BUFFER_LEN > (int)retSize)
121 retSize = (DWORD)_tcslen(exeNameTCHAR);
124 for (DWORD i = 0; i <= retSize; i++)
/external/python/cpython2/PC/
H A D_winreg.c1412 DWORD retSize = 0; local
1421 rc = RegQueryValue(hKey, subKey, NULL, &retSize);
1423 retSize = 256;
1428 bufSize = retSize;
1434 retSize = bufSize;
1435 rc = RegQueryValue(hKey, subKey, retBuf, &retSize);
1454 if (retBuf[retSize-1] == '\x00')
1455 retSize--;
1456 retStr = PyString_FromStringAndSize(retBuf, retSize);
1473 DWORD bufSize = 0, retSize; local
[all...]
/external/python/cpython3/PC/
H A Dwinreg.c1412 DWORD retSize = 0; local
1415 rc = RegQueryValueW(key, sub_key, NULL, &retSize);
1417 retSize = 256;
1422 bufSize = retSize;
1428 retSize = bufSize;
1429 rc = RegQueryValueW(key, sub_key, retBuf, &retSize);
1477 DWORD bufSize = 0, retSize; local
1493 retSize = bufSize;
1495 (BYTE *)retBuf, &retSize);
/external/tpm2/
H A DCryptUtil.c474 // Hash a block of data and return the results. If the digest is larger than retSize, it is truncated and with the
486 UINT16 retSize, // IN: size of the return buffer
491 return _cpri__HashBlock(algId, blockSize, block, retSize, ret);
482 CryptHashBlock( TPM_ALG_ID algId, UINT16 blockSize, BYTE *block, UINT16 retSize, BYTE *ret ) argument

Completed in 272 milliseconds