HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 1326 - 1350 of 3217) sorted by null

<<51525354555657585960>>

  /art/compiler/optimizing/
intrinsics_mips64.cc 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
81 // intrinsic) in an intrinsified call. This will copy the arguments
84 // Note: The actual parameters are required to be in the locations
113 DCHECK(out.IsRegister()); // TODO: Replace this when we support output in memory.
150 FpuRegister in = locations->InAt(0).AsFpuRegister<FpuRegister>(); local
154 __ Dmfc1(out, in);
156 __ Mfc1(out, in);
187 GpuRegister in = locations->InAt(0).AsRegister<GpuRegister>(); local
191 __ Dmtc1(in, out)
226 GpuRegister in = locations->InAt(0).AsRegister<GpuRegister>(); local
278 GpuRegister in = locations->InAt(0).AsRegister<GpuRegister>(); local
309 Location in = locations->InAt(0); local
348 GpuRegister in = locations->InAt(0).AsRegister<GpuRegister>(); local
389 FpuRegister in = locations->InAt(0).AsFpuRegister<FpuRegister>(); local
426 GpuRegister in = locations->InAt(0).AsRegister<GpuRegister>(); local
683 FpuRegister in = locations->InAt(0).AsFpuRegister<FpuRegister>(); local
707 FpuRegister in = locations->InAt(0).AsFpuRegister<FpuRegister>(); local
733 FpuRegister in = locations->InAt(0).AsFpuRegister<FpuRegister>(); local
1665 FpuRegister in = locations->InAt(0).AsFpuRegister<FpuRegister>(); local
    [all...]
  /bionic/libc/kernel/uapi/rdma/
rdma_user_cm.h 64 __u16 in; member in struct:rdma_ucm_cmd_hdr
  /bionic/libc/upstream-netbsd/lib/libc/isc/
eventlib_p.h 9 * copyright notice and this permission notice appear in all copies.
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
33 #include <netinet/in.h>
95 struct sockaddr_in in; member in union:evAccept::__anon1171
103 struct sockaddr_in in; member in union:evAccept::__anon1172
236 int maxnfds; /* # elements in above */
  /cts/tests/app/app/src/android/app/stubs/
