Home
last modified time | relevance | path

Searched refs:out_n (Results 1 – 10 of 10) sorted by relevance

/external/pdfium/third_party/lcms/src/
Dcmsalpha.c305 int out_n = FormatterPos(out); in _cmsGetFormatterAlpha() local
307 if (in_n < 0 || out_n < 0 || in_n > 4 || out_n > 4) { in _cmsGetFormatterAlpha()
313 return FormattersAlpha[in_n][out_n]; in _cmsGetFormatterAlpha()
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/testing/
Ddelegate_testing.cc57 auto out_n = tflite::NumElements(cpu->tensor(cpu->outputs()[i])); in CompareCPUGPUResults() local
61 for (int k = 0; k < out_n; ++k) { in CompareCPUGPUResults()
/external/mesa3d/src/imgui/
Dimgui_memory_editor.h608 size_t out_n = 0; in FormatBinary() local
614 out_buf[out_n++] = (buf[j] & (1 << (7 - i))) ? '1' : '0'; in FormatBinary()
615 out_buf[out_n++] = ' '; in FormatBinary()
617 IM_ASSERT(out_n < IM_ARRAYSIZE(out_buf)); in FormatBinary()
618 out_buf[out_n] = 0; in FormatBinary()
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/rsa/
Drsa.c186 void RSA_get0_key(const RSA *rsa, const BIGNUM **out_n, const BIGNUM **out_e, in RSA_get0_key() argument
188 if (out_n != NULL) { in RSA_get0_key()
189 *out_n = rsa->n; in RSA_get0_key()
/external/boringssl/src/crypto/fipsmodule/rsa/
Drsa.c186 void RSA_get0_key(const RSA *rsa, const BIGNUM **out_n, const BIGNUM **out_e, in RSA_get0_key() argument
188 if (out_n != NULL) { in RSA_get0_key()
189 *out_n = rsa->n; in RSA_get0_key()
/external/boringssl/src/include/openssl/
Drsa.h135 OPENSSL_EXPORT void RSA_get0_key(const RSA *rsa, const BIGNUM **out_n,
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/
Drsa.h135 OPENSSL_EXPORT void RSA_get0_key(const RSA *rsa, const BIGNUM **out_n,
/external/tensorflow/tensorflow/python/framework/
Dops.py3774 op_name, out_n = name.split(":")
3775 out_n = int(out_n)
3787 return op.outputs[out_n]
/external/vixl/src/aarch64/
Dassembler-aarch64.cc5962 int d, clz_a, out_n; in IsImmLogical() local
5974 out_n = 0; in IsImmLogical()
5995 out_n = 1; in IsImmLogical()
6071 *n = out_n; in IsImmLogical()
/external/rust/crates/libc/src/
Dpsp.rs2650 out_n: *mut i32, in sceAtracDecodeData()
2665 pub fn sceAtracGetNextSample(atrac_id: i32, out_n: *mut i32) -> i32; in sceAtracGetNextSample()