Searched refs:bytesRequested (Results 1 – 10 of 10) sorted by relevance
/external/tpm2/ |
D | GetRandom.c | 20 if(in->bytesRequested > sizeof(TPMU_HA)) in TPM2_GetRandom() 23 out->randomBytes.t.size = in->bytesRequested; in TPM2_GetRandom()
|
D | GetRandom_fp.h | 12 typedef struct { UINT16 bytesRequested; } GetRandom_In; member
|
D | Marshal_GetRandom.c | 43 result = UINT16_Unmarshal(&target->bytesRequested, buffer, size); in GetRandom_In_Unmarshal()
|
D | part3.txt | 6300 This command returns the next bytesRequested octets from the random number generator (RNG). 6303 … octets such that, as long as the value of bytesRequested is not greater than the maximum digest 6304 … size, the frequency of bytesRequested being more than the number of octets available is an 6307 If bytesRequested is more than will fit into a TPM2B_DIGEST on the TPM, no error is returned but the 6333 UINT16 bytesRequested number of octets to return 6369 14 if(in->bytesRequested > sizeof(TPMU_HA)) 6372 17 out->randomBytes.t.size = in->bytesRequested;
|
/external/webrtc/webrtc/modules/media_file/ |
D | media_file_utility.cc | 420 const size_t bytesRequested = (codec_info_.channels == 2) ? in ReadWavDataAsMono() local 422 if(bufferSize < bytesRequested) in ReadWavDataAsMono() 459 for (size_t i = 0; i < bytesRequested / _bytesPerSample; i++) in ReadWavDataAsMono() 475 memcpy(outData, _tempData, bytesRequested); in ReadWavDataAsMono() 477 return static_cast<int32_t>(bytesRequested); in ReadWavDataAsMono() 524 const size_t bytesRequested = totalBytesNeeded >> 1; in ReadWavDataAsStereo() local 525 if(bufferSize < bytesRequested) in ReadWavDataAsStereo() 545 for (size_t i = 0; i < bytesRequested; i++) in ReadWavDataAsStereo() 559 size_t sampleCount = bytesRequested >> 1; in ReadWavDataAsStereo() 572 return static_cast<int32_t>(bytesRequested); in ReadWavDataAsStereo() [all …]
|
/external/vboot_reference/firmware/lib/tpm_lite/include/ |
D | tlcl_structures.h | 12 uint16_t bytesRequested; member
|
/external/vboot_reference/firmware/lib/tpm_lite/ |
D | tlcl.c | 444 ToTpmUint32(cmd.buffer + tpm_get_random_cmd.bytesRequested, length); in TlclGetRandom()
|
/external/tpm2/generator/ |
D | commands.txt | 795 _NAME bytesRequested
|
D | raw_commands_fixed.txt | 10966 This command returns the next bytesRequested octets from the random number generator (RNG). 10970 octets such that the frequency of bytesRequested being more than the number of octets available is 10973 If bytesRequested is more than will fit into a TPM2B_DIGEST on the TPM, no error is returned but the 11018 bytesRequested 11104 if(in->bytesRequested > sizeof(TPMU_HA)) 11107 out->randomBytes.t.size = in->bytesRequested;
|
D | raw_commands.txt | 10955 This command returns the next bytesRequested octets from the random number generator (RNG). 10959 octets such that the frequency of bytesRequested being more than the number of octets available is 10962 If bytesRequested is more than will fit into a TPM2B_DIGEST on the TPM, no error is returned but the 11007 bytesRequested 11093 if(in->bytesRequested > sizeof(TPMU_HA)) 11096 out->randomBytes.t.size = in->bytesRequested;
|