HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 601 - 625 of 2162) sorted by null

<<21222324252627282930>>

  /external/jpeg/
ansi2knr.c 5 ansi2knr is distributed in the hope that it will be useful, but WITHOUT ANY
8 works at all, unless he says so in writing. Refer to the GNU General Public
12 but only under the conditions described in the GPL. A copy of this license
14 your rights and responsibilities. It should be in a file named COPYLEFT.
15 [In the IJG distribution, the GPL appears below, not in a separate file.]
22 with another program, this in itself does not bring the other program under
50 in new free programs, and that you know you can do these things.
72 code as you receive it, in any medium, provided that you conspicuously
90 that in whole or in part contains or is a derivative of Ghostscrip
323 { FILE *in, *out; local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
VariableTranslator.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
36 * Translates a variable name (e.g. search.results.3.title) into the Java code for use as a key in
55 * @param csVariable Variable node in template's AST.
99 * Inserts dots between each component in the path.
103 private List<JavaExpression> joinComponentsWithDots(List<JavaExpression> in) {
104 List<JavaExpression> out = new ArrayList<JavaExpression>(in.size() * 2);
105 for (JavaExpression component : in) {
121 private List<JavaExpression> combineAdjacentStrings(List<JavaExpression> in) {
122 assert !in.isEmpty()
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
TextHtmlFunction.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
33 * Note this implementation differs from ClearSilver, in that it html escapes the contents of links
38 // These regular expressions are adapted from html.c in the ClearSilver
54 // Pattern to match any string in the input that is linkable.
92 public void filter(String in, Appendable out) throws IOException {
94 boolean hasAsciiArt = hasAsciiArt(in);
101 splitAndConvert(in, out);
113 private void splitAndConvert(String in, Appendable out) throws IOException {
114 Matcher matcher = LINKABLES.matcher(in);
    [all...]
  /external/kernel-headers/original/uapi/linux/
netfilter.h 69 struct in_addr in; member in union:nf_inet_addr
  /external/libedit/src/
map.c 10 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
323 * insert mode characters are in the normal keymap, and command mode
324 * in the extended keymap.
1251 const Char *in = NULL; local
    [all...]
  /external/libopus/celt/
mathops.h 10 Redistribution and use in source and binary forms, with or without
17 - Redistributions in binary form must reproduce the above copyright
18 notice, this list of conditions and the following disclaimer in the
24 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
29 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
105 } in; local
106 in.f = x;
107 integer = (in.i>>23)-127;
108 in.i -= integer<<23
    [all...]
  /external/libpcap/
pcap-bt-linux.c 5 * Redistribution and use in source and binary forms, with or without
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
343 int in=0; local
347 memcpy(&in, CMSG_DATA(cmsg), sizeof in);
356 if ((in && (handle->direction == PCAP_D_OUT)) ||
    [all...]
  /external/llvm/examples/BrainF/
BrainF.h 46 /// The different symbols in the BrainF language
79 std::istream *in; member in class:BrainF
  /external/mesa3d/src/mesa/state_tracker/
st_format.c 9 * "Software"), to deal in the Software without restriction, including
16 * next paragraph) shall be included in all copies or substantial portions
22 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
755 * The first pipe format in the list that's supported is the one that's chosen.
1707 int *in = colorIn->i; local
1749 float *in = colorIn->f; local
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_draw.c 9 * to deal in the Software without restriction, including without limitation
15 * in all copies or substantial portions of the Software.
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
69 const TYPE *in = (TYPE *)ptr; \
71 *fptr++ = MACRO(*in); \
72 in++; \
78 const TYPE *in = (TYPE *)ptr;
103 const GLubyte *in = (GLubyte *) ptr; \/* in is in BGRA order *\/ local
120 GLhalfARB *in = (GLhalfARB *)ptr; local
149 const GLfixed *in = (GLfixed *) ptr; local
157 const GLfixed *in = (GLfixed *) ptr; local
371 const GLuint *in = (GLuint *)ptr; local
376 const GLushort *in = (GLushort *)ptr; local
381 const GLubyte *in = (GLubyte *)ptr; local
    [all...]
  /external/oauth/core/src/main/java/net/oauth/signature/
RSA_SHA1.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
47 * of type java.security.PrivateKey, String, or byte[]. In the latter two
61 * of type java.security.PublicKey, String, or byte[]. In the latter two
76 * or byte[]. In the latter two cases, the certificate must be DER-encoded
153 ByteArrayInputStream in = new ByteArrayInputStream(certObject.getBytes()); local
154 X509Certificate cert = (X509Certificate)fac.generateCertificate(in);
161 ByteArrayInputStream in = new ByteArrayInputStream(certObject); local
162 X509Certificate cert = (X509Certificate)fac.generateCertificate(in);
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyServer.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
135 InputStream in = new FileInputStream(file); local
139 while ((count = in.read(buffer)) != -1) {
143 Util.closeQuietly(in);
  /external/okhttp/okio/src/main/java/okio/
Okio.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
103 /** Returns a source that reads from {@code in}. */
104 public static Source source(final InputStream in) {
113 int bytesRead = in.read(tail.data, tail.limit, maxToCopy);
121 in.close();
131 return "source(" + in + ")";
  /external/openssl/apps/
asn1pars.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
92 BIO *in=NULL,*out=NULL,*b64=NULL, *derout = NULL; local
    [all...]
dhparam.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
157 BIO *in=NULL,*out=NULL; local
    [all...]
dsa.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
104 BIO *in=NULL,*out=NULL; local
    [all...]
dsaparam.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
116 BIO *in=NULL,*out=NULL; local
    [all...]
ec.c 8 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
23 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
31 * nor may "OpenSSL" appear in their names without prior written
37 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
75 * -in arg - input file - default stdi
93 BIO *in = NULL, *out = NULL; local
    [all...]
genpkey.c 8 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
31 * nor may "OpenSSL" appear in their names without prior written
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
81 BIO *in = NULL, *out = NULL local
    [all...]
pkcs8.c 8 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
31 * nor may "OpenSSL" appear in their names without prior written
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
75 BIO *in = NULL, *out = NULL local
    [all...]
  /external/openssl/crypto/asn1/
x_name.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
502 X509_NAME *in; local
    [all...]
  /external/openssl/crypto/engine/
eng_openssl.c 8 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
31 * nor may "OpenSSL" appear in their names without prior written
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
60 * ECDH support in OpenSSL originally developed by
374 BIO *in; local
    [all...]
  /external/openssl/crypto/evp/
evp_test.c 5 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
20 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
28 * nor may "OpenSSL" appear in their names without prior written
34 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
39 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
44 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
137 const unsigned char *iv,int in,
371 int kn,in,pn,cn; local
    [all...]
  /external/openssl/crypto/rc2/
rc2test.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
107 unsigned char in[8]={0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x03}; variable
    [all...]
  /external/openssl/ssl/
ssl_cert.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
654 BIO *in; local
725 BIO *in; local
    [all...]

Completed in 68 milliseconds

<<21222324252627282930>>