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

1 2

  /external/tensorflow/tensorflow/core/common_runtime/
scoped_allocator_mgr.cc 23 const Tensor& backing_tensor, int32 scope_id, const string& scope_name,
27 << " step_id_=" << step_id_ << " scope_id=" << scope_id; local
30 auto it = allocators_.find(scope_id);
32 return errors::Internal("Cannot create ScopedAllocator because scope_id ",
33 scope_id, " for name ", scope_name,
37 if (allocators_.find(f.scope_id) != allocators_.end()) {
39 "Cannot create ScopedAllocator because field scope_id ", f.scope_id,
45 backing_tensor, scope_id, scope_name, fields, expected_call_count, this)
    [all...]
scoped_allocator_mgr.h 35 const Tensor& backing_tensor, int32 scope_id, const string& scope_name,
39 ScopedAllocatorInstance* GetInstance(int32 scope_id);
40 ScopedAllocator* GetAllocator(int32 scope_id);
42 // Retire the scope_id.
43 void Drop(int32 scope_id, ScopedAllocator* sa);
83 const Tensor& backing_tensor, int64 step_id, int32 scope_id,
91 // consecutive scope_id values following that of the base ScopedAllocator.
95 static size_t PopulateFields(int32 scope_id,
threadpool_device.cc 82 if (attr.scope_id > 0) {
84 attr.scope_id);
87 << "attr.scope_id = " << attr.scope_id;
scoped_allocator_mgr_test.cc 39 Status AddScopedAllocator(int expected_use_count, int scope_id) {
40 VLOG(2) << "Adding ScopedAllocator step_id " << step_id_ << " scope_id "
43 return sam_.AddScopedAllocator(backing_tensor_, step_id_, scope_id,
114 EXPECT_EQ(scope_id_ + 1, fields_[0].scope_id);
117 EXPECT_EQ(scope_id_ + 2, fields_[1].scope_id);
120 EXPECT_EQ(scope_id_ + 3, fields_[2].scope_id);
134 fields_[0].scope_id = scope_id_ + 1;
186 fields_[0].scope_id = scope_id_ + 1;
scoped_allocator.h 36 int32 scope_id; member in struct:tensorflow::ScopedAllocator::Field
46 ScopedAllocator(const Tensor& backing_tensor, int32 scope_id,
95 // When a ScopedAllocatorContainer "Drops" a scope_id, it calls DropFromTable
scoped_allocator.cc 20 ScopedAllocator::ScopedAllocator(const Tensor& backing_tensor, int32 scope_id,
27 id_(scope_id),
89 container_->Drop(f.scope_id, this);
  /external/v8/src/compiler-dispatcher/
compiler-dispatcher-tracer.h 22 #define COMPILER_DISPATCHER_TRACE_SCOPE_WITH_NUM(tracer, scope_id, num) \
24 CompilerDispatcherTracer::ScopeID::scope_id); \
29 #define COMPILER_DISPATCHER_TRACE_SCOPE(tracer, scope_id) \
30 COMPILER_DISPATCHER_TRACE_SCOPE_WITH_NUM(tracer, scope_id, 0)
38 Scope(CompilerDispatcherTracer* tracer, ScopeID scope_id, size_t num = 0);
compiler-dispatcher-tracer.cc 25 ScopeID scope_id, size_t num)
26 : tracer_(tracer), scope_id_(scope_id), num_(num) {
46 const char* CompilerDispatcherTracer::Scope::Name(ScopeID scope_id) {
47 switch (scope_id) {
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
address_v6.hpp 53 unsigned long scope_id = 0);
71 unsigned long scope_id() const function in class:asio::ip::address_v6
80 void scope_id(unsigned long id) function in class:asio::ip::address_v6
  /external/tensorflow/tensorflow/core/framework/
allocator.h 368 scope_id = (scope_id > 0 && other.scope_id == 0)
369 ? scope_id
370 : ((scope_id == 0) ? other.scope_id : 0);
385 int32 scope_id = 0; member in struct:tensorflow::AllocatorAttributes
  /external/openssh/
addrmatch.c 43 u_int32_t scope_id; /* iface scope id for v6 */ member in struct:xaddr
101 xa->scope_id = in6->sin6_scope_id;
163 dst->scope_id = a->scope_id;
193 if (a->scope_id == b->scope_id)
195 return a->scope_id > b->scope_id ? 1 : -1;
  /external/v8/src/heap/
gc-tracer.h 28 #define TRACE_GC(tracer, scope_id) \
29 GCTracer::Scope::ScopeId gc_tracer_scope_id(scope_id); \
34 #define TRACE_BACKGROUND_GC(tracer, scope_id) \
35 GCTracer::BackgroundScope background_scope(tracer, scope_id); \
37 GCTracer::BackgroundScope::Name(scope_id))
  /external/grpc-grpc/test/core/client_channel/
parse_address_test.cc 76 unsigned short port, uint32_t scope_id) {
89 GPR_ASSERT(addr_in6->sin6_scope_id == scope_id);
  /external/deqp-deps/SPIRV-Tools/source/opt/
upgrade_memory_model.h 118 // Returns true if |scope_id| is SpvScopeDevice.
119 bool IsDeviceScope(uint32_t scope_id);
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
upgrade_memory_model.h 118 // Returns true if |scope_id| is SpvScopeDevice.
119 bool IsDeviceScope(uint32_t scope_id);
  /external/webrtc/webrtc/base/
socketaddress.h 101 int scope_id() const {return scope_id_; } function in class:rtc::SocketAddress
socketaddress.cc 284 int scope_id) {
291 saddr->sin6_scope_id = scope_id;
network.cc 402 int scope_id = 0; local
431 scope_id =
456 network->set_scope_id(scope_id);
569 int scope_id = 0; local
582 scope_id = v6_addr->sin6_scope_id;
612 network->set_scope_id(scope_id);
network_unittest.cc 100 uint32_t scope_id) {
104 ipv6_addr->sin6_scope_id = scope_id;
116 uint32_t scope_id) {
121 CreateIpv6Addr(ipv6_address, scope_id));
201 bindaddress.SetScopeID((*it)->scope_id());
    [all...]
socketaddress_unittest.cc 223 EXPECT_EQ(6, addr.scope_id());
233 EXPECT_EQ(6, addr.scope_id());
  /external/iputils/
ping6.c 709 static uint32_t scope_id = 0; local
881 /* Verify scope_id is the same as previous nodes */
882 if (firsthop.sin6_scope_id && scope_id && firsthop.sin6_scope_id != scope_id) {
885 } else if (!scope_id) {
886 scope_id = firsthop.sin6_scope_id;
943 /* Verify scope_id is the same as intermediate nodes */
944 if (firsthop.sin6_scope_id && scope_id && firsthop.sin6_scope_id != scope_id) {
947 } else if (!scope_id) {
    [all...]
  /external/libpcap/
rpcap-protocol.h 282 uint32 scope_id; /* Scope zone index */ member in struct:rpcap_sockaddr_in6
  /external/grpc-grpc/test/core/iomgr/
sockaddr_utils_test.cc 61 static void set_addr6_scope_id(grpc_resolved_address* addr, uint32_t scope_id) {
64 addr6->sin6_scope_id = scope_id;
  /external/wpa_supplicant_8/src/common/
wpa_ctrl.c 375 int scope_id = 0; local
399 scope_id = if_nametoindex(&scope[1]);
416 ctrl->dest.sin6_scope_id = scope_id;
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
socket_ops.hpp 219 size_t length, unsigned long scope_id, asio::error_code& ec);
222 unsigned long* scope_id, asio::error_code& ec);

Completed in 1391 milliseconds

1 2