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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_scalbln.c 5 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 int in; local
38 in = (int)n;
39 if (in != n) {
41 in = INT_MAX
51 int in; local
66 int in; local
    [all...]
  /external/libvorbis/doc/
a2-encapsulation-rtp.tex 4 \section{Vorbis encapsulation in RTP} \label{vorbis:over:rtp}
9 Audio''} for description of how to embed Vorbis audio in an RTP stream.
  /external/wpa_supplicant_8/src/crypto/
md5_i.h 15 u8 in[64]; member in struct:MD5Context
  /frameworks/av/libvideoeditor/vss/common/inc/
M4VD_Tools.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 M4OSA_MemAddr8 in; member in struct:__anon18871
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
NotificationQueue.h 9 * Redistribution and use in source and binary forms, with or without
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
50 * @param in queue to initialize
55 notificationQueue_t *in,
62 * @param notification Data to be placed in queue.
79 notificationQueue_t *in; member in class:NotificationQueue
    [all...]
  /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();
  /libcore/luni/src/main/java/java/io/
FilterInputStream.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
35 protected volatile InputStream in; field in class:FilterInputStream
43 * overridden. Subclasses should check for null in their constructors.
45 * @param in the input stream to filter reads on.
47 protected FilterInputStream(InputStream in) {
48 this.in = in;
53 return in.available();
64 in.close()
    [all...]
FilterReader.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
35 protected Reader in; field in class:FilterReader
38 * Constructs a new FilterReader on the Reader {@code in}.
40 * @param in
43 protected FilterReader(Reader in) {
44 super(in);
45 this.in = in;
57 in.close()
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapReceiver.java 6 * Redistribution and use in source and binary forms, with or without
12 * - Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
51 Intent in = new Intent(); local
52 in.putExtras(intent);
53 in.setClass(context, BluetoothPbapService.class);
55 in.putExtra("action", action)
    [all...]
  /bionic/libc/bionic/
sigblock.c 5 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
38 } in, out; local
40 sigemptyset(&in.the_sigset);
41 in.the_mask = mask;
43 n = sigprocmask(SIG_BLOCK, &in.the_sigset, &out.the_sigset)
    [all...]
sigsetmask.c 5 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
39 } in, out; local
41 sigemptyset(&in.the_sigset);
42 in.the_mask = mask;
44 n = sigprocmask(SIG_SETMASK, &in.the_sigset, &out.the_sigset)
    [all...]
  /external/dropbear/libtomcrypt/testprof/
base64_test.c 5 unsigned char in[64], out[256], tmp[64]; local
9 yarrow_read(in, x, &yarrow_prng);
11 DO(base64_encode(in, x, out, &l1));
14 if (l2 != x || memcmp(tmp, in, x)) {
  /external/elfutils/libebl/
eblobjnote.c 10 Red Hat elfutils is distributed in the hope that it will be useful, but
19 In addition, as a special exception, Red Hat, Inc. gives You the
26 those well defined interfaces identified in the file named EXCEPTION
27 found in the source code files (the "Approved Interfaces"). The files
35 License in all respects for all of the Red Hat elfutils code and other
36 code used in conjunction with Red Hat elfutils except the Non-GPL Code
47 included package. Should you wish to participate in the Open Invention
87 Elf_Data in = local
103 if (elf32_xlatetom (&out, &in, ebl->data) != NULL)
  /external/flac/libFLAC/include/private/
md5.h 7 * written by Colin Plumb in 1993, no copyright is claimed.
8 * This code is in the public domain; do with it what you wish.
23 * Still in the public domain.
26 * Still in the public domain, with no warranty.
32 FLAC__uint32 in[16]; member in struct:__anon8125
  /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.
34 UWORD32 in[16]; member in struct:MD5Context
40 void MD5Transform(UWORD32 buf[4], UWORD32 const in[16]);
  /external/openssl/crypto/des/
ecb3_enc.c 11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC
68 const unsigned char *in = &(*input)[0]; local
    [all...]
  /external/oprofile/libutil++/
string_manip.h 41 * separate fields in a string in a list of token; field are
43 * by '\\' to specify a sep char in a token, '\\' not followed
89 std::ostringstream in; local
90 if (!(in << src))
92 std::istringstream out(in.str());
96 in.str() +"\")");
101 // specialization accepting hexadecimal and octal number in input. Note that
  /external/webkit/Tools/DumpRenderTree/win/
MD5.h 4 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37 unsigned char in[64]; member in struct:MD5_CTX
  /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++/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++/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++/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++/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_senstive 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/Camera/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...]

Completed in 1294 milliseconds

1 2 3 4 5 6 7 8 91011>>