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

<<31323334353637383940>>

  /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/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
URLConnectionTest.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
411 // Note that 1234.1.1.1 is an invalid host in a URI, but URL isn't as strict.
1036 InputStream in = connection.getInputStream(); local
1098 InputStream in = client.open(server.getUrl("\/")).getInputStream(); local
1341 InputStream in = connection1.getInputStream(); local
    [all...]
  /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
125 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...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_inflate.c 3 * For conditions of distribution and use, see copyright notice in zlib.h
16 * - Use pointers for available input and output checking in inffast.c
17 * - Remove input and output counters in inffast.c
19 * - Remove unnecessary second byte pull from length extra in inffast.c
20 * - Unroll direct copy to three copies per loop in inffast.c
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
27 * to avoid negation problem on Alphas (64 bit) in inflate.c
30 * - Add comments on state->bits assertion in inffast.c
31 * - Add comments on op field in inftrees.
615 unsigned in, out; \/* save starting available input and output *\/ local
    [all...]
gzguts.h 3 * For conditions of distribution and use, see copyright notice in zlib.h
79 /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
100 /* unlike snprintf (which is required in C99, yet still not supported by
102 termination of the result -- however this is only used in gzlib.c where
103 the result is assured to fit in the space provided */
162 twice this must be able to fit in an unsigned type) */
182 /* x.pos: current position in uncompressed data */
189 unsigned char *in; /* input buffer */ member in struct:__anon32311
207 z_stream strm; /* stream structure in-place (not a pointer) */
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsgmt.c 8 // to deal in the Software without restriction, including without limitation
13 // The above copyright notice and this permission notice shall be included in
19 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
89 // Compute K -> L* relationship. Flags may include black point compensation. In this case,
148 cmsToneCurve *in, *out, *KTone; local
159 // computed as a BPC to zero black point in case of L*
160 in = ComputeKToLstar(ContextID, nPoints, nProfiles - 1, Intents, hProfiles, BPC, AdaptationStates, d (…)
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftoutln.c 21 /* All functions are declared in freetype.h. */
36 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
48 /* documentation is in ftoutln.h */
68 FT_Int n; /* index of contour in outline */
69 FT_UInt first; /* index of first point in contour */
85 FT_Int last; /* index of last point in contour */
334 /* documentation is in ftoutln.h */
350 /* documentation is in ftoutln.h */
395 /* documentation is in ftoutln.h */
450 /* documentation is in ftoutln.h *
932 FT_Vector in, out, shift; local
    [all...]

Completed in 736 milliseconds

<<31323334353637383940>>