Home
last modified time | relevance | path

Searched refs:pout (Results 1 – 25 of 28) sorted by relevance

12

/external/u-boot/drivers/crypto/
Dace_sha.c28 unsigned char *pout, unsigned int hash_type) in ace_sha_hash_digest() argument
38 memcpy(pout, sha1_digest_emptymsg, SHA1_SUM_LEN); in ace_sha_hash_digest()
40 memcpy(pout, sha256_digest_emptymsg, SHA256_SUM_LEN); in ace_sha_hash_digest()
90 pdigest = (unsigned int *)pout; in ace_sha_hash_digest()
103 unsigned char *pout, unsigned int chunk_size) in hw_sha256() argument
105 if (ace_sha_hash_digest(pbuf, buf_len, pout, ACE_SHA_TYPE_SHA256)) in hw_sha256()
110 unsigned char *pout, unsigned int chunk_size) in hw_sha1() argument
112 if (ace_sha_hash_digest(pbuf, buf_len, pout, ACE_SHA_TYPE_SHA1)) in hw_sha1()
/external/u-boot/drivers/crypto/fsl/
Dfsl_hash.c162 unsigned char *pout, enum caam_hash_algos algo) in caam_hash() argument
175 !IS_ALIGNED((uintptr_t)pout, ARCH_DMA_MINALIGN)) { in caam_hash()
183 inline_cnstr_jobdesc_hash(desc, pbuf, buf_len, pout, in caam_hash()
194 invalidate_dcache_range((unsigned long)pout, in caam_hash()
195 (unsigned long)pout + size); in caam_hash()
202 unsigned char *pout, unsigned int chunk_size) in hw_sha256() argument
204 if (caam_hash(pbuf, buf_len, pout, SHA256)) in hw_sha256()
209 unsigned char *pout, unsigned int chunk_size) in hw_sha1() argument
211 if (caam_hash(pbuf, buf_len, pout, SHA1)) in hw_sha1()
/external/webrtc/webrtc/libjingle/xmllite/
Dxmlprinter.cc25 XmlPrinterImpl(std::ostream* pout, XmlnsStack* ns_stack);
36 void XmlPrinter::PrintXml(std::ostream* pout, const XmlElement* element) { in PrintXml() argument
38 PrintXml(pout, element, &ns_stack); in PrintXml()
41 void XmlPrinter::PrintXml(std::ostream* pout, const XmlElement* element, in PrintXml() argument
43 XmlPrinterImpl printer(pout, ns_stack); in PrintXml()
47 XmlPrinterImpl::XmlPrinterImpl(std::ostream* pout, XmlnsStack* ns_stack) in XmlPrinterImpl() argument
48 : pout_(pout), in XmlPrinterImpl()
Dxmlprinter.h24 static void PrintXml(std::ostream* pout, const XmlElement* pelt);
26 static void PrintXml(std::ostream* pout, const XmlElement* pelt,
/external/webp/src/dsp/
Dlossless_enc_mips32.c331 [pa]"+r"(pa), [pout]"+r"(pout)
348 uint32_t* pout, int size) { in AddVector_MIPS32() argument
354 ADD_TO_OUT(0, 4, 8, 12, 1, pa, pb, pout) in AddVector_MIPS32()
356 for (i = end; i < size; ++i) pout[i] = pa[i] + pb[i]; in AddVector_MIPS32()
359 static void AddVectorEq_MIPS32(const uint32_t* pa, uint32_t* pout, int size) { in AddVectorEq_MIPS32() argument
365 ADD_TO_OUT(0, 4, 8, 12, 0, pa, pout, pout) in AddVectorEq_MIPS32()
367 for (i = end; i < size; ++i) pout[i] += pa[i]; in AddVectorEq_MIPS32()
Denc_mips32.c198 int16_t* pout = &out[0]; in QuantizeBlock_MIPS32() local
228 : [pout]"r"(pout), [ppin]"r"(ppin), in QuantizeBlock_MIPS32()
Denc_mips_dsp_r2.c1284 int16_t* pout = &out[0]; in QuantizeBlock_MIPSdspR2() local
1306 : [ppin]"r"(ppin), [pout]"r"(pout), [max_level1]"r"(max_level1), in QuantizeBlock_MIPSdspR2()
/external/python/cpython3/Lib/idlelib/
Dpercolator.py81 pout = p.removefilter
86 (pin if var1.get() else pout)(t1)
88 (pin if var2.get() else pout)(t2)
/external/avb/test/
Davbtool_signing_helper_with_files_test.py63 (pout, _) = p.communicate(data)
69 signing_file.write(pout)
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SLPVectorizer/X86/
Dremark_listcost.ll4 define void @vsub2_test(i32* %pin1, i32* %pin2, i32* %pout) #0 {
8 %po.03 = phi i32* [ %pout, %0 ], [ %7, %1 ]
/external/openssh/
Dscp.c233 int pin[2], pout[2], reserved[2]; in do_cmd() local
251 if (pipe(pout) < 0) in do_cmd()
267 close(pout[0]); in do_cmd()
269 dup2(pout[1], 1); in do_cmd()
271 close(pout[1]); in do_cmd()
291 close(pout[1]); in do_cmd()
292 *fdin = pout[0]; in do_cmd()
Dsshconnect.c188 int pin[2], pout[2]; in ssh_proxy_connect() local
196 if (pipe(pin) < 0 || pipe(pout) < 0) in ssh_proxy_connect()
218 close(pout[0]); in ssh_proxy_connect()
219 if (dup2(pout[1], 1) < 0) in ssh_proxy_connect()
222 close(pout[1]); in ssh_proxy_connect()
246 close(pout[1]); in ssh_proxy_connect()
252 packet_set_connection(pout[0], pin[1]); in ssh_proxy_connect()
Dsession.c299 int pin[2], pout[2], perr[2]; in do_exec_no_pty() local
309 if (pipe(pout) < 0) { in do_exec_no_pty()
320 close(pout[0]); in do_exec_no_pty()
321 close(pout[1]); in do_exec_no_pty()
353 close(pout[0]); in do_exec_no_pty()
354 close(pout[1]); in do_exec_no_pty()
389 close(pout[0]); in do_exec_no_pty()
390 if (dup2(pout[1], 1) < 0) in do_exec_no_pty()
392 close(pout[1]); in do_exec_no_pty()
451 close(pout[1]); in do_exec_no_pty()
[all …]
Dsftp.c2189 int pin[2], pout[2]; in connect_to_server() local
2191 if ((pipe(pin) == -1) || (pipe(pout) == -1)) in connect_to_server()
2194 *out = pout[1]; in connect_to_server()
2195 c_in = pout[0]; in connect_to_server()
/external/python/cpython2/Modules/_ctypes/
D_ctypes_test.c324 EXPORT(int) _testfunc_byval(point in, point *pout) in _testfunc_byval() argument
326 if (pout) { in _testfunc_byval()
327 pout->x = in.x; in _testfunc_byval()
328 pout->y = in.y; in _testfunc_byval()
/external/libxml2/
Dregressions.py153 pin, pout, perr = os.popen3(cmd)
172 th1 = thread.start_new_thread(readPfile, (pout, outfile, th1Flag))
/external/python/cpython3/Modules/_ctypes/
D_ctypes_test.c331 EXPORT(int) _testfunc_byval(point in, point *pout) in _testfunc_byval() argument
333 if (pout) { in _testfunc_byval()
334 pout->x = in.x; in _testfunc_byval()
335 pout->y = in.y; in _testfunc_byval()
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyCFG/
D2008-07-13-InfLoopMiscompile.ll32 …%pout = tail call i32 (i8*, ...)* @printf( i8* noalias getelementptr ([4 x i8]* @.str, i32 0, i32…
/external/python/cpython2/Objects/
Dlongobject.c1298 inplace_divrem1(digit *pout, digit *pin, Py_ssize_t size, digit n) in inplace_divrem1() argument
1304 pout += size; in inplace_divrem1()
1308 *--pout = hi = (digit)(rem / n); in inplace_divrem1()
1342 digit *pout, *pin, rem, tenpow; in long_to_decimal_string() local
1378 pout = scratch->ob_digit; in long_to_decimal_string()
1383 twodigits z = (twodigits)pout[j] << PyLong_SHIFT | hi; in long_to_decimal_string()
1385 pout[j] = (digit)(z - (twodigits)hi * in long_to_decimal_string()
1389 pout[size++] = hi % _PyLong_DECIMAL_BASE; in long_to_decimal_string()
1401 pout[size++] = 0; in long_to_decimal_string()
1407 rem = pout[size-1]; in long_to_decimal_string()
[all …]
/external/syzkaller/vendor/golang.org/x/sys/unix/
Dmksyscall_solaris.pl205 my @pout= ();
/external/llvm/test/Transforms/SimplifyCFG/
D2008-07-13-InfLoopMiscompile.ll50 …%pout = tail call i32 (i8*, ...) @printf( i8* noalias getelementptr ([4 x i8], [4 x i8]* @.str, i…
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SimplifyCFG/
D2008-07-13-InfLoopMiscompile.ll50 …%pout = tail call i32 (i8*, ...) @printf( i8* noalias getelementptr ([4 x i8], [4 x i8]* @.str, i…
/external/python/cpython3/Objects/
Dlongobject.c1544 inplace_divrem1(digit *pout, digit *pin, Py_ssize_t size, digit n) in inplace_divrem1() argument
1550 pout += size; in inplace_divrem1()
1554 *--pout = hi = (digit)(rem / n); in inplace_divrem1()
1592 digit *pout, *pin, rem, tenpow; in long_to_decimal_string_internal() local
1631 pout = scratch->ob_digit; in long_to_decimal_string_internal()
1636 twodigits z = (twodigits)pout[j] << PyLong_SHIFT | hi; in long_to_decimal_string_internal()
1638 pout[j] = (digit)(z - (twodigits)hi * in long_to_decimal_string_internal()
1642 pout[size++] = hi % _PyLong_DECIMAL_BASE; in long_to_decimal_string_internal()
1654 pout[size++] = 0; in long_to_decimal_string_internal()
1659 rem = pout[size-1]; in long_to_decimal_string_internal()
[all …]
/external/avb/
Davbtool368 (pout, perr) = p.communicate()
376 (pout, perr) = p.communicate()
380 if not pout.lower().startswith(self.MODULUS_PREFIX):
383 modulus_hexstr = pout[len(self.MODULUS_PREFIX):]
484 (pout, perr) = p.communicate(str(raw_data_to_sign))
488 signature = bytearray(pout)
586 (pout, perr) = p.communicate(str(sig_blob))
590 recovered_data = bytearray(pout)
3657 (pout, perr) = p.communicate()
3661 return int(pout)
/external/python/cpython3/PC/
Dlauncher.c601 safe_duplicate_handle(HANDLE in, HANDLE * pout) in safe_duplicate_handle() argument
607 *pout = NULL; in safe_duplicate_handle()
608 ok = DuplicateHandle(process, in, process, pout, 0, TRUE, in safe_duplicate_handle()

12