/external/tpm2/ |
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. 25 const __m128i in = _mm_cvtsi32_si128(WebPMemToUint32(dst - 4)); local 26 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]);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
md5_utils.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. 20 * Still in the public domain. 37 UWORD32 in[16]; member in struct:MD5Context 43 void MD5Transform(UWORD32 buf[4], UWORD32 const in[16]);
|
/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 32 InputStream in = new DeflaterInputStream(new ByteArrayInputStream(data)); local 35 assertEquals(1, in.available()); 37 while ((b = in.read()) != -1) { 40 assertEquals(0, in.available()); 44 in.close(); 46 in.available(); 53 java.io.InputStream in = new InflaterInputStream(new ByteArrayInputStream(bytes)); local 57 while ((count = in.read(buffer)) != -1) 66 InputStream in = new DeflaterInputStream(new ByteArrayInputStream(data)); local 89 InputStream in = new DeflaterInputStream(new ByteArrayInputStream(data)); local [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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...] |
/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:__anon43407 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:__anon43516 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:__anon43593 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:__anon43689 101 * in the message whose digest is being computed. 114 * ends with the desired message digest in mdContext.digest[0..15].
|
/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);
|
/system/media/audio_utils/ |
conversion.cpp | 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 34 const int16_t *in = out; local 37 accum += *in++; 49 const float *in = out; local 52 accum += *in++;
|
/cts/hostsidetests/sample/src/android/sample/cts/ |
SampleHostTest.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 * The class name of the main activity in the APK. 69 Scanner in = new Scanner(logs); local 70 while (in.hasNextLine()) { 71 String line = in.nextLine(); 76 in.close();
|
/cts/tools/cfassembler/src/dxconvext/util/ |
FileUtils.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 75 FileInputStream in = new FileInputStream(file); local 78 int amt = in.read(result, at, length); 85 in.close();
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
FileUtils.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 75 FileInputStream in = new FileInputStream(file); local 78 int amt = in.read(result, at, length); 85 in.close();
|
/development/tools/idegen/src/ |
Files.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 31 Reader in = new FileReader(file); local 33 while ((read = in.read(buffer)) > -1) { 36 in.close();
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs7/ |
AuthenticatedAttributesTest.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 37 InputStream in = Support_Resources.getResourceStream(tSTokenPath); local 42 ContentInfo token = (ContentInfo) ContentInfo.ASN1.decode(in); 52 in.close();
|