HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 76 - 100 of 3847) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/tpm2/
Marshal_Shutdown.c 3 // found in the LICENSE file.
33 Shutdown_In in; local
41 result = Shutdown_In_Unmarshal(&in, request_handles, request_parameter_buffer,
47 result = TPM2_Shutdown(&in);
Marshal_Startup.c 3 // found in the LICENSE file.
33 Startup_In in; local
41 result = Startup_In_Unmarshal(&in, request_handles, request_parameter_buffer,
47 result = TPM2_Startup(&in);
Marshal_StirRandom.c 3 // found in the LICENSE file.
33 StirRandom_In in; local
42 StirRandom_In_Unmarshal(&in, request_handles, request_parameter_buffer,
48 result = TPM2_StirRandom(&in);
Marshal_TestParms.c 3 // found in the LICENSE file.
33 TestParms_In in; local
42 TestParms_In_Unmarshal(&in, request_handles, request_parameter_buffer,
48 result = TPM2_TestParms(&in);
  /external/vboot_reference/tests/tpm_lite/
tpmtest_timing.c 3 * found in the LICENSE file.
22 * [time_limit] in milliseconds.
46 uint8_t in[20], out[20]; local
58 TTPM_CHECK(TlclExtend(0, in, out), 200);
  /external/webp/src/dsp/
dec_sse41.c 4 // that can be found in the COPYING file in the root of the source
6 // in the file PATENTS. All contributing project authors may
7 // be found in the AUTHORS file in the root of the source tree.
26 const __m128i in = _mm_cvtsi32_si128(WebPMemToUint32(dst - 4)); local
27 const __m128i values = _mm_shuffle_epi8(in, kShuffle3);
lossless_enc_sse41.c 4 // that can be found in the COPYING file in the root of the source
6 // in the file PATENTS. All contributing project authors may
7 // be found in the AUTHORS file in the root of the source tree.
29 const __m128i in = _mm_loadu_si128((__m128i*)&argb_data[i]); local
30 const __m128i in_0g0g = _mm_shuffle_epi8(in, kCstShuffle);
31 const __m128i out = _mm_sub_epi8(in, in_0g0g);
  /external/webrtc/webrtc/base/
bufferqueue_unittest.cc 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.
18 const char in[kSize * 2 + 1] = "0123456789ABCDEFGHIJKLMNOPQRSTUV"; local
29 EXPECT_TRUE(queue1.WriteBack(in, kSize, &bytes));
34 EXPECT_FALSE(queue1.WriteBack(in, kSize, &bytes));
40 EXPECT_EQ(0, memcmp(in, out, kSize));
47 EXPECT_TRUE(queue1.WriteBack(in, kSize, &bytes))
    [all...]
md5.h 4 * written by Colin Plumb in 1993, no copyright is claimed.
5 * This code is in the public domain; do with it what you wish.
19 // Made context first parameter in MD5Final for consistency with Sha1.
34 uint32_t in[16]; member in struct:rtc::MD5Context
40 void MD5Transform(uint32_t buf[4], const uint32_t in[16]);
  /external/xz-embedded/userspace/
buftest.c 17 static uint8_t in[BUFFER_SIZE]; variable
34 b.in = in;
36 b.in_size = fread(in, 1, sizeof(in), stdin);
xzminidec.c 22 static uint8_t in[BUFSIZ]; variable
54 b.in = in;
63 b.in_size = fread(in, 1, sizeof(in), stdin);
115 msg = "Unsupported options in the .xz headers\n";
  /libcore/luni/src/test/java/libcore/java/io/
FilterInputStreamNullSourceTest.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
49 InputStream in = new CipherInputStream(null, new NullCipher()); local
51 in.read();
56 assertEquals(0, in.available());
59 in.close();
105 private void assertReadsFailWithIoException(InputStream in) throws IOException {
107 in.read();
113 in.available();
118 in.close()
    [all...]