HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 351 - 375 of 3217) sorted by null

<<11121314151617181920>>

  /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();
  /frameworks/base/core/java/android/security/keymaster/
KeymasterCertificateChain.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
28 * Serialization code for this must be kept in sync with system/security/keystore
37 public KeymasterCertificateChain createFromParcel(Parcel in) {
38 return new KeymasterCertificateChain(in);
53 private KeymasterCertificateChain(Parcel in) {
54 readFromParcel(in);
73 public void readFromParcel(Parcel in) {
74 int length = in.readInt();
77 mCertificates.add(in.createByteArray())
    [all...]
  /frameworks/base/media/jni/
android_media_ResampleInputStream.cpp 6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
89 short in[BUF_SIZE]; local
90 env->GetByteArrayRegion(jIn, jInOffset, (jNpoints * 2 + nFir21 - 1) * 2, (jbyte*)in);
97 const short* inp = &in[i * 2];
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
DocumentsProviderHelper.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
56 * Provides support for creation of documents in a test settings.
112 Bundle in = new Bundle(); local
113 in.putInt(StubProvider.EXTRA_FLAGS, flags);
114 in.putString(StubProvider.EXTRA_PARENT_ID, documentId);
115 in.putString(Document.COLUMN_MIME_TYPE, mimeType);
116 in.putString(Document.COLUMN_DISPLAY_NAME, name);
117 in.putStringArrayList(StubProvider.EXTRA_STREAM_TYPES, Lists.newArrayList(streamTypes));
119 Bundle out = mClient.call("createDocumentWithFlags", null, in);
    [all...]
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
ReceiverActivity.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
37 Intent in = getIntent(); local
41 body = in.getByteArrayExtra("data");
42 header = in.getByteArrayExtra("header");
  /hardware/bsp/intel/peripheral/libupm/src/joystick12/
joystick12.cxx 7 * "Software"), to deal in the Software without restriction, including
14 * included in all copies or substantial portions of the Software.
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
77 float in = mraa_aio_read (m_joystickCtxX); local
78 if (in < X_left) return -1;
79 if (in < X_center) return -(X_center - in) / (X_center - X_left)
88 float in = mraa_aio_read (m_joystickCtxY); local
    [all...]
  /libcore/ojluni/src/main/java/java/io/
FileDescriptor.java 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
68 * known as <code>System.in</code>.
70 * @see java.lang.System#in
72 public static final FileDescriptor in = dupFd(0); field in class:FileDescriptor
106 * relevant device(s). In particular, if this FileDescriptor
107 * refers to a physical storage medium, such as a file in a file
108 * system, sync will not return until all in-memory modified copies
113 * storage (such as a file) to be in a known state Fo
    [all...]
  /libcore/support/src/test/java/libcore/tlswire/handshake/
EllipticCurvesHelloExtension.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
38 DataInputStream in = new DataInputStream(ellipticCurvesListIn); local
42 int curve_id = in.readUnsignedShort();

Completed in 81 milliseconds

<<11121314151617181920>>