HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 1 - 25 of 1741) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AVR/out-of-range-fixups/
in-pass.s 4 in r3, foo+63 label
  /external/curl/src/
tool_cb_rea.c 10 * This software is licensed as described in the file COPYING, which
40 struct InStruct *in = userdata; local
42 rc = read(in->fd, buffer, sz*nmemb);
46 in->config->readbusy = TRUE;
52 in->config->readbusy = FALSE;
  /cts/tests/tests/transition/src/android/transition/cts/
TransitionActivity.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 public WindowInsets onApplyWindowInsets(View v, WindowInsets in) {
39 if (in.isRound()) {
41 params.setMargins(in.getSystemWindowInsetLeft(), in.getSystemWindowInsetTop(),
42 in.getSystemWindowInsetRight(), in.getSystemWindowInsetBottom());
45 return in;
  /external/libchrome/mojo/public/cpp/base/
ref_counted_memory_unittest.cc 3 // found in the LICENSE file.
16 scoped_refptr<base::RefCountedMemory> in = local
21 mojo::test::SerializeAndDeserialize<mojom::RefCountedMemory>(&in, &out));
22 ASSERT_EQ(out->size(), in->size());
24 EXPECT_EQ(in->front()[i], out->front()[i]);
28 // Stuff real data in out to ensure it gets overwritten with a null.
33 scoped_refptr<base::RefCountedMemory> in; local
35 mojo::test::SerializeAndDeserialize<mojom::RefCountedMemory>(&in, &out));
time_unittest.cc 3 // found in the LICENSE file.
14 base::Time in = base::Time::Now(); local
17 ASSERT_TRUE(mojo::test::SerializeAndDeserialize<mojom::Time>(&in, &out));
18 EXPECT_EQ(in, out);
22 base::TimeDelta in = base::TimeDelta::FromDays(123); local
25 ASSERT_TRUE(mojo::test::SerializeAndDeserialize<mojom::TimeDelta>(&in, &out));
26 EXPECT_EQ(in, out);
30 base::TimeTicks in = base::TimeTicks::Now(); local
33 ASSERT_TRUE(mojo::test::SerializeAndDeserialize<mojom::TimeTicks>(&in, &out));
34 EXPECT_EQ(in, out)
    [all...]
unguessable_token_unittest.cc 3 // found in the LICENSE file.
14 base::UnguessableToken in = base::UnguessableToken::Create(); local
18 mojo::test::SerializeAndDeserialize<mojom::UnguessableToken>(&in, &out));
19 EXPECT_EQ(in, out);
big_buffer_unittest.cc 3 // found in the LICENSE file.
28 BigBuffer in; local
30 EXPECT_EQ(BigBuffer::StorageType::kBytes, in.storage_type());
31 EXPECT_EQ(0u, in.size());
33 ASSERT_TRUE(mojo::test::SerializeAndDeserialize<mojom::BigBuffer>(&in, &out));
36 EXPECT_TRUE(BufferEquals(in, out));
40 BigBuffer in(std::vector<uint8_t>{1, 2, 3});
41 EXPECT_EQ(BigBuffer::StorageType::kBytes, in.storage_type());
44 ASSERT_TRUE(mojo::test::SerializeAndDeserialize<mojom::BigBuffer>(&in, &out));
47 EXPECT_TRUE(BufferEquals(in, out))
    [all...]
big_string_unittest.cc 3 // found in the LICENSE file.
18 std::string in; local
20 ASSERT_TRUE(mojo::test::SerializeAndDeserialize<mojom::BigString>(&in, &out));
21 EXPECT_EQ(in, out);
25 std::string in("hello world");
27 ASSERT_TRUE(mojo::test::SerializeAndDeserialize<mojom::BigString>(&in, &out));
28 EXPECT_EQ(in, out);
34 std::string in(kLargeStringSize, 0);
35 base::RandBytes(&in[0], kLargeStringSize);
38 ASSERT_TRUE(mojo::test::SerializeAndDeserialize<mojom::BigString>(&in, &out))
    [all...]
