/external/lzma/DOC/ |
D | 7zFormat.txt | 109 REAL_UINT64 means real UINT64. 111 UINT64 means real UINT64 encoded with the following scheme: 202 UINT64 PropertySize; 221 UINT64 PackPos 222 UINT64 NumPackStreams 226 UINT64 PackSizes[NumPackStreams] 239 UINT64 NumCoders; 253 UINT64 NumInStreams; 254 UINT64 NumOutStreams; 258 UINT64 PropertiesSize [all …]
|
/external/tpm2/ |
D | swap.h | 23 #define BYTE_ARRAY_TO_UINT64(b) (UINT64)( ((UINT64)(b)[0] << 56) \ 24 + ((UINT64)(b)[1] << 48) \ 25 + ((UINT64)(b)[2] << 40) \ 26 + ((UINT64)(b)[3] << 32) \ 27 + ((UINT64)(b)[4] << 24) \ 28 + ((UINT64)(b)[5] << 16) \ 29 + ((UINT64)(b)[6] << 8) \ 30 + (UINT64)(b)[7]) 57 #define BYTE_ARRAY_TO_UINT64(b) *((UINT64 *)(b)) 63 #define UINT64_TO_BYTE_ARRAY(i, b) (*((UINT64 *)(b)) = (i))
|
D | Global.h | 330 UINT64 startTime; // value of TPMS_CLOCK_INFO.clock when 334 UINT64 timeOut; // timeout relative to 553 extern UINT64 g_time; 701 UINT64 totalResetCount; 754 UINT64 auditCounter; 799 UINT64 clock; // The orderly version of clock 876 UINT64 objectContextID; // This is the context ID for a saved 920 UINT64 commitCounter; // This counter increments each time 1023 extern UINT64 s_selfHealTimer; 1027 extern UINT64 s_lockoutTimer;
|
D | NV.c | 85 static UINT64 90 UINT64 countValue; in NvReadMaxCount() 91 _plat__NvMemoryRead(s_maxCountAddr, sizeof(UINT64), &countValue); in NvReadMaxCount() 102 UINT64 maxCount in NvWriteMaxCount() 105 _plat__NvMemoryWrite(s_maxCountAddr, sizeof(UINT64), &maxCount); in NvWriteMaxCount() 215 return sizeof(TPM_HANDLE) + sizeof(NV_INDEX) + sizeof(UINT64) + sizeof(UINT32); in NvGetCounterSize() 538 s_evictNvStart = s_maxCountAddr + sizeof(UINT64); in NvInitStatic() 557 UINT64 zeroCounter = 0; in NvInit() 563 _plat__NvMemoryWrite(s_maxCountAddr, sizeof(UINT64), &zeroCounter); in NvInit() 901 UINT64 counter; in NvEntityStartup() [all …]
|
D | Global.c | 23 UINT64 g_time; 66 UINT64 s_selfHealTimer; 67 UINT64 s_lockoutTimer;
|
D | Policy_spt_fp.h | 15 UINT64 policyTimeout, 18 TPM_RC PolicyParameterChecks(SESSION *session, UINT64 authTimeout,
|
D | NV_SetBits.c | 28 UINT64 oldValue; in TPM2_NV_SetBits() 29 UINT64 newValue; in TPM2_NV_SetBits()
|
D | PropertyCap.c | 197 *value += sizeof(UINT64) + sizeof(TPMI_DH_CONTEXT) + in TPMPropertyIsDefined() 205 *value += sizeof(UINT64); in TPMPropertyIsDefined() 214 *value += sizeof(UINT64) + sizeof(TPMI_DH_CONTEXT) + in TPMPropertyIsDefined() 222 *value += sizeof(UINT64); in TPMPropertyIsDefined()
|
D | Clock.c | 18 static UINT64 clock(void) in clock() 22 return (UINT64)tv.tv_sec * 1000 + tv.tv_usec / 1000; in clock()
|
D | PolicyTicket.c | 27 UINT64 timeout; in TPM2_PolicyTicket() 48 if(in->timeout.t.size != sizeof(UINT64)) in TPM2_PolicyTicket()
|
D | PolicySecret.c | 35 UINT64 authTimeout = 0; in TPM2_PolicySecret() 83 out->timeout.t.size = sizeof(UINT64); in TPM2_PolicySecret()
|
D | DA.c | 127 UINT64 decreaseCount; in DASelfHeal() 140 s_selfHealTimer += (decreaseCount * (UINT64)gp.recoveryTime) * 1000; in DASelfHeal()
|
D | NV_fp.h | 45 UINT64 *data // IN: UINT64 pointer for counter or bit 64 UINT64 NvInitialCounter(void);
|
D | PolicySigned.c | 40 UINT64 authTimeout = 0; in TPM2_PolicySigned() 130 out->timeout.t.size = sizeof(UINT64); in TPM2_PolicySigned()
|
D | Policy_spt.c | 23 UINT64 authTimeout, in PolicyParameterChecks() 84 UINT64 policyTimeout, in PolicyContextUpdate()
|
D | Time.c | 106 UINT64 oldClock; in TimeUpdateToCurrent() 107 UINT64 elapsed; in TimeUpdateToCurrent()
|
D | Ticket.c | 89 UINT64 timeout, // IN: timeout in TicketComputeAuth() 109 CryptUpdateDigestInt(&hmacState, sizeof(UINT64), &timeout); in TicketComputeAuth()
|
/external/skia/src/utils/win/ |
D | SkDWriteFontFileStream.cpp | 115 UINT64 realFileSize = 0; in getLength() 128 UINT64 fileSize; in getMemoryBase() 177 UINT64 fileOffset, in ReadFileFragment() 178 UINT64 fragmentSize, in ReadFileFragment() 182 UINT64 fileSize; in ReadFileFragment() 224 HRESULT STDMETHODCALLTYPE SkDWriteFontFileStreamWrapper::GetFileSize(UINT64* fileSize) { in GetFileSize() 229 HRESULT STDMETHODCALLTYPE SkDWriteFontFileStreamWrapper::GetLastWriteTime(UINT64* lastWriteTime) { in GetLastWriteTime()
|
D | SkDWriteFontFileStream.h | 60 UINT64 fileOffset, 61 UINT64 fragmentSize, 65 virtual HRESULT STDMETHODCALLTYPE GetFileSize(UINT64* fileSize); 66 virtual HRESULT STDMETHODCALLTYPE GetLastWriteTime(UINT64* lastWriteTime);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python2/src/ |
D | _crcfunext.c | 47 typedef unsigned long long UINT64; typedef 406 UINT64 crc; in _crc64() 409 UINT64* table; in _crc64() 447 UINT64 crc; in _crc64r() 450 UINT64* table; in _crc64r() 495 (sizeof(UINT32) != 4) || (sizeof(UINT64) != 8)) in init_crcfunext()
|
/external/aac/libSYS/include/ |
D | machine_type.h | 178 typedef unsigned __int64 UINT64; typedef 181 typedef unsigned long long UINT64; typedef 275 #define ALIGN_PTR(a) ( (unsigned char*)(a) + (((INT)ALIGNMENT_DEFAULT - ((INT)(UINT64)(a) & (ALIGNM…
|
/external/pdfium/core/src/fxge/win32/ |
D | fx_win32_dwrite.cpp | 43 UINT64 fileOffset, 44 UINT64 fragmentSize, 47 virtual HRESULT STDMETHODCALLTYPE GetFileSize(OUT UINT64* fileSize); 48 virtual HRESULT STDMETHODCALLTYPE GetLastWriteTime(OUT UINT64* lastWriteTime); 284 UINT64 fileOffset, in ReadFileFragment() 285 UINT64 fragmentSize, in ReadFileFragment() 300 HRESULT STDMETHODCALLTYPE CDwFontFileStream::GetFileSize(OUT UINT64* fileSize) { in GetFileSize() 305 CDwFontFileStream::GetLastWriteTime(OUT UINT64* lastWriteTime) { in GetLastWriteTime()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/src/ |
D | _crcfunext.c | 40 typedef unsigned long long UINT64; typedef 490 UINT64 crc; in _crc64() 493 UINT64* table; in _crc64() 539 UINT64 crc; in _crc64r() 542 UINT64* table; in _crc64r() 602 (sizeof(UINT32) != 4) || (sizeof(UINT64) != 8)) in PyInit__crcfunext()
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/ |
D | d3d_enums.cpp | 108 sizeof(UINT64), 109 sizeof(UINT64),
|
/external/nanopb-c/tests/backwards_compatibility/ |
D | alltypes_legacy.c | 42 PB_FIELD( 4, UINT64 , REQUIRED, STATIC, AllTypes, req_uint64, req_uint32, 0), 59 PB_FIELD( 24, UINT64 , REPEATED, STATIC, AllTypes, rep_uint64, rep_uint32, 0), 76 …PB_FIELD( 44, UINT64 , OPTIONAL, STATIC, AllTypes, opt_uint64, opt_uint32, &AllTypes_opt_uint64_d…
|