Lines Matching defs:out
792 std::unique_ptr<BackingStore>* out) {
825 *out = ArrayBuffer::NewBackingStore(env()->isolate(), buf_len);
829 static_cast<unsigned char*>((*out)->Data()),
834 CHECK_LE(static_cast<size_t>(buf_len), (*out)->ByteLength());
836 *out = ArrayBuffer::NewBackingStore(env()->isolate(), 0);
838 *out = BackingStore::Reallocate(env()->isolate(), std::move(*out), buf_len);
853 std::unique_ptr<BackingStore> out;
859 UpdateResult r = cipher->Update(data, size, &out);
869 Local<ArrayBuffer> ab = ArrayBuffer::New(env->isolate(), std::move(out));
890 bool CipherBase::Final(std::unique_ptr<BackingStore>* out) {
898 *out = ArrayBuffer::NewBackingStore(env()->isolate(),
918 *out = ArrayBuffer::NewBackingStore(env()->isolate(), 0);
920 int out_len = (*out)->ByteLength();
922 static_cast<unsigned char*>((*out)->Data()),
925 CHECK_LE(static_cast<size_t>(out_len), (*out)->ByteLength());
927 *out =
928 BackingStore::Reallocate(env()->isolate(), std::move(*out), out_len);
930 *out = ArrayBuffer::NewBackingStore(env()->isolate(), 0);
960 std::unique_ptr<BackingStore> out;
964 bool r = cipher->Final(&out);
974 Local<ArrayBuffer> ab = ArrayBuffer::New(env->isolate(), std::move(out));
989 std::unique_ptr<BackingStore>* out) {
1017 *out = ArrayBuffer::NewBackingStore(env->isolate(), out_len);
1022 static_cast<unsigned char*>((*out)->Data()),
1029 CHECK_LE(out_len, (*out)->ByteLength());
1031 *out = BackingStore::Reallocate(env->isolate(), std::move(*out), out_len);
1033 *out = ArrayBuffer::NewBackingStore(env->isolate(), 0);
1098 std::unique_ptr<BackingStore> out;
1100 env, pkey, padding, digest, oaep_label, buf, &out)) {
1104 Local<ArrayBuffer> ab = ArrayBuffer::New(env->isolate(), std::move(out));