/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.
|
/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();
|
/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...] |
/development/perftests/panorama/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...] |
/external/chromium_org/third_party/libvpx/source/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/chromium_org/third_party/openmax_dl/dl/sp/src/x86/ |
x86SP_FFT_F32_radix2_kernel.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. 16 const OMX_F32 *in, 21 const OMX_F32 *in, 26 const OMX_F32 *in, 34 const OMX_F32 *in, 42 const OMX_F32 *in, 64 OMX_F32 *in = buf1; local [all...] |
/external/chromium_org/third_party/webrtc/base/ |
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. 29 // Canonical name for a MD5 context structure, used in many crypto libs. 35 uint32 in[16]; member in struct:rtc::MD5Context 41 void MD5Transform(uint32 buf[4], const uint32 in[16]);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
md5.h | 19 unsigned char in[64]; member in struct:yasm_md5_context 30 void yasm_md5_transform(unsigned long buf[4], const unsigned char in[64]);
|
/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:__anon1073
|
/external/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...] |
/external/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...] |
/external/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);
|
/external/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_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...] |
/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/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
|
/cts/tests/tests/security/src/android/security/cts/ |
AslrTest.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 BufferedReader in = null; local 41 in = new BufferedReader(new FileReader("/proc/sys/kernel/randomize_va_space")); 42 int level = Integer.parseInt(in.readLine().trim()); 49 if (in != null) { 50 in.close();
|
KernelSettingsTest.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 * Ensure that SELinux is in enforcing mode. 102 * Verify that ext4 extended attributes (xattrs) are enabled in the 109 * Failure to enable this option may result in upgrade problems when 119 BufferedReader in = null; local 121 in = new BufferedReader(new FileReader(filename)); 122 return in.readLine().trim(); 124 if (in != null) { 125 in.close() [all...] |
Proc.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 34 BufferedReader in = null; local 36 in = new BufferedReader(new FileReader(cmdLine)); 37 String line = in.readLine(); 42 if (in != null) { 43 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();
|