Searched defs:in (Results 1 - 25 of 1567) sorted by relevance

1234567891011>>

/external/tpm2/
H A DECC_Parameters.c19 ECC_Parameters_In *in, // IN: input parameter list
26 if(CryptEccGetParameters(in->curveID, &out->parameters))
18 TPM2_ECC_Parameters( ECC_Parameters_In *in, ECC_Parameters_Out *out ) argument
H A DFieldUpgradeData.c13 FieldUpgradeData_In *in, // IN: input parameter list
18 UNUSED_PARAMETER(in);
12 TPM2_FieldUpgradeData( FieldUpgradeData_In *in, FieldUpgradeData_Out *out ) argument
H A DFirmwareRead.c12 FirmwareRead_In *in, // IN: input parameter list
17 UNUSED_PARAMETER(in);
11 TPM2_FirmwareRead( FirmwareRead_In *in, FirmwareRead_Out *out ) argument
H A DGetCapability.c14 // TPM_RC_HANDLE value of property is in an unsupported handle range for the
21 GetCapability_In *in, // IN: input parameter list
28 out->capabilityData.capability = in->capability;
30 switch(in->capability)
33 out->moreData = AlgorithmCapGetImplemented((TPM_ALG_ID) in->property,
34 in->propertyCount, &out->capabilityData.data.algorithms);
37 switch(HandleGetType((TPM_HANDLE) in->property))
41 out->moreData = ObjectCapGetLoaded((TPM_HANDLE) in->property,
42 in->propertyCount,
47 out->moreData = NvCapGetPersistent((TPM_HANDLE) in
20 TPM2_GetCapability( GetCapability_In *in, GetCapability_Out *out ) argument
[all...]
H A DGetRandom.c12 GetRandom_In *in, // IN: input parameter list
20 if(in->bytesRequested > sizeof(TPMU_HA))
23 out->randomBytes.t.size = in->bytesRequested;
11 TPM2_GetRandom( GetRandom_In *in, GetRandom_Out *out ) argument
H A DHashSequenceStart.c18 HashSequenceStart_In *in, // IN: input parameter list
24 if(in->hashAlg == TPM_ALG_NULL)
27 return ObjectCreateEventSequence(&in->auth, &out->sequenceHandle);
31 return ObjectCreateHashSequence(in->hashAlg, &in->auth, &out->sequenceHandle);
17 TPM2_HashSequenceStart( HashSequenceStart_In *in, HashSequenceStart_Out *out ) argument
H A DPCR_Read.c12 PCR_Read_In *in, // IN: input parameter list
20 PCRRead(&in->pcrSelectionIn, &out->pcrValues, &out->pcrUpdateCounter);
22 out->pcrSelectionOut = in->pcrSelectionIn;
11 TPM2_PCR_Read( PCR_Read_In *in, PCR_Read_Out *out ) argument
H A DCertify.c18 // modulus of signHandle, or the buffer for the result in signature is too
24 Certify_In *in, // IN: input parameter list
33 // Filling in attest information
35 result = FillInAttestInfo(in->signHandle,
36 &in->inScheme,
37 &in->qualifyingData,
51 ObjectGetName(in->objectHandle,
54 ObjectGetQualifiedName(in->objectHandle,
61 result = SignAttestInfo(in->signHandle,
62 &in
23 TPM2_Certify( Certify_In *in, Certify_Out *out ) argument
[all...]
H A DCreatePrimary.c37 CreatePrimary_In *in, // IN: input parameter list
47 // the size of the data object in inSensitive.
48 if( (in->inPublic.t.publicArea.objectAttributes.sensitiveDataOrigin == SET)
49 != (in->inSensitive.t.sensitive.data.t.size == 0 ))
53 // Check attributes in input public area. TPM_RC_ATTRIBUTES, TPM_RC_KDF,
56 result = PublicAttributesValidation(FALSE, in->primaryHandle,
57 &in->inPublic.t.publicArea);
62 if( MemoryRemoveTrailingZeros(&in->inSensitive.t.sensitive.userAuth)
63 > CryptGetHashDigestSize(in->inPublic.t.publicArea.nameAlg))
72 // before anything in th
36 TPM2_CreatePrimary( CreatePrimary_In *in, CreatePrimary_Out *out ) argument
[all...]
H A DECDH_ZGen.c17 // TPM_RC_NO_RESULT multiplying inPoint resulted in a point at infinity
23 ECDH_ZGen_In *in, // IN: input parameter list
32 eccKey = ObjectGet(in->keyHandle);
54 &in->inPoint.t.point);
22 TPM2_ECDH_ZGen( ECDH_ZGen_In *in, ECDH_ZGen_Out *out ) argument
H A DEC_Ephemeral.c19 EC_Ephemeral_In *in, // IN: input parameter list
25 // Get the random value that will be used in the point multiplications
29 in->curveID,
33 CryptEccPointMultiply(&out->Q.t.point, in->curveID, &r, NULL);
18 TPM2_EC_Ephemeral( EC_Ephemeral_In *in, EC_Ephemeral_Out *out ) argument
H A DGetCommandAuditDigest.c26 GetCommandAuditDigest_In *in, // IN: input parameter list
35 // Filling in attest information
37 result = FillInAttestInfo(in->signHandle,
38 &in->inScheme,
39 &in->qualifyingData,
67 result = SignAttestInfo(in->signHandle,
68 &in->inScheme,
70 &in->qualifyingData,
79 if(in->signHandle != TPM_RH_NULL)
84 // orderly state should be cleared because of the update in
25 TPM2_GetCommandAuditDigest( GetCommandAuditDigest_In *in, GetCommandAuditDigest_Out *out ) argument
[all...]
H A DGetTime.c26 GetTime_In *in, // IN: input parameter list
35 // Filling in attest information
37 result = FillInAttestInfo(in->signHandle,
38 &in->inScheme,
39 &in->qualifyingData,
53 // current clock in plain text
57 // Firmware version in plain text
66 result = SignAttestInfo(in->signHandle,
67 &in->inScheme,
69 &in
25 TPM2_GetTime( GetTime_In *in, GetTime_Out *out ) argument
[all...]
H A DHash.c12 Hash_In *in, // IN: input parameter list
22 out->outHash.t.size = CryptStartHash(in->hashAlg, &hashState);
24 CryptUpdateDigest2B(&hashState, &in->data.b);
30 out->validation.hierarchy = in->hierarchy;
32 if(in->hierarchy == TPM_RH_NULL)
38 else if( in->data.t.size >= sizeof(TPM_GENERATED)
39 && !TicketIsSafe(&in->data.b))
48 TicketComputeHashCheck(in->hierarchy, in->hashAlg,
11 TPM2_Hash( Hash_In *in, Hash_Out *out ) argument
H A DIncrementalSelfTest.c15 // TPM_RC_VALUE an algorithm in the toTest list is not implemented
19 IncrementalSelfTest_In *in, // IN: input parameter list
26 // Call incremental self test function in crypt module. If this function
29 result = CryptIncrementalSelfTest(&in->toTest, &out->toDoList);
18 TPM2_IncrementalSelfTest( IncrementalSelfTest_In *in, IncrementalSelfTest_Out *out ) argument
H A DNV_Read.c24 NV_Read_In *in, // IN: input parameter list
34 NvGetIndexInfo(in->nvIndex, &nvIndex);
39 result = NvReadAccessChecks(in->authHandle, in->nvIndex);
44 if((in->size + in->offset) > nvIndex.publicArea.dataSize)
50 out->data.t.size = in->size;
52 NvGetIndexData(in->nvIndex, &nvIndex, in->offset, in
23 TPM2_NV_Read( NV_Read_In *in, NV_Read_Out *out ) argument
[all...]
H A DNV_ReadPublic.c12 NV_ReadPublic_In *in, // IN: input parameter list
21 NvGetIndexInfo(in->nvIndex, &nvIndex);
27 out->nvName.t.size = NvGetName(in->nvIndex, &out->nvName.t.name);
11 TPM2_NV_ReadPublic( NV_ReadPublic_In *in, NV_ReadPublic_Out *out ) argument
H A DPCR_Allocate.c16 // TPM_RC_NV_RATE NV is in a rate-limiting mode
20 PCR_Allocate_In *in, // IN: input parameter list
29 // Note: These codes are not listed in the return values above because it is
30 // an implementation choice to check in this routine rather than in a common
32 // are described in the Response Code section of Part 3.
40 result = PCRAllocate(&in->pcrAllocation, &out->maxPCR,
49 // going to be changed in next boot
19 TPM2_PCR_Allocate( PCR_Allocate_In *in, PCR_Allocate_Out *out ) argument
H A DPolicyGetDigest.c12 PolicyGetDigest_In *in, // IN: input parameter list
21 session = SessionGet(in->policySession);
11 TPM2_PolicyGetDigest( PolicyGetDigest_In *in, PolicyGetDigest_Out *out ) argument
H A DReadPublic.c18 ReadPublic_In *in, // IN: input parameter list
27 object = ObjectGet(in->objectHandle);
35 // Compute size of public area in canonical form
42 out->name.t.size = ObjectGetName(in->objectHandle, &out->name.t.name);
45 ObjectGetQualifiedName(in->objectHandle, &out->qualifiedName);
17 TPM2_ReadPublic( ReadPublic_In *in, ReadPublic_Out *out ) argument
/external/clang/test/CodeGen/
H A Dmmx-inline-asm-error.c4 vec256 foo(vec256 in) { argument
7 asm("something %0" : : "y"(in)); // expected-error {{invalid input size for constraint 'y'}}
/external/fec/
H A Dsumsq.c22 unsigned long long sumsq(signed short *in,int cnt){ argument
26 return sumsq_port(in,cnt);
30 return sumsq_mmx(in,cnt);
32 return sumsq_sse2(in,cnt);
37 return sumsq_av(in,cnt);
H A Dsumsq_mmx.c6 * 8 words; they differ only in their alignment requirements (8 bytes
15 long long sumsq_mmx(signed short *in,int cnt){ argument
19 while(((int)in & 7) != 0 && cnt != 0){
20 sum += (long)in[0] * in[0];
21 in++;
24 sum += sumsq_mmx_assist(in,cnt);
25 in += cnt & ~7;
30 sum += (long)in[0] * in[
[all...]
H A Dsumsq_sse2.c4 * 8 words; they differ only in their alignment requirements (8 bytes
13 long long sumsq_sse2(signed short *in,int cnt){ argument
17 while(((int)in & 15) != 0 && cnt != 0){
18 sum += (long)in[0] * in[0];
19 in++;
22 sum += sumsq_sse2_assist(in,cnt);
23 in += cnt & ~7;
28 sum += (long)in[0] * in[
[all...]
/external/libvorbis/doc/
H A Da2-encapsulation-rtp.tex4 \section{Vorbis encapsulation in RTP} \label{vorbis:over:rtp}
9 Audio''} for description of how to embed Vorbis audio in an RTP stream.

Completed in 267 milliseconds

1234567891011>>