LaunchpadActivity.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
54 public MyBadParcelable createFromParcel(Parcel in) {
55 return new MyBadParcelable(in);
63 public MyBadParcelable(Parcel in) {
64 in.readString();
81 // Also used as the Binder interface descriptor string in these tests
219 * @param debugName for the lifecycle shown in the logs
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.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
591 final InputStream in = new ByteArrayInputStream(out.toByteArray()); local
592 parser.setInput(in, "utf-8");
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
CodecTest.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
67 InputStream in = p.getInputStream(); local
69 while ( ( ch = in.read() ) != -1 ) {
171 //in here
  /cts/tests/tests/net/src/android/net/cts/
ConnectivityManagerTest.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
201 Log.e(TAG, "failure in testGetAllNetworkInfo. Dump of returned NetworkInfos:");
212 fail("startUsingNetworkFeature is no longer supported in the current API version");
219 fail("stopUsingNetworkFeature is no longer supported in the current API version");
226 fail("requestRouteToHost is no longer supported in the current API version");
245 // to all devices directly in software, independent of any external
282 * <p>In order to test that a NetworkCallback occurs, we need some change in the network
395 // to wait for in the receive to confirm it didn't see the connectivity change
506 InputStream in = s.getInputStream(); local
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
LaunchpadActivity.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
54 public MyBadParcelable createFromParcel(Parcel in) {
55 return new MyBadParcelable(in);
63 public MyBadParcelable(Parcel in) {
64 in.readString();
81 // Also used as the Binder interface descriptor string in these tests
219 * @param debugName for the lifecycle shown in the logs
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ComputeTest.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
749 Allocation in = Allocation.createTyped(mRS, t); local
753 setUpAllocation(in, val);
754 s.forEach_root(in, out);
760 s.forEach_root(in, badOut);
788 // (depending on the order in which the invokes complete).
  /dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.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 CodeInput in) throws EOFException {
46 CodeInput in) throws EOFException {
61 CodeInput in) throws EOFException {
80 CodeInput in) throws EOFException {
99 CodeInput in) throws EOFException {
115 CodeInput in) throws EOFException {
116 int baseAddress = in.cursor() - 1;
132 CodeInput in) throws EOFException
    [all...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.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
52 * Taken from the JB source code, can be found in:
61 * 0} and {@code Integer.MAX_VALUE} bytes in length.
63 * <p>The cache stores its data in a directory on the filesystem. This
70 * remove entries in the background until the limit is satisfied. The limit is
135 * Each of the subsequent lines in the file is a record of the state of a
215 public static String readAsciiLine(InputStream in) throws IOException {
220 int c = in.read();
251 * Recursively delete everything in {@code dir}
340 InputStream in = new BufferedInputStream(new FileInputStream(journalFile), IO_BUFFER_SIZE); local
803 InputStream in = newInputStream(index); local
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.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
52 * Taken from the JB source code, can be found in:
61 * 0} and {@code Integer.MAX_VALUE} bytes in length.
63 * <p>The cache stores its data in a directory on the filesystem. This
70 * remove entries in the background until the limit is satisfied. The limit is
135 * Each of the subsequent lines in the file is a record of the state of a
215 public static String readAsciiLine(InputStream in) throws IOException {
220 int c = in.read();
251 * Recursively delete everything in {@code dir}
340 InputStream in = new BufferedInputStream(new FileInputStream(journalFile), IO_BUFFER_SIZE); local
803 InputStream in = newInputStream(index); local
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DiskLruCache.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
52 * Taken from the JB source code, can be found in:
61 * 0} and {@code Integer.MAX_VALUE} bytes in length.
63 * <p>The cache stores its data in a directory on the filesystem. This
70 * remove entries in the background until the limit is satisfied. The limit is
135 * Each of the subsequent lines in the file is a record of the state of a
215 public static String readAsciiLine(InputStream in) throws IOException {
220 int c = in.read();
251 * Recursively delete everything in {@code dir}
340 InputStream in = new BufferedInputStream(new FileInputStream(journalFile), IO_BUFFER_SIZE); local
803 InputStream in = newInputStream(index); local
    [all...]
  /device/generic/goldfish/gps/
gps_qemu.c 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
21 * it will be loaded by the code in hardware/libhardware/hardware.c
188 char in[ NMEA_MAX_SIZE+1 ]; member in struct:__anon2829
410 // Possibly parse it from the NMEA sentence in the future.
426 D("Received: '%.*s'", r->pos, r->in);
432 nmea_tokenizer_init(tzer, r->in, r->in + r->pos);
482 D("in RMC, fixStatus=%c", tok_fixStatus.p[0]);
549 if (r->pos >= (int) sizeof(r->in)-1 )
    [all...]
  /device/google/contexthub/sensorhal/
hubconnection.cpp 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
268 sp<JSONCompound> in = JSONCompound::Parse(buf, size); local
272 if (in != NULL && in->isObject()) {
273 root = (JSONObject *)in.get();
430 // We'll stash away the last step count in case we need to reset
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
BaseTest.java 6 * 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
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
81 lastTestFailed = false; // hope for the best, but set to true in asserts that fail
500 BufferedReader in; field in class:BaseTest.StreamVacuum
503 public StreamVacuum(InputStream in, String inputFile) {
504 this.in = new BufferedReader( new InputStreamReader(in) )
    [all...]
  /external/boringssl/src/crypto/pkcs8/
pkcs8.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
405 const uint8_t *in, size_t in_len
508 uint8_t *in = NULL; local
680 CBS in; local
905 CBS in, pfx, mac_data, authsafe, content_type, wrapped_authsafes, authsafes; local
    [all...]
  /external/curl/lib/
telnet.c 10 * This software is licensed as described in the file COPYING, which
28 #include <netinet/in.h>
65 /* The last 3 #include files should be in this order */
216 /* should always succeed. But, just in case... */
262 can be changed thanks to the "BINARY" option in
271 the connection). Hence, we ignore ECHO in the
283 In this case, the width (or height) that will be assumed by the
882 failf(data, "Syntax error in telnet option: %s", head->data);
889 /* To take care or not of the 8th bit in data exchange */
904 failf(data, "Syntax error in telnet option: %s", head->data)
1066 int in = 0; local
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderMatrixTests.cpp 8 * you may not use this file except in compliance with the License.
13 * Unless required by applicable law or agreed to in writing, software
70 // \note Input1 should not contain 0 components as it is used as divisor in div cases.
355 m.setColumn(0, evalCtx.in[0].swizzle(0,1));
356 m.setColumn(1, evalCtx.in[1].swizzle(0,1));
364 m.setColumn(0, evalCtx.in[0].swizzle(0,1,2));
365 m.setColumn(1, evalCtx.in[1].swizzle(0,1,2));
366 m.setColumn(2, evalCtx.in[2].swizzle(0,1,2));
374 m.setColumn(0, evalCtx.in[0]);
375 m.setColumn(1, evalCtx.in[1])
826 const ShaderInput& in = inNdx > 0 ? m_in1 : m_in0; local
1053 const ShaderInput& in = inNdx > 0 ? m_in1 : m_in0; local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
InstructionCodec.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 CodeInput in) throws EOFException {
47 CodeInput in) throws EOFException {
62 CodeInput in) throws EOFException {
81 CodeInput in) throws EOFException {
100 CodeInput in) throws EOFException {
116 CodeInput in) throws EOFException {
117 int baseAddress = in.cursor() - 1;
133 CodeInput in) throws EOFException
    [all...]
  /external/e2fsprogs/e2fsck/
dict.c 9 * possibly in exchange for a fee, provided that this copyright notice appears
45 * In general, highly portable and reusable C modules which expose their
48 * readable, in the implementation, however!
305 * Free all the nodes in the dictionary by using the dictionary's
353 * Initialize a dictionary in the likeness of another dictionary
374 * Remove all nodes from the dictionary (without freeing them in any way).
389 * debugging purposes, and should be placed in assert statements. Just because
391 * corruptions in the tree may simply cause undefined behavior.
448 * Locate a node in the dictionary having the given key.
670 * successor (i.e. the leftmost node in the right subtree.) By doing this
1287 input_t in; local
1352 input_t in; local
    [all...]
  /external/e2fsprogs/misc/
badblocks.c 158 com_err (program_name, errcode, "adding to in-memory bad block list");
382 fprintf(stderr, _("Weird value (%ld) in do_read\n"), got);
451 fprintf(stderr, "Weird value (%ld) in do_write\n", got);
513 fputs(_("Checking for bad blocks in read-only mode\n"), stderr);
611 fputs(_("Checking for bad blocks in read-write mode\n"),
774 fputs(_("Checking for bad blocks in non-destructive read-write mode\n"), stderr);
1003 fprintf(stderr, _("%s is apparently in use by the system; "),
1015 * an error message if it fails, and returning success or failure in err.
1039 FILE * in = NULL; local
1168 "specified in read-only mode"))
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-swing.jar 
  /external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
DiskLruCache.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
46 * {@code Integer.MAX_VALUE} bytes in length.
48 * <p>The cache stores its data in a directory on the filesystem. This
55 * remove entries in the background until the limit is satisfied. The limit is
118 * Each of the subsequent lines in the file is a record of the state of a
187 * Opens the cache in {@code directory}, creating a cache if none exists
438 * edit is in progress.
455 return null; // Another edit is in progress.
493 * Returns the number of bytes currently being used to store the values in
740 InputStream in = newInputStream(index); local
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
PredicatesTest.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
488 Predicate<Integer> isOneOrFive = Predicates.in(nums);
503 .addEqualityGroup(Predicates.in(nums), Predicates.in(nums),
504 Predicates.in(sameOrder), Predicates.in(differentOrder))
505 .addEqualityGroup(Predicates.in(differentNums))
519 Predicate<Integer> isFalse = Predicates.in(nums);
533 Predicate<Integer> isThree = Predicates.in(nums)
    [all...]

Completed in 1438 milliseconds

<<51525354555657585960>>