HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 476 - 500 of 5424) sorted by null

<<11121314151617181920>>

  /external/tpm2/
Marshal_Sign.c 71 Sign_Out out; local
87 result = TPM2_Sign(&in, &out);
96 Sign_Out_Marshal(&out, tag, &response_buffer, &response_buffer_size);
Marshal_StartAuthSession.c 84 StartAuthSession_Out out; local
101 result = TPM2_StartAuthSession(&in, &out);
109 bytes_marshalled = StartAuthSession_Out_Marshal(&out, tag, &response_buffer,
Marshal_Unseal.c 58 Unseal_Out out; local
74 result = TPM2_Unseal(&in, &out);
83 Unseal_Out_Marshal(&out, tag, &response_buffer, &response_buffer_size);
Marshal_VerifySignature.c 67 VerifySignature_Out out; local
84 result = TPM2_VerifySignature(&in, &out);
92 bytes_marshalled = VerifySignature_Out_Marshal(&out, tag, &response_buffer,
Marshal_ZGen_2Phase.c 77 ZGen_2Phase_Out out; local
94 result = TPM2_ZGen_2Phase(&in, &out);
102 bytes_marshalled = ZGen_2Phase_Out_Marshal(&out, tag, &response_buffer,
  /external/valgrind/coregrind/m_demangle/
rust-demangle.c 112 static int unescape (const char **in, char **out, const char *seq, char value);
261 char *out; local
268 out = sym;
275 if (!(unescape (&in, &out, "$C$", ',')
276 || unescape (&in, &out, "$SP$", '@')
277 || unescape (&in, &out, "$BP$", '*')
278 || unescape (&in, &out, "$RF$", '&')
279 || unescape (&in, &out, "$LT$", '<')
280 || unescape (&in, &out, "$GT$", '>')
281 || unescape (&in, &out, "$LP$", '('
    [all...]
  /external/valgrind/memcheck/tests/amd64-solaris/
context_fpu.c 1 /* Test if x87 FP valus are correctly propagated in and out of a signal
37 "fstps %[out]\n"
38 : [out] "=m" (inhandler[i])
47 float out[8]; local
80 "fstps 0x00 + %[out]\n"
81 "fstps 0x04 + %[out]\n"
82 "fstps 0x08 + %[out]\n"
83 "fstps 0x0c + %[out]\n"
84 "fstps 0x10 + %[out]\n"
85 "fstps 0x14 + %[out]\n
    [all...]
context_sse.c 1 /* Test if SSE valus are correctly propagated into and out of a signal handler
36 upad128_t out[8]; local
80 "movups %%xmm0, 0x00 + %[out]\n"
81 "movups %%xmm1, 0x10 + %[out]\n"
82 "movups %%xmm2, 0x20 + %[out]\n"
83 "movups %%xmm3, 0x30 + %[out]\n"
84 "movups %%xmm4, 0x40 + %[out]\n"
85 "movups %%xmm5, 0x50 + %[out]\n"
86 "movups %%xmm6, 0x60 + %[out]\n"
87 "movups %%xmm7, 0x70 + %[out]\n
    [all...]
  /external/valgrind/memcheck/tests/x86-solaris/
context_fpu.c 35 "fstps %[out]\n"
36 : [out] "=m" (inhandler[i])
46 float out[8]; local
86 "fstps 0x00 + %[out]\n"
87 "fstps 0x04 + %[out]\n"
88 "fstps 0x08 + %[out]\n"
89 "fstps 0x0c + %[out]\n"
90 "fstps 0x10 + %[out]\n"
91 "fstps 0x14 + %[out]\n"
92 "fstps 0x18 + %[out]\n
    [all...]
context_sse.c 34 upad128_t out[8]; local
85 "movups %%xmm0, 0x00 + %[out]\n"
86 "movups %%xmm1, 0x10 + %[out]\n"
87 "movups %%xmm2, 0x20 + %[out]\n"
88 "movups %%xmm3, 0x30 + %[out]\n"
89 "movups %%xmm4, 0x40 + %[out]\n"
90 "movups %%xmm5, 0x50 + %[out]\n"
91 "movups %%xmm6, 0x60 + %[out]\n"
92 "movups %%xmm7, 0x70 + %[out]\n"
93 : [out] "=m" (out[0]
    [all...]
  /external/valgrind/none/tests/s390x/
bfp-2.c 12 float out; local
14 __asm__ volatile("sqebr %[out],%[in]" : [out]"=f"(out) : [in]"f"(in));
15 printf("sqebr %f -> %f\n", in, out);
20 double out; local
22 __asm__ volatile("sqdbr %[out],%[in]" : [out]"=f"(out) : [in]"f"(in));
23 printf("sqdbr %f -> %f\n", in, out);
28 float out; local
36 double out; local
44 float out; local
52 double out; local
60 float out; local
68 double out; local
76 unsigned long out; local
86 unsigned long out; local
    [all...]
  /external/valgrind/none/tests/x86/
aad_aam.c 19 unsigned short i,out; local
28 out=i;
35 :"=r"(out), "=r"(flags) /* outputs */
36 :"r"(out) /* input */
46 // printf("%d, %d, %d, ",i,(out>>8)&0xff,out&0xff);
50 if (zf && ((out&0xff)!=0)) {
53 if (pf != parity(out&0xff)) {
56 if (sf != !!(out&0x80)) {
61 if ( ((out>>8)&0xff) != ((i&0xff)/10))
    [all...]
  /external/vogar/src/vogar/
OutcomeStore.java 133 JsonWriter out = new JsonWriter(new FileWriter(outputFile)); local
134 out.setIndent(" ");
135 out.beginObject();
137 out.name(entry.getKey());
138 out.beginObject();
139 out.name("result");
140 out.value(entry.getValue().getResult().toString());
141 out.endObject();
143 out.endObject();
144 out.close()
    [all...]
  /external/webp/src/dsp/
neon.h 73 int32x4x4_t out; local
74 out.val[0] = out01.val[0];
75 out.val[1] = out01.val[1];
76 out.val[2] = out23.val[0];
77 out.val[3] = out23.val[1];
78 return out;
  /external/wpa_supplicant_8/src/eap_common/
eap_fast_common.c 98 u8 *out; local
100 out = os_malloc(len);
101 if (out == NULL)
104 if (tls_connection_get_eap_fast_key(ssl_ctx, conn, out, len)) {
105 os_free(out);
109 return out;
  /external/wpa_supplicant_8/src/utils/
base64.c 32 unsigned char *out, *pos; local
42 out = os_malloc(olen);
43 if (out == NULL)
48 pos = out;
84 *out_len = pos - out;
85 return out;
102 unsigned char dtable[256], *out, *pos, block[4], tmp; local
121 pos = out = os_malloc(olen);
122 if (out == NULL)
147 os_free(out);
    [all...]
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
BasicTest.java 30 System.out.println();
31 System.out.println("Provider:" + p.getName());
41 System.out.println(algorithm);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSerializerHelper.java 34 * @param out the output stream to serialize to
38 public static void serialize(XMPMetaImpl xmp, OutputStream out,
49 new XMPSerializerRDF().serialize(xmp, out, options);
71 ByteArrayOutputStream out = new ByteArrayOutputStream(2048); local
72 serialize(xmp, out, options);
76 return out.toString(options.getEncoding());
82 return out.toString();
98 ByteArrayOutputStream out = new ByteArrayOutputStream(2048); local
99 serialize(xmp, out, options);
100 return out.toByteArray()
    [all...]
  /external/xz-embedded/userspace/
boottest.c 28 static uint8_t out[1024 * 1024]; variable
45 ret = decompress(in, in_size, NULL, NULL, out, NULL, &error);
46 /* fwrite(out, 1, FIXME, stdout); */
75 ret = decompress(in, 0, &fill, NULL, out, &in_used, &error);
76 /* fwrite(out, 1, FIXME, stdout); */
  /external/zlib/src/examples/
zpipe.c 42 unsigned char out[CHUNK]; local
66 strm.next_out = out;
70 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
98 unsigned char out[CHUNK]; local
124 strm.next_out = out;
136 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
168 fputs("out of memory\n", stderr);
  /frameworks/av/media/libaudioprocessing/
AudioResamplerFirOps.h 62 int32_t out; local
64 asm( "smultb %[out], %[in], %[vRL] \n"
65 : [out]"=r"(out)
69 asm( "smultt %[out], %[in], %[vRL] \n"
70 : [out]"=r"(out)
74 return out;
85 int32_t out; local
86 asm( "smlabb %[out], %[v], %[in], %[a] \n
100 int32_t out; local
115 int32_t out; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_halfpel_inline.h 83 register int32 out; local
92 : "=&r"(out),
97 return out;
103 register int32 out; local
112 : "=&r"(out),
117 return out;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_stream.c 75 u32 out; local
80 out = h264bsdShowBits32(pStrmData) >> (32 - numBits);
84 return(out);
119 u32 out; local
137 out = ((u32)pStrm[0] << 24) | ((u32)pStrm[1] << 16) |
144 out <<= bitPosInWord;
145 out |= byte>>tmp;
147 return (out);
153 out = (u32)(*pStrm++) << shift;
158 out |= (u32)(*pStrm++) << shift
    [all...]
  /frameworks/av/media/libstagefright/foundation/tests/
Base64_test.cpp 65 AString out = AString(""); local
67 encodeBase64Url(in[i].c_str(), in[i].size(), &out);
69 ASSERT_EQ(AStringUtils::Compare(expected[i].c_str(), out.c_str(),
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattIncludedService.java 59 public void writeToParcel(Parcel out, int flags) {
60 out.writeParcelable(new ParcelUuid(mUuid), 0);
61 out.writeInt(mInstanceId);
62 out.writeInt(mServiceType);

Completed in 563 milliseconds

<<11121314151617181920>>