HomeSort by relevance Sort by last modified time
    Searched refs:output_ (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /system/tools/aidl/
code_writer.cpp 34 explicit StringCodeWriter(std::string* output_buffer) : output_(output_buffer) {}
40 android::base::StringAppendV(output_, format, ap);
48 std::string* output_; member in class:android::aidl::__anon3711::StringCodeWriter
54 : output_(output_file),
57 if (close_on_destruction_ && output_ != nullptr) {
58 fclose(output_);
66 success = vfprintf(output_, format, ap) >= 0;
73 if (output_ != nullptr) {
74 no_error_ = fclose(output_) == 0 && no_error_;
75 output_ = nullptr
82 FILE* output_; member in class:android::aidl::__anon3711::FileCodeWriter
    [all...]
  /external/libchrome/crypto/
openssl_util.h 27 : output_(output),
34 memcpy(output_, min_sized_buffer_, output_len_);
36 // else... any writing already happened directly into |output_|.
40 return output_len_ < MIN_SIZE ? min_sized_buffer_ : output_;
46 unsigned char* output_; member in class:crypto::ScopedOpenSSLSafeSizeBuffer
  /art/compiler/linker/
error_delaying_output_stream.h 34 output_(output),
42 if (!output_->WriteFully(buffer, byte_count)) {
70 off_t actual_offset = output_->Seek(offset, whence);
86 output_good_ = output_->Flush();
97 OutputStream* output_; member in class:art::linker::FINAL
  /external/protobuf/src/google/protobuf/util/internal/
json_objectwriter_test.cc 48 : str_stream_(new StringOutputStream(&output_)),
58 string output_; member in class:google::protobuf::util::converter::JsonObjectWriterTest
67 EXPECT_EQ("{}", output_.substr(0, out_stream_->ByteCount()));
78 output_.substr(0, out_stream_->ByteCount()));
84 EXPECT_EQ("[]", output_.substr(0, out_stream_->ByteCount()));
95 output_.substr(0, out_stream_->ByteCount()));
106 output_.substr(0, out_stream_->ByteCount()));
117 output_.substr(0, out_stream_->ByteCount()));
128 output_.substr(0, out_stream_->ByteCount()));
138 EXPECT_EQ("[[\"value\"]]", output_.substr(0, out_stream_->ByteCount()))
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
util_unittest.cc 22 output_ << std::string(bytes, len);
26 output_ << "[START-TLS " << cname << "]";
30 output_ << "[CLOSED]";
92 std::string result = output_.str();
93 output_.str("");
  /external/tensorflow/tensorflow/contrib/lite/kernels/
l2norm_test.cc 31 output_ = AddOutput(TensorType_FLOAT32);
41 std::vector<float> GetOutput() { return ExtractVector<float>(output_); }
45 int output_; member in class:tflite::__anon39261::L2NormOpModel
depthwise_conv_test.cc 49 output_ = AddOutput(output);
54 CHECK_LT(GetScale(input_) * GetScale(filter_), GetScale(output_));
75 int output_; member in class:tflite::__anon39249::BaseDepthwiseConvolutionOpModel
90 std::vector<float> GetOutput() { return ExtractVector<float>(output_); }
136 std::vector<uint8_t> GetOutput() { return ExtractVector<uint8_t>(output_); }
138 return Dequantize<uint8_t>(ExtractVector<uint8_t>(output_),
139 GetScale(output_), GetZeroPoint(output_));
exp_test.cc 30 output_ = AddOutput(output);
43 return ExtractVector<T>(output_);
45 std::vector<int> GetOutputShape() { return GetTensorShape(output_); }
49 int output_; member in class:tflite::__anon39253::ExpOpModel
reshape_test.cc 31 output_ = AddOutput(TensorType_FLOAT32);
42 std::vector<float> GetOutput() { return ExtractVector<float>(output_); }
43 std::vector<int> GetOutputShape() { return GetTensorShape(output_); }
47 int output_; member in class:tflite::__anon39270::ReshapeOpModel
pooling_test.cc 35 output_ = AddOutput(output);
48 int output_; member in class:tflite::__anon39269::BasePoolingOpModel
59 std::vector<float> GetOutput() { return ExtractVector<float>(output_); }
70 std::vector<uint8_t> GetOutput() { return ExtractVector<uint8_t>(output_); }
72 return Dequantize<uint8_t>(ExtractVector<uint8_t>(output_),
73 GetScale(output_), GetZeroPoint(output_));
space_to_depth_test.cc 31 output_ = AddOutput(tensor_data);
44 return ExtractVector<T>(output_);
46 std::vector<int> GetOutputShape() { return GetTensorShape(output_); }
50 int output_; member in class:tflite::__anon39276::SpaceToDepthOpModel
squeeze_test.cc 32 output_ = AddOutput(output);
44 int output_; member in class:tflite::__anon39278::BaseSqueezeOpModel
55 std::vector<float> GetOutput() { return ExtractVector<float>(output_); }
56 std::vector<int> GetOutputShape() { return GetTensorShape(output_); }
local_response_norm_test.cc 31 output_ = AddOutput(TensorType_FLOAT32);
44 std::vector<float> GetOutput() { return ExtractVector<float>(output_); }
48 int output_; member in class:tflite::__anon39262::LocalResponseNormOpModel
batch_to_space_nd_test.cc 41 std::vector<float> GetOutput() { return ExtractVector<float>(output_); }
42 std::vector<int> GetOutputShape() { return GetTensorShape(output_); }
48 int output_; member in class:tflite::__anon39245::BatchToSpaceNDOpModel
65 output_ = AddOutput(TensorType_FLOAT32);
88 output_ = AddOutput(TensorType_FLOAT32);
mean_test.cc 37 return ExtractVector<T>(output_);
40 std::vector<int> GetOutputShape() { return GetTensorShape(output_); }
45 int output_; member in class:tflite::__anon39265::BaseMeanOpModel
56 output_ = AddOutput(output);
70 output_ = AddOutput(output);
pad_test.cc 36 std::vector<float> GetOutput() { return ExtractVector<float>(output_); }
37 std::vector<int> GetOutputShape() { return GetTensorShape(output_); }
41 int output_; member in class:tflite::__anon39268::PadOpModel
58 output_ = AddOutput(TensorType_FLOAT32);
79 output_ = AddOutput(TensorType_FLOAT32);
  /external/webp/src/dec/
