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

  /system/update_engine/client_library/include/update_engine/
client.h 103 virtual bool GetTargetChannel(std::string* out_channel) const = 0;
106 virtual bool GetChannel(std::string* out_channel) const = 0;
  /system/update_engine/client_library/
client_binder.h 78 bool GetTargetChannel(std::string* out_channel) const override;
80 bool GetChannel(std::string* out_channel) const override;
client_dbus.h 72 bool GetTargetChannel(std::string* out_channel) const override;
74 bool GetChannel(std::string* out_channel) const override;
client_binder.cc 213 bool BinderUpdateEngineClient::GetTargetChannel(string* out_channel) const {
219 *out_channel = String8{out_as_string16}.string();
223 bool BinderUpdateEngineClient::GetChannel(string* out_channel) const {
229 *out_channel = String8{out_as_string16}.string();
client_dbus.cc 223 bool DBusUpdateEngineClient::GetTargetChannel(string* out_channel) const {
225 out_channel,
229 bool DBusUpdateEngineClient::GetChannel(string* out_channel) const {
231 out_channel,
  /external/llvm/bindings/ocaml/bitwriter/
llvm_bitwriter.mli 37 val output_bitcode : ?unbuffered:bool -> out_channel -> Llvm.llmodule -> bool
  /external/swiftshader/third_party/LLVM/bindings/ocaml/bitwriter/
llvm_bitwriter.mli 30 val output_bitcode : ?unbuffered:bool -> out_channel -> Llvm.llmodule -> bool
  /system/update_engine/
dbus_service.cc 107 string* out_channel) {
108 return common_->GetChannel(error, in_get_current_channel, out_channel);
common_service.h 92 std::string* out_channel);
binder_service_brillo.h 68 android::String16* out_channel) override;
dbus_service.h 93 std::string* out_channel) override;
binder_service_brillo.cc 114 String16* out_channel) {
119 *out_channel = String16(channel_string.c_str());
image_properties_android.cc 108 // Read channel from misc partition to |out_channel|, return false if unable to
110 bool ReadChannelFromMisc(string* out_channel) {
130 out_channel->assign(channel);
common_service.cc 191 string* out_channel) {
193 *out_channel =
  /external/tensorflow/tensorflow/core/kernels/
conv_ops_using_gemm.cc 132 for (int out_channel = 0; out_channel < filter_count; ++out_channel) {
178 (in_channel * filter_count) + out_channel];
185 (out_x * filter_count) + out_channel] = total;
quantized_conv_ops.cc 109 for (int out_channel = 0; out_channel < filter_count; ++out_channel) {
159 (in_channel * filter_count) + out_channel];
178 (out_x * filter_count) + out_channel] = clamped_output;
depthwise_conv_op_gpu.cu.cc 93 const int out_channel = thread_id % out_depth;
98 const int in_channel = out_channel / depth_multiplier;
99 const int multiplier = out_channel % depth_multiplier;
337 const int out_channel = (thread_id / out_width / out_height) % out_depth;
343 const int in_channel = out_channel / depth_multiplier;
344 const int multiplier = out_channel % depth_multiplier;
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/reference/
reference_ops.h 182 for (int out_channel = 0; out_channel < output_depth; ++out_channel) {
199 filter_y, out_channel)];
207 bias_value = bias_data[Offset(bias_dims, out_channel, 0, 0, 0)];
209 output_data[Offset(output_dims, out_channel, out_x, out_y, batch)] =
276 for (int out_channel = 0; out_channel < output_depth; ++out_channel) {
293 filter_y, out_channel)];
    [all...]

Completed in 379 milliseconds