/external/tpm2/ |
Marshal_PolicySecret.c | 3 // found in the LICENSE file. 76 PolicySecret_In in; local 88 PolicySecret_In_Unmarshal(&in, request_handles, request_parameter_buffer, 94 result = TPM2_PolicySecret(&in, &out);
|
Marshal_PolicySigned.c | 3 // found in the LICENSE file. 80 PolicySigned_In in; local 92 PolicySigned_In_Unmarshal(&in, request_handles, request_parameter_buffer, 98 result = TPM2_PolicySigned(&in, &out);
|
Marshal_Quote.c | 3 // found in the LICENSE file. 71 Quote_In in; local 82 result = Quote_In_Unmarshal(&in, request_handles, request_parameter_buffer, 88 result = TPM2_Quote(&in, &out);
|
Marshal_RSA_Decrypt.c | 3 // found in the LICENSE file. 70 RSA_Decrypt_In in; local 82 RSA_Decrypt_In_Unmarshal(&in, request_handles, request_parameter_buffer, 88 result = TPM2_RSA_Decrypt(&in, &out);
|
Marshal_RSA_Encrypt.c | 3 // found in the LICENSE file. 70 RSA_Encrypt_In in; local 82 RSA_Encrypt_In_Unmarshal(&in, request_handles, request_parameter_buffer, 88 result = TPM2_RSA_Encrypt(&in, &out);
|
Marshal_ReadPublic.c | 3 // found in the LICENSE file. 59 ReadPublic_In in; local 71 ReadPublic_In_Unmarshal(&in, request_handles, request_parameter_buffer, 77 result = TPM2_ReadPublic(&in, &out);
|
Marshal_Rewrap.c | 3 // found in the LICENSE file. 73 Rewrap_In in; local 84 result = Rewrap_In_Unmarshal(&in, request_handles, request_parameter_buffer, 90 result = TPM2_Rewrap(&in, &out);
|
Marshal_SequenceComplete.c | 3 // found in the LICENSE file. 67 SequenceComplete_In in; local 78 result = SequenceComplete_In_Unmarshal(&in, request_handles, 85 result = TPM2_SequenceComplete(&in, &out);
|
Marshal_Sign.c | 3 // found in the LICENSE file. 70 Sign_In in; local 81 result = Sign_In_Unmarshal(&in, request_handles, request_parameter_buffer, 87 result = TPM2_Sign(&in, &out);
|
Marshal_StartAuthSession.c | 3 // found in the LICENSE file. 83 StartAuthSession_In in; local 94 result = StartAuthSession_In_Unmarshal(&in, request_handles, 101 result = TPM2_StartAuthSession(&in, &out);
|
Marshal_Unseal.c | 3 // found in the LICENSE file. 57 Unseal_In in; local 68 result = Unseal_In_Unmarshal(&in, request_handles, request_parameter_buffer, 74 result = TPM2_Unseal(&in, &out);
|
Marshal_VerifySignature.c | 3 // found in the LICENSE file. 66 VerifySignature_In in; local 77 result = VerifySignature_In_Unmarshal(&in, request_handles, 84 result = TPM2_VerifySignature(&in, &out);
|
Marshal_ZGen_2Phase.c | 3 // found in the LICENSE file. 76 ZGen_2Phase_In in; local 88 ZGen_2Phase_In_Unmarshal(&in, request_handles, request_parameter_buffer, 94 result = TPM2_ZGen_2Phase(&in, &out);
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
simd_mat4.hpp | 7 /// in the Software without restriction, including without limitation the rights 12 /// The above copyright notice and this permission notice shall be included in 17 /// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 /// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 94 __m128 const in[4]); variable
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
filters_mips.c | 5 * that can be found in the LICENSE file in the root of the source 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 13 // MIPS optimized implementation of the Autocorrelation function in fixed point. 14 // NOTE! Different from SPLIB-version in how it scales the signal. 22 int16_t* in = (int16_t*)x; local 37 // Loop is unrolled 8 times, set accumulator to zero in branch delay slot. 43 "ulw %[r0], 0(%[in]) \n\t [all...] |
/external/wpa_supplicant_8/src/utils/ |
base64.c | 27 * not included in out_len. 33 const unsigned char *end, *in; local 47 in = src; 50 while (end - in >= 3) { 51 *pos++ = base64_table[(in[0] >> 2) & 0x3f]; 52 *pos++ = base64_table[(((in[0] & 0x03) << 4) | 53 (in[1] >> 4)) & 0x3f]; 54 *pos++ = base64_table[(((in[1] & 0x0f) << 2) | 55 (in[2] >> 6)) & 0x3f]; 56 *pos++ = base64_table[in[2] & 0x3f] [all...] |
/external/zlib/src/examples/ |
zpipe.c | 10 1.3 6 Apr 2005 Remove incorrect assertion in inf() 41 unsigned char in[CHUNK]; local 54 strm.avail_in = fread(in, 1, CHUNK, source); 60 strm.next_in = in; 63 compression if all of source has been read in */ 77 /* done when last data in file processed */ 97 unsigned char in[CHUNK]; local 112 strm.avail_in = fread(in, 1, CHUNK, source); 119 strm.next_in = in;
|
/frameworks/base/core/java/android/ddm/ |
DdmHandleExit.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 39 * Register for the messages we're interested in. 67 ByteBuffer in = wrapChunk(request); local 69 int statusCode = in.getInt();
|