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

1 2 34 5 6 7 8 91011>>

  /external/tpm2/
Marshal_SetPrimaryPolicy.c 3 // found in the LICENSE file.
39 SetPrimaryPolicy_In in; local
47 result = SetPrimaryPolicy_In_Unmarshal(&in, request_handles,
54 result = TPM2_SetPrimaryPolicy(&in);
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.
30 const __m128i in = _mm_loadu_si128((__m128i*)&argb_data[i]); local
31 const __m128i in_0g0g = _mm_shuffle_epi8(in, kCstShuffle);
32 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";
  /frameworks/base/libs/services/include/android/os/
StatsLogEventWrapper.h 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
33 StatsLogEventWrapper(StatsLogEventWrapper&& in) = default; member in class:android::os::StatsLogEventWrapper
37 android::status_t readFromParcel(const android::Parcel* in);
  /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...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterInputStreamTest.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 InputStream in = new DeflaterInputStream(new ByteArrayInputStream(data)); local
40 assertEquals(1, in.available());
42 while ((b = in.read()) != -1) {
45 assertEquals(0, in.available());
49 in.close();
51 in.available();
58 try (InputStream in = new InflaterInputStream(new ByteArrayInputStream(bytes))) {
62 while ((count = in.read(buffer)) != -1)
72 InputStream in = new DeflaterInputStream(new ByteArrayInputStream(data)); local
95 InputStream in = new DeflaterInputStream(new ByteArrayInputStream(data)); local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Interp.h 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
51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1; local
54 tmpf[0] = in[0] * ciTable[off + 40];
55 tmpf[0] += in[1] * ciTable[off];
56 tmpf[0] += in[2] * ciTable[40 - off];
57 tmpf[0] += in[3] * ciTable[80 - off];
58 in += img->pitch;
59 tmpf[1] = in[0] * ciTable[off + 40];
60 tmpf[1] += in[1] * ciTable[off]
    [all...]
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_test_md5.h 6 warranty. In no event will the authors be held liable for any damages
15 in a product, an acknowledgment in the product documentation would be
38 ** -- FF, GG, HH modified to add in last register done **
52 ** The message digest is now in mdContext->digest[0...15] **
74 unsigned char in[64]; /* input buffer */ member in struct:__anon274
101 * in the message whose digest is being computed.
114 * ends with the desired message digest in mdContext.digest[0..15].
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_test_md5.h 6 warranty. In no event will the authors be held liable for any damages
15 in a product, an acknowledgment in the product documentation would be
38 ** -- FF, GG, HH modified to add in last register done **
52 ** The message digest is now in mdContext->digest[0...15] **
74 unsigned char in[64]; /* input buffer */ member in struct:__anon383
101 * in the message whose digest is being computed.
114 * ends with the desired message digest in mdContext.digest[0..15].
  /prebuilts/misc/windows/sdl2/include/
SDL_test_md5.h 6 warranty. In no event will the authors be held liable for any damages
15 in a product, an acknowledgment in the product documentation would be
38 ** -- FF, GG, HH modified to add in last register done **
52 ** The message digest is now in mdContext->digest[0...15] **
74 unsigned char in[64]; /* input buffer */ member in struct:__anon460
101 * in the message whose digest is being computed.
114 * ends with the desired message digest in mdContext.digest[0..15].
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_test_md5.h 6 warranty. In no event will the authors be held liable for any damages
15 in a product, an acknowledgment in the product documentation would be
38 ** -- FF, GG, HH modified to add in last register done **
52 ** The message digest is now in mdContext->digest[0...15] **
74 unsigned char in[64]; /* input buffer */ member in struct:__anon556
101 * in the message whose digest is being computed.
114 * ends with the desired message digest in mdContext.digest[0..15].
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/localization/locale.categories/
__scan_keyword.pass.cpp 15 // Scans [__b, __e) until a match is found in the basic_strings range
16 // [__kb, __ke) or until it can be shown that there is no match in [__kb, __ke).
18 // or proved to not exist. A keyword may be "", in which will match anything.
19 // If one keyword is a prefix of another, and the next CharT in the input
25 // If on exit __b == __e, eofbit is set in __err. If __case_sensitive is false,
48 const char* in = input; local
51 std::string* k = std::__scan_keyword(in, input+sizeof(input)-1,
55 assert(in == input+1);
60 const char* in = input; local
63 std::string* k = std::__scan_keyword(in, input+sizeof(input)-1
72 const char* in = input; local
84 const char* in = input; local
96 const char* in = input; local
108 const char* in = input; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.get.area/
setg.pass.cpp 41 char in[] = "ABC"; local
42 t.setg(in, in+1, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setg(in, in+1, in+sizeof(in)/sizeof(in[0]))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
setp.pass.cpp 41 char in[] = "ABC"; local
42 t.setp(in, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setp(in, in+sizeof(in)/sizeof(in[0]))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/
xsputn.pass.cpp 37 char in[] = "123456"; local
38 assert(t.sputn(in, sizeof(in)) == 0);
39 char out[sizeof(in)] = {0};
41 assert(t.sputn(in, sizeof(in)) == sizeof(in));
42 assert(strcmp(in, out) == 0);
  /system/core/libsparse/
simg2img.c 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
40 int in; local
58 in = STDIN_FILENO;
60 in = open(argv[i], O_RDONLY | O_BINARY);
61 if (in < 0) {
67 s = sparse_file_import(in, true, false);
83 close(in);

Completed in 373 milliseconds

1 2 34 5 6 7 8 91011>>