/external/tpm2/ |
Marshal_VerifySignature.c | 3 // found in the LICENSE file. 66 VerifySignature_In in; local 77 result = VerifySignature_In_Unmarshal(&in, request_handles, 84 result = TPM2_VerifySignature(&in, &out);
|
Marshal_ZGen_2Phase.c | 3 // found in the LICENSE file. 76 ZGen_2Phase_In in; local 88 ZGen_2Phase_In_Unmarshal(&in, request_handles, request_parameter_buffer, 94 result = TPM2_ZGen_2Phase(&in, &out);
|
/external/valgrind/coregrind/m_demangle/ |
rust-demangle.c | 11 In addition to the permissions in the GNU Library General Public 16 restrictions do apply in other respects; for example, they cover 20 Libiberty is distributed in the hope that it will be useful, 30 #if 0 /* in valgrind */ 34 #endif /* ! in valgrind */ 36 #if 0 /* in valgrind */ 38 #endif /* ! in valgrind */ 40 #if 0 /* in valgrind */ 44 #endif /* ! in valgrind * 260 const char *in; local [all...] |
/external/vulkan-validation-layers/libs/glm/gtx/ |
simd_mat4.hpp | 7 /// in the Software without restriction, including without limitation the rights 12 /// The above copyright notice and this permission notice shall be included in 17 /// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 /// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 94 __m128 const in[4]); variable
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
filters_mips.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. 13 // MIPS optimized implementation of the Autocorrelation function in fixed point. 14 // NOTE! Different from SPLIB-version in how it scales the signal. 22 int16_t* in = (int16_t*)x; local 37 // Loop is unrolled 8 times, set accumulator to zero in branch delay slot. 43 "ulw %[r0], 0(%[in]) \n\t [all...] |
/external/wpa_supplicant_8/src/utils/ |
base64.c | 27 * not included in out_len. 33 const unsigned char *end, *in; local 47 in = src; 50 while (end - in >= 3) { 51 *pos++ = base64_table[(in[0] >> 2) & 0x3f]; 52 *pos++ = base64_table[(((in[0] & 0x03) << 4) | 53 (in[1] >> 4)) & 0x3f]; 54 *pos++ = base64_table[(((in[1] & 0x0f) << 2) | 55 (in[2] >> 6)) & 0x3f]; 56 *pos++ = base64_table[in[2] & 0x3f] [all...] |
/external/xz-embedded/userspace/ |
boottest.c | 22 /* Disable the CRC64 support even if it was enabled in the Makefile. */ 27 static uint8_t in[1024 * 1024]; variable 44 in_size = fread(in, 1, sizeof(in), stdin); 45 ret = decompress(in, in_size, NULL, NULL, out, NULL, &error); 55 in_size = fread(in, 1, sizeof(in), stdin); 56 ret = decompress(in, in_size, NULL, &flush, NULL, &in_used, &error); 75 ret = decompress(in, 0, &fill, NULL, out, &in_used, &error);
|
/external/zlib/src/examples/ |
zpipe.c | 10 1.3 6 Apr 2005 Remove incorrect assertion in inf() 41 unsigned char in[CHUNK]; local 54 strm.avail_in = fread(in, 1, CHUNK, source); 60 strm.next_in = in; 63 compression if all of source has been read in */ 77 /* done when last data in file processed */ 97 unsigned char in[CHUNK]; local 112 strm.avail_in = fread(in, 1, CHUNK, source); 119 strm.next_in = in;
|
/frameworks/base/core/java/android/content/pm/ |
InstantAppIntentFilter.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 InstantAppIntentFilter(Parcel in) { 48 mSplitName = in.readString(); 49 in.readList(mFilters, null /*loader*/); 74 public InstantAppIntentFilter createFromParcel(Parcel in) { 75 return new InstantAppIntentFilter(in);
|
/frameworks/base/core/java/android/ddm/ |
DdmHandleExit.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 39 * Register for the messages we're interested in. 67 ByteBuffer in = wrapChunk(request); local 69 int statusCode = in.getInt();
|
/frameworks/base/core/java/android/security/keymaster/ |
KeymasterCertificateChain.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 28 * Serialization code for this must be kept in sync with system/security/keystore 37 public KeymasterCertificateChain createFromParcel(Parcel in) { 38 return new KeymasterCertificateChain(in); 53 private KeymasterCertificateChain(Parcel in) { 54 readFromParcel(in); 73 public void readFromParcel(Parcel in) { 74 int length = in.readInt(); 77 mCertificates.add(in.createByteArray()) [all...] |
/frameworks/base/media/jni/ |
android_media_ResampleInputStream.cpp | 6 ** you may not use this file except in compliance with the License. 11 ** Unless required by applicable law or agreed to in writing, software 89 short in[BUF_SIZE]; local 90 env->GetByteArrayRegion(jIn, jInOffset, (jNpoints * 2 + nFir21 - 1) * 2, (jbyte*)in); 97 const short* inp = &in[i * 2];
|
/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/ |
ReceiverActivity.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 37 Intent in = getIntent(); local 41 body = in.getByteArrayExtra("data"); 42 header = in.getByteArrayExtra("header");
|
/frameworks/base/telephony/java/android/telephony/mbms/ |
FileServiceInfo.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 59 FileServiceInfo(Parcel in) { 60 super(in); 62 in.readList(files, FileInfo.class.getClassLoader());
|
/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/ |
StreamIoUtil.h | 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 62 std::ios_base::in | std::ios_base::out) override { 70 std::ios_base::in | std::ios_base::out) override { 74 bool in = which & std::ios_base::in; variable 78 if (!in && !out) { 82 if (in && out && way == std::ios_base::cur) { 92 if (in) { 109 if (noff != 0 && ((in && gptr() == nullptr) || (out && pptr() == nullptr))) [all...] |
/libcore/support/src/test/java/libcore/tlswire/handshake/ |
EllipticCurvesHelloExtension.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 DataInputStream in = new DataInputStream(ellipticCurvesListIn); local 42 int curve_id = in.readUnsignedShort();
|
ServerNameHelloExtension.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 39 DataInputStream in = new DataInputStream(serverNameListIn); local 42 int type = in.readUnsignedByte(); 46 byte[] hostnameBytes = IoUtils.readTlsVariableLengthByteVector(in, 0xffff);
|
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/ |
DocumentsProviderHelper.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 57 * Provides support for creation of documents in a test settings. 113 Bundle in = new Bundle(); local 114 in.putInt(StubProvider.EXTRA_FLAGS, flags); 115 in.putString(StubProvider.EXTRA_PARENT_ID, documentId); 116 in.putString(Document.COLUMN_MIME_TYPE, mimeType); 117 in.putString(Document.COLUMN_DISPLAY_NAME, name); 118 in.putStringArrayList(StubProvider.EXTRA_STREAM_TYPES, Lists.newArrayList(streamTypes)); 120 Bundle out = mClient.call("createDocumentWithFlags", null, in); [all...] |
/packages/apps/TV/tests/common/src/com/android/tv/testing/testinput/ |
ChannelStateData.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 32 public ChannelStateData createFromParcel(Parcel in) { 33 return new ChannelStateData(in); 52 private ChannelStateData(Parcel in) { 53 mTuneStatus = in.readInt(); 54 in.readTypedList(mTvTrackInfos, TvTrackInfo.CREATOR); 55 mSelectedAudioTrackId = in.readString(); 56 mSelectedVideoTrackId = in.readString();
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
CopyUtils.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 53 * let you specify the buffer size because in modern VMs the impact on speed 58 * to the <code>copy</code> methods in <code>Buffered*</code> streams. For 61 * copy( new BufferedInputStream( in ), new BufferedOutputStream( out ) ); 66 * would usually suggest wrapping in a BufferedInputStream. The 109 * @deprecated Use IOUtils. Will be removed in 2.0. 111 * Null handling behaviour changed in IOUtils (null data does not 123 * Instances should NOT be constructed in standard programming. 135 * @throws IOException In case of an I/O proble 156 ByteArrayInputStream in = new ByteArrayInputStream(input); local 176 ByteArrayInputStream in = new ByteArrayInputStream(input); local 248 InputStreamReader in = new InputStreamReader(input); local 267 InputStreamReader in = new InputStreamReader(input, encoding); local 310 StringReader in = new StringReader(input); local [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
AutoCloseInputStream.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 26 * closed, so any allocated in-memory buffers can be freed even if the 42 * @param in underlying input stream 44 public AutoCloseInputStream(InputStream in) { 45 super(in); 62 in.close(); 63 in = new ClosedInputStream(); 71 * @return next byte in the stream, or -1 if no more bytes are available 75 int n = in.read() [all...] |
/packages/services/BuiltInPrintService/src/com/android/bips/jni/ |
SizeD.java | 6 * you may not use this file except in compliance with the License. 11 * Unless required by applicable law or agreed to in writing, software 24 * Describes a width and height in arbitrary units. 44 public SizeD(Parcel in) { 45 this(in.readDouble(), in.readDouble()); 68 public SizeD createFromParcel(Parcel in) { 69 return new SizeD(in);
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
SwapByteOrder.h | 32 // The DLL version of the runtime lacks these functions (bug!?), but in a 103 } in, out; local 104 in.f = C; 105 out.i = SwapByteOrder_32(in.i); 113 } in, out; local 114 in.d = C; 115 out.i = SwapByteOrder_64(in.i);
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
SwapByteOrder.h | 32 // The DLL version of the runtime lacks these functions (bug!?), but in a 103 } in, out; local 104 in.f = C; 105 out.i = SwapByteOrder_32(in.i); 113 } in, out; local 114 in.d = C; 115 out.i = SwapByteOrder_64(in.i);
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
SwapByteOrder.h | 32 // The DLL version of the runtime lacks these functions (bug!?), but in a 103 } in, out; local 104 in.f = C; 105 out.i = SwapByteOrder_32(in.i); 113 } in, out; local 114 in.d = C; 115 out.i = SwapByteOrder_64(in.i);
|