HomeSort by relevance Sort by last modified time
    Searched refs:out_p (Results 1 - 13 of 13) sorted by null

  /art/runtime/
utf.cc 95 uint16_t *out_p = utf16_data_out; local
102 *out_p++ = dchecked_integral_cast<uint16_t>(*p++);
113 *out_p++ = leading;
115 *out_p++ = trailing;
  /system/update_engine/common/
utils.h 95 // pointed to by |out_p|. Returns true upon successfully reading all of the
99 bool ReadFile(const std::string& path, brillo::Blob* out_p);
100 bool ReadFile(const std::string& path, std::string* out_p);
102 brillo::Blob* out_p);
105 // |out_p|. Returns true upon successfully reading all of the output, false
107 bool ReadPipe(const std::string& cmd, std::string* out_p);
utils.cc 329 // pointer to by |out_p|. Returns true upon successful reading all of the
333 static bool Read(FILE* fp, off_t size, T* out_p) {
346 AppendBytes(buf, nbytes, out_p);
359 // |out_p|. Starts reading the file from |offset|. If |offset| is beyond the end
365 T* out_p) {
379 return Read(fp.get(), size, out_p);
384 bool ReadPipe(const string& cmd, string* out_p) {
388 bool success = Read(fp, -1, out_p);
392 bool ReadFile(const string& path, brillo::Blob* out_p) {
393 return ReadFileChunkAndAppend(path, 0, -1, out_p);
    [all...]
  /external/boringssl/src/crypto/dh/
dh.c 127 void DH_get0_pqg(const DH *dh, const BIGNUM **out_p, const BIGNUM **out_q,
129 if (out_p != NULL) {
130 *out_p = dh->p;
  /external/boringssl/src/include/openssl/
dh.h 96 /* DH_get0_pqg sets |*out_p|, |*out_q|, and |*out_g|, if non-NULL, to |dh|'s p,
98 OPENSSL_EXPORT void DH_get0_pqg(const DH *dh, const BIGNUM **out_p,
dsa.h 99 /* DSA_get0_pqg sets |*out_p|, |*out_q|, and |*out_g|, if non-NULL, to |dsa|'s
101 OPENSSL_EXPORT void DSA_get0_pqg(const DSA *dsa, const BIGNUM **out_p,
ec.h 140 * |*out_p| to the order of the coordinate field and |*out_a| and |*out_b| to
144 OPENSSL_EXPORT int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *out_p,
rsa.h 98 /* RSA_get0_factors sets |*out_p| and |*out_q|, if non-NULL, to |rsa|'s prime
101 OPENSSL_EXPORT void RSA_get0_factors(const RSA *rsa, const BIGNUM **out_p,
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_loopfilter_sse2.c     [all...]
loopfilter_sse2.c     [all...]
  /external/boringssl/src/crypto/dsa/
dsa.c 143 void DSA_get0_pqg(const DSA *dsa, const BIGNUM **out_p, const BIGNUM **out_q,
145 if (out_p != NULL) {
146 *out_p = dsa->p;
  /external/boringssl/src/crypto/rsa/
rsa.c 185 void RSA_get0_factors(const RSA *rsa, const BIGNUM **out_p,
187 if (out_p != NULL) {
188 *out_p = rsa->p;
  /external/boringssl/src/crypto/ec/
ec.c 586 int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *out_p, BIGNUM *out_a,
588 return ec_GFp_simple_group_get_curve(group, out_p, out_a, out_b, ctx);

Completed in 327 milliseconds