Searched
defs:in (Results
276 -
300 of
1097) sorted by null
<<11121314151617181920>>
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
TestNan.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 public int in; field in class:TestNan.ArgumentsUintFloat 43 Allocation in = createRandomAllocation(mRS, Element.DataType.UNSIGNED_32, 1, 0x757e939c0e627774l, false); local 46 script.forEach_testNanUintFloat(in, out); 47 verifyResultsNanUintFloat(in, out, false); 53 scriptRelaxed.forEach_testNanUintFloat(in, out); 54 verifyResultsNanUintFloat(in, out, true); 60 private void verifyResultsNanUintFloat(Allocation in, Allocation out, boolean relaxed) { 62 in.copyTo(arrayIn) [all...] |
/dalvik/hit/src/com/android/hit/ |
HprofParser.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 61 * When a sub-tag of this type appears in a HPROF_HEAP_DUMP or 65 * may appear in a single HEAP_DUMP[_SEGMENT]. 95 public HprofParser(DataInputStream in) { 96 mInput = in; 105 DataInputStream in = mInput; local 107 mIdSize = in.readInt(); 110 in.readLong(); // Timestamp, ignored for now 113 int tag = in.readUnsignedByte() 162 DataInputStream in = mInput; local 198 DataInputStream in = mInput; local 238 DataInputStream in = mInput; local 435 DataInputStream in = mInput; local [all...] |
/development/apps/Development/src/com/android/development/ |
LogViewer.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 78 final DataInputStream in; field in class:LogViewer.LogReader 86 this.in = new DataInputStream(this.socket.getInputStream()); 95 while (in.available() > 0) { 98 int length = in.readInt(); 100 in.readFully(bytes);
|
/development/ndk/platforms/android-L/include/linux/ |
netfilter.h | 71 struct in_addr in; member in union:nf_inet_addr
|
/development/samples/BackupRestore/src/com/example/android/backuprestore/ |
ExampleAgent.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 89 // may throw an IOException, but in that case something has gone 112 // If we decided that we do in fact need to write our dataset, go 134 // Finally, in all cases, we need to write the new state blob 147 DataInputStream in = new DataInputStream(instream); local 150 int stateVersion = in.readInt(); 155 // In this implementation, we recover by simply rewriting 163 int lastFilling = in.readInt(); 164 boolean lastMayo = in.readBoolean() 223 DataInputStream in = new DataInputStream(baStream); local [all...] |