HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 826 - 850 of 2135) sorted by null

<<31323334353637383940>>

  /external/libvpx/libvpx/vp9/encoder/
vp9_resize.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.
467 const uint8_t *const in = (s == 0 ? input : out); local
473 down2_symodd(in, filteredlength, out);
475 down2_symeven(in, filteredlength, out);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vs.h 8 * "Software"), to deal in the Software without restriction, including
15 * next paragraph) shall be included in all copies or substantial portions
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
58 struct draw_variant_input in; member in struct:draw_variant_element
132 /* Run the shader - this interface will get cleaned up in the
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_arit.c 8 * "Software"), to deal in the Software without restriction, including
15 * next paragraph) shall be included in all copies or substantial portions
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
56 typedef void (*unary_func_t)(float *out, const float *in);
86 * Required precision in bits.
301 float *in, *out; local
303 in = align_malloc(length * 4, length * 4)
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.h 6 * to deal in the Software without restriction, including without limitation
11 * The above copyright notice and this permission notice shall be included in
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
19 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
134 Edge *in; member in class:nv50_ir::Graph::Node
190 assert(in);
191 return in->origin;
214 return EdgeIterator(in, 1, reverse)
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_program.h 6 * to deal in the Software without restriction, including without limitation
11 * The above copyright notice and this permission notice shall be included in
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
19 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
71 struct nv50_varying in[16]; member in struct:nv50_program
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_framebuffer.c 6 * files (the "Software"), to deal in the Software without
13 * included in all copies or substantial portions of the Software.
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
53 * dirty, to ensure that the resources are paged in.
104 * non-dirty rendertargets are properly paged-in.
260 float in = fb_height - fy; /* number of vp pixels inside view */ local
262 prescale.translate[1] += fy * out / in;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
shaders_cache.c 7 * "Software"), to deal in the Software without restriction, including
14 * next paragraph) shall be included in all copies or substantial portions
20 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
21 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
94 "DCL IN[0], POSITION, LINEAR\n"
95 "DCL IN[1], GENERIC[0], PERSPECTIVE\n"
131 struct ureg_src in[2]; local
171 in[0] = ureg_DECL_fs_input(ureg
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv10_state_frag.c 7 * "Software"), to deal in the Software without restriction, including
14 * next paragraph) shall be included in all copies or substantial
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
75 uint64_t in; member in struct:combiner_state
91 (rc)->in = (rc)->out = 0; \
204 (rc)->in |= get_input_arg(rc, arg, flags) << RC_IN_SHIFT_##var
208 (rc)->in |= (RC_IN_SOURCE(src) |
403 uint64_t in; local
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vb_texgen.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 /* Temporary values used in texgen.
171 /* This is unusual in that we respect the stride of the output vector
172 * (f). This allows us to pass in either a texcoord vector4f, or a
256 GLvector4f *in = VB->AttribPtr[VERT_ATTRIB_TEX0 + unit] local
278 GLvector4f *in = VB->AttribPtr[VERT_ATTRIB_TEX0 + unit]; local
306 GLvector4f *in = VB->AttribPtr[VERT_ATTRIB_TEX0 + unit]; local
340 GLvector4f *in = VB->AttribPtr[VERT_ATTRIB_TEX0 + unit]; local
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/
SslContextBuilder.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
88 // Put 'em in a key store.
94 // Wrap it up in an SSL context.
135 InputStream in = null; // By convention, 'null' creates an empty key store. local
136 keyStore.load(in, password);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Job.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
169 * Figures out the HTTP request to make in response to receiving {@code
206 // "If the 307 status code is received in response to a request other than GET or HEAD,
239 private InputStream in; field in class:Job.RealResponseBody
264 InputStream result = in;
267 : (in = Okio.buffer(source).inputStream());
Response.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
77 * <li>It may be the request generated in response to an HTTP redirect.
78 * In this case the request URL may be different than the initial
237 * Returns the number of bytes in that will returned by {@link #bytes}, or
258 InputStream in = byteStream(); local
259 Util.readFully(in, content);
260 if (in.read() != -1) throw new IOException("Content-Length and stream length disagree");
374 * when the underlying transport is HTTP/1. This results in blocking on that
  /external/okhttp/okio/src/test/java/okio/
ByteStringTest.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
73 InputStream in = new ByteArrayInputStream("abc".getBytes(Util.UTF_8)); local
74 assertEquals(ByteString.decodeHex("6162"), ByteString.read(in, 2));
75 assertEquals(ByteString.decodeHex("63"), ByteString.read(in, 1));
76 assertEquals(ByteString.of(), ByteString.read(in, 0));
80 InputStream in = new ByteArrayInputStream("ABC".getBytes(Util.UTF_8)); local
81 assertEquals(ByteString.encodeUtf8("ab"), ByteString.read(in, 2).toAsciiLowercase());
82 assertEquals(ByteString.encodeUtf8("c"), ByteString.read(in, 1).toAsciiLowercase());
83 assertEquals(ByteString.EMPTY, ByteString.read(in, 0).toAsciiLowercase())
    [all...]
  /external/okhttp/samples/static-server/src/main/java/com/squareup/okhttp/sample/
SampleServer.java 120 InputStream in = new FileInputStream(keystoreFile); local
122 keystore.load(in, password.toCharArray());
124 Util.closeQuietly(in);
  /external/openssl/apps/
crl.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
426 BIO *in=NULL; local
    [all...]
dgst.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
110 BIO *in=NULL,*inp; local
    [all...]
ecparam.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
92 * -in arg - input file - default stdi
130 BIO *in = NULL, *out = NULL; local
    [all...]
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
127 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; local
    [all...]
passwd.c 50 * -in file - read passwords from file
70 BIO *in = NULL, *out = NULL; local
115 else if (strcmp(argv[i], "-in") == 0)
181 BIO_printf(bio_err, "-in file read passwords from file\n");
193 in = BIO_new(BIO_s_file());
194 if (in == NULL)
199 if (BIO_read_filename(in, infile) <= 0)
205 BIO_set_fp(in, stdin, BIO_NOCLOSE);
225 if ((in == NULL) && (passwds == NULL))
231 if (in == NULL
    [all...]
pkeyutl.c 7 * 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
22 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
30 * nor may "OpenSSL" appear in their names without prior written
36 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
41 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
46 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
84 unsigned char *in, size_t inlen)
90 BIO *in = NULL, *out = NULL; local
    [all...]
rsautl.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
88 BIO *in = NULL, *out = NULL local
    [all...]
s_socket.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
504 unsigned int in[4]; local
    [all...]
smime.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
104 BIO *in = NULL, *out = NULL, *indata = NULL local
    [all...]
  /external/openssl/crypto/conf/
conf_def.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
187 BIO *in=NULL; local
    [all...]
  /external/openssl/crypto/srp/
srp_vfy.c 9 * Redistribution and use in source and binary forms, with or without
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in
24 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
32 * nor may "OpenSSL" appear in their names without prior written
38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
43 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
50 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
375 BIO *in = BIO_new(BIO_s_file()) local
    [all...]

Completed in 45 milliseconds

<<31323334353637383940>>