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

  /external/tensorflow/tensorflow/cc/framework/
grad_op_registry.cc 28 CHECK(registry_.insert({op, func}).second) << "Existing gradient for " << op;
33 auto iter = registry_.find(op);
34 if (iter == registry_.end()) {
grad_op_registry.h 54 std::unordered_map<string, GradFunc> registry_; member in class:tensorflow::ops::GradOpRegistry
gradients.cc 74 // Returns true if `opname` is registered in `registry_` with no gradient
102 const ops::GradOpRegistry* registry_; member in class:tensorflow::__anon38667::SymbolicGradientBuilder
145 registry_(registry),
375 Status s = registry_->Lookup(opname, &grad_fn);
384 TF_RETURN_IF_ERROR(registry_->Lookup(op.node()->type_string(), &grad_fn));
  /external/libmojo/mojo/public/cpp/bindings/lib/
sync_handle_watcher.cc 20 registry_(SyncHandleRegistry::current()),
26 registry_->UnregisterHandle(handle_);
48 bool result = registry_->WatchAllHandles(should_stop_array, 2);
62 registry_->RegisterHandle(handle_, handle_signals_, callback_);
71 registry_->UnregisterHandle(handle_);
  /external/libmojo/mojo/public/cpp/bindings/
sync_handle_watcher.h 64 scoped_refptr<SyncHandleRegistry> registry_; member in class:mojo::SyncHandleWatcher
  /external/tensorflow/tensorflow/core/lib/monitoring/
collection_registry.cc 75 const auto found_it = registry_.find(metric_def->name());
76 if (found_it != registry_.end()) {
80 registry_.insert(
90 registry_.erase(metric_def->name());
98 for (const auto& registration : registry_) {
collection_registry.h 188 std::map<StringPiece, CollectionInfo> registry_ GUARDED_BY(mu_);
  /external/tensorflow/tensorflow/core/framework/
op.cc 48 for (const auto& e : registry_) delete e.second;
70 res = gtl::FindWithDefault(registry_, op_type_name, nullptr);
108 for (const auto& p : registry_) {
128 registry_.begin(), registry_.end());
197 !gtl::InsertIfNotPresent(&registry_, op_reg_data->op_def.name(),
op.h 148 mutable std::unordered_map<string, const OpRegistrationData*> registry_
  /external/vulkan-validation-layers/demos/smoke/
ShellWayland.cpp 208 if (registry_) wl_registry_destroy(registry_);
217 registry_ = wl_display_get_registry(display_);
218 if (!registry_) throw std::runtime_error("failed to get registry");
220 wl_registry_add_listener(registry_, &ShellWayland::registry_listener, this);
ShellWayland.h 46 wl_registry *registry_; member in class:ShellWayland
  /external/tensorflow/tensorflow/core/platform/
env.cc 58 mutable std::unordered_map<string, std::unique_ptr<FileSystem>> registry_
65 if (!registry_.emplace(string(scheme), std::unique_ptr<FileSystem>(factory()))
75 const auto found = registry_.find(scheme);
76 if (found == registry_.end()) {
85 for (const auto& e : registry_) {
  /hardware/qcom/display/msm8909/sdm/libs/core/drm/
hw_device_drm.cpp 299 registry_(buffer_allocator) {
360 registry_.Clear();
615 uint32_t fb_id = registry_.GetFbId(input_buffer->planes[0].fd);
675 registry_.RegisterCurrent(hw_layers);
691 registry_.RegisterCurrent(hw_layers);
699 registry_.UnregisterNext();
741 uint32_t fb_id = registry_.GetFbId(hw_layer_info.hw_layers.at(0).input_buffer.planes[0].fd);
    [all...]
hw_device_drm.h 163 Registry registry_; member in class:sdm::HWDeviceDRM
  /hardware/qcom/display/msm8909w_3100/sdm/libs/core/drm/
hw_device_drm.cpp 299 registry_(buffer_allocator) {
355 registry_.Clear();
610 uint32_t fb_id = registry_.GetFbId(input_buffer->planes[0].fd);
670 registry_.RegisterCurrent(hw_layers);
686 registry_.RegisterCurrent(hw_layers);
694 registry_.UnregisterNext();
736 uint32_t fb_id = registry_.GetFbId(hw_layer_info.hw_layers.at(0).input_buffer.planes[0].fd);
    [all...]
hw_device_drm.h 163 Registry registry_; member in class:sdm::HWDeviceDRM
  /external/gflags/src/
gflags.cc 981 FlagRegistry* const registry_; member in class:GFLAGS_NAMESPACE::__anon20702::CommandLineFlagParser
    [all...]
  /external/protobuf/src/google/protobuf/
extension_set.cc 81 ExtensionRegistry* registry_ = NULL; member in namespace:google::protobuf::internal::__anon32348
85 delete registry_;
86 registry_ = NULL;
90 registry_ = new ExtensionRegistry;
100 if (!InsertIfNotPresent(registry_, std::make_pair(containing_type, number),
110 return (registry_ == NULL)
112 : FindOrNull(*registry_, std::make_pair(containing_type, number));
    [all...]
  /external/protobuf/js/
message.js     [all...]

Completed in 330 milliseconds