read_only_buffer_unittest.cc 3 // found in the LICENSE file.
14 base::span<const uint8_t> in; local
18 mojo::test::SerializeAndDeserialize<mojom::ReadOnlyBuffer>(&in, &out));
19 EXPECT_EQ(in, out);
24 base::span<const uint8_t> in(v);
28 // returns a span that points into the raw bytes in the mojo::Message;however,
30 std::vector<uint8_t> data = mojom::ReadOnlyBuffer::Serialize(&in);
33 EXPECT_EQ(in, out);
string16_unittest.cc 3 // found in the LICENSE file.
18 base::string16 in; local
20 ASSERT_TRUE(mojo::test::SerializeAndDeserialize<mojom::String16>(&in, &out));
21 EXPECT_EQ(in, out);
25 base::string16 in = base::ASCIIToUTF16("hello world"); local
27 ASSERT_TRUE(mojo::test::SerializeAndDeserialize<mojom::String16>(&in, &out));
28 EXPECT_EQ(in, out);
32 base::string16 in; local
35 mojo::test::SerializeAndDeserialize<mojom::BigString16>(&in, &out));
36 EXPECT_EQ(in, out)
40 base::string16 in = base::ASCIIToUTF16("hello world"); local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
md5_i.h 15 u8 in[64]; member in struct:MD5Context
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptor_AutoCloseInputStreamTest.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
29 AutoCloseInputStream in = new AutoCloseInputStream(pf); local
30 assertEquals(0, in.read());
32 in.close();
35 in.read();
  /external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/deflate/
DeflateCompressorInputStreamTest.java 7 * "License"); you may not use this file except in compliance
12 * Unless required by applicable law or agreed to in writing,
37 final DeflateCompressorInputStream in = local
39 Assert.assertTrue(in.available() > 0);
40 in.close();
48 final DeflateCompressorInputStream in = local
50 Assert.assertEquals(1, in.skip(1));
51 in.close();
59 final DeflateCompressorInputStream in = local
62 Assert.assertEquals('t', in.read())
71 final DeflateCompressorInputStream in = local
85 final DeflateCompressorInputStream in = local
    [all...]
  /cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-2109/
poc.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
34 BIO *in = BIO_new(BIO_s_mem()); local
35 if(in != NULL){
36 BIO_write(in, bad_bio, sizeof(bad_bio));
37 cert = d2i_X509_bio(in, NULL); // x509 should be present on all Android systems
38 BIO_free(in);
  /cts/tests/tests/media/libmediandkjni/
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]);
  /external/autotest/client/deps/glbench/src/
md5.h 16 u8 in[64]; member in struct:MD5Context
  /external/guice/core/src/com/google/inject/binder/
ScopedBindingBuilder.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
30 void in(Class<? extends Annotation> scopeAnnotation); method in interface:ScopedBindingBuilder
33 void in(Scope scope); method in interface:ScopedBindingBuilder
  /external/libaom/libaom/common/
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]);
  /external/libcxx/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...]
  /external/libcxx/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...]
  /external/libcxx/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...]
  /external/libcxx/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);
  /external/libjpeg-turbo/md5/
md5.h 5 * Redistribution and use in source and binary forms, with or without
10 * - Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
46 unsigned char in[64]; member in struct:MD5Context
53 extern void MD5Transform(uint32 buf[4], uint32 in[16]);
  /external/libvpx/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]);
  /external/libvpx/libvpx/vp9/common/ppc/
vp9_idct_vsx.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.
21 int16x8_t in[2], out[2]; local
23 in[0] = load_tran_low(0, input);
24 in[1] = load_tran_low(8 * sizeof(*input), input);
28 vpx_idct4_vsx(in, out);
29 vpx_idct4_vsx(out, in);
51 int16x8_t in[8], out[8]; local
    [all...]

Completed in 2489 milliseconds

1 2 3 4 5 6 7 8 91011>>