alphai_dec.h 38 uint8_t* output_; member in struct:ALPHDecoder
  /external/tensorflow/tensorflow/core/lib/strings/
proto_text_util.h 39 : output_(output),
45 StrAppend(output_, level_empty_ ? "" : field_separator_, indent_,
54 StrAppend(output_, level_empty_ ? "" : field_separator_, indent_, "}");
60 if (!short_debug_ && !level_empty_) StrAppend(output_, "\n");
104 StrAppend(output_, level_empty_ ? "" : field_separator_, indent_,
109 string* const output_; member in class:tensorflow::strings::ProtoTextOutput
  /frameworks/ml/nn/common/operations/
EmbeddingLookup.cpp 31 output_ = GetOutput(operation, operands, kOutputTensor);
45 memcpy(output_->buffer + i * row_bytes, value_->buffer + idx * row_bytes,
EmbeddingLookup.h 54 RunTimeOperandInfo *output_; member in class:android::nn::EmbeddingLookup
HashtableLookup.cpp 40 output_ = GetOutput(operation, operands, kOutputTensor);
59 memset(output_->buffer + i * row_bytes, 0, row_bytes);
62 memcpy(output_->buffer + i * row_bytes, value_->buffer + idx * row_bytes,
  /external/webrtc/webrtc/modules/audio_device/android/
audio_device_template.h 44 output_(audio_manager_),
65 if (output_.Init() != 0) {
70 output_.Terminate();
81 err |= output_.Terminate();
147 return output_.InitPlayout();
151 return output_.PlayoutIsInitialized();
171 return output_.StartPlayout();
178 int32_t err = output_.StopPlayout();
183 return output_.Playing();
245 return output_.SpeakerVolumeIsAvailable(available)
498 OutputType output_; member in class:webrtc::AudioDeviceTemplate
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/models/smartreply/ops/
normalize_test.cc 39 output_ = AddOutput(TensorType_STRING);
47 TfLiteTensor* output = interpreter_->tensor(output_);
59 int output_; member in class:tflite::ops::custom::__anon39290::NormalizeOpModel
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_testlib_ops.cc 49 output_ = Tensor(dtout_, TensorShape({}));
53 ctx->set_output_ref(0, &mu_, &output_);
59 Tensor output_; member in class:tensorflow::test::InvalidRefType
  /art/compiler/optimizing/
graph_visualizer.cc 186 output_(output),
204 output_ << std::flush;
209 output_ << "begin_" << name << "\n";
216 output_ << "end_" << name << "\n";
221 output_ << name << " \"" << property << "\"\n";
226 output_ << name << " \"" << property << id << "\"\n";
231 output_ << name << "\n";
236 output_ << name << " " << time(nullptr) << "\n";
241 output_ << name << " " << value << "\n";
246 output_ << " ";
835 std::ostream& output_; member in class:art::HGraphVisualizerPrinter
    [all...]

Completed in 1496 milliseconds

1 2 3 4 5 6 7