/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/ |
H A D | DebuggeeRegister.java | 47 LinkedList<DebuggeeWrapper> registered = new LinkedList<DebuggeeWrapper>(); field in class:DebuggeeRegister 56 registered.add(debuggee); 63 * returns true if debuggee was registered 66 return registered.remove(debuggee); 70 * Returns list of all registered DebuggeeWrappers. 75 return registered; 79 * Stops each of registered DebuggeeWrappers by invoking DebuggeeWrapper.stop(). 82 for (DebuggeeWrapper wrapper : registered) { 87 registered.clear();
|
/external/mesa3d/src/egl/main/ |
H A D | eglglobals.c | 89 static EGLBoolean registered = EGL_FALSE; local 93 if (!registered) { 95 registered = EGL_TRUE;
|
/external/tensorflow/tensorflow/core/framework/ |
H A D | cancellation_test.cc | 29 bool registered = manager->RegisterCallback( local 31 EXPECT_TRUE(registered); 42 bool registered = manager->RegisterCallback( local 44 EXPECT_TRUE(registered); 54 bool registered = manager->RegisterCallback(token, nullptr); local 55 EXPECT_FALSE(registered); 63 bool registered = manager->RegisterCallback( local 65 EXPECT_TRUE(registered);
|
/external/python/cpython2/Lib/xml/dom/ |
H A D | domreg.py | 16 # DOM implementations not officially registered should register 19 registered = {} variable 30 registered[name] = factory 59 return registered[name]() 67 for creator in registered.values():
|
/external/python/cpython3/Lib/xml/dom/ |
H A D | domreg.py | 14 # DOM implementations not officially registered should register 17 registered = {} variable 28 registered[name] = factory 57 return registered[name]() 65 for creator in registered.values():
|
/external/clang/test/Driver/ |
H A D | as-default-dwarf.s | 1 @ REQUIRES: arm-registered-target
|
H A D | as-dwarf-cie.s | 1 # REQUIRES: x86-registered-target
|
/external/webrtc/webrtc/test/channel_transport/ |
H A D | channel_transport.cc | 35 int registered = voe_network_->RegisterExternalTransport(channel, local 38 EXPECT_EQ(0, registered); 40 assert(registered == 0);
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
H A D | RegistryParser.h | 42 void registered(const entry &E) { function in class:llvm::RegistryParser
|
H A D | Registry.h | 70 Cur->registered(E); 125 /// void registered(const Registry<Collector>::entry &e) { 130 /// CollectorPrinter() { init(); } // Print those already registered. 143 virtual void registered(const entry &) = 0; 145 /// Calls 'registered' for each pre-existing entry. 149 registered(*I); 181 /// 1. The registered subclass has a default constructor.
|
/external/webrtc/webrtc/audio/ |
H A D | audio_receive_stream.cc | 102 bool registered = rtp_header_parser_->RegisterRtpHeaderExtension( local 104 RTC_DCHECK(registered); 107 bool registered = rtp_header_parser_->RegisterRtpHeaderExtension( local 109 RTC_DCHECK(registered); 111 bool registered = rtp_header_parser_->RegisterRtpHeaderExtension( local 113 RTC_DCHECK(registered);
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/ |
H A D | BluetoothHidDeviceFacade.java | 165 public void onAppStatusChanged(BluetoothDevice pluggedDevice, boolean registered) { 166 Log.d("onAppStatusChanged: pluggedDevice=" + pluggedDevice + " registered=" 167 + registered); 169 result.putBoolean("registered", registered); 214 result.putByte("registered", reportId); 366 * @return true if successfully registered the app; otherwise false
|
/external/swiftshader/third_party/LLVM/lib/Support/Unix/ |
H A D | Signals.inc | 99 // If the handlers are already registered, we're done.
|
/external/tensorflow/tensorflow/contrib/verbs/ |
H A D | README.md | 30 3. Following HKUST research on the use of GPU direct, and their [GDR implementation](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/gdr/README.md), there is a smart way to benefit from the TensorFlow allocation theme which is mostly pool based, i.e allocators pre-allocate a large memory block, and allocate the tensors from there. By attaching a custom Visitor to relevant allocators, we can do a single registration of the entire memory block, which zeros the registration overhead. Once the block is registered, each new tensor allocated will be at a registered address, which will allow us to do direct RDMA writes to it. 35 2. Non DMAable tensors (CanMemCopy == false) will be serialized to a TensorProto on the sender side, RDMA written to a registered buffer on the receiver side, and then deserialized by the receiver. 36 3. Tensors which are located on a non-RDMA-compatible GPU, will be RDMA written to a registered CPU **proxy** buffer on the receiver side, and then copied to GPU by the receiver. 108 * **class RdmaMemoryMgr** - Manages the meta-data cache, and the registered memory regions.
|
H A D | patch_notes_verbs_with_0_copies.md | 14 2. Non DMAble tensors (CanMemCopy == false) will be serialized to proto on the sender side, RDMA written to a registered buffer on the receiver side, and then deserialized by the receiver. 15 3. Tensors which are located on a non-RDMA-compatible GPU, will be RDMA written to a registered CPU proxy buffer on the receiver side, and then copied to GPU by the receiver. 39 * **class RdmaMemoryMgr** - Manages the meta-data cache, and the registered memory regions.
|
/external/llvm/bindings/ocaml/target/ |
H A D | llvm_target.mli | 138 (** [first ()] returns the first target in the registered targets 150 registered, or [None] otherwise. *) 154 [Error] if [triple] does not correspond to a registered target. *)
|
/external/libchrome/base/metrics/ |
H A D | field_trial.cc | 662 for (const auto& registered : global_->registered_) { 664 if (!registered.second->GetStateWhileLocked(&trial)) 1116 for (const auto& registered : global_->registered_) { 1117 AddToAllocatorWhileLocked(allocator, registered.second); 1243 for (const auto& registered : global_->registered_) { 1245 registered.second);
|
H A D | persistent_histogram_allocator.h | 249 // processes if |registered| (as in: added to the StatisticsRecorder) is 251 void FinalizeHistogram(Reference ref, bool registered);
|
H A D | persistent_histogram_allocator.cc | 419 bool registered) { 420 if (registered) { 421 // If the created persistent histogram was registered then it needs to 427 // If it wasn't registered then a race condition must have caused two to 418 FinalizeHistogram(Reference ref, bool registered) argument
|
/external/python/cpython3/Lib/asyncio/ |
H A D | selector_events.py | 369 def _sock_recv(self, fut, registered, sock, n): 373 if registered: 410 def _sock_sendall(self, fut, registered, sock, data): 413 if registered: 483 # socket is still registered, the callback will be retried later 506 def _sock_accept(self, fut, registered, sock): 508 if registered:
|
/external/mesa3d/docs/specs/OLD/ |
H A D | MESA_program_debug.spec | 175 callback functions registered with these targets will be called 221 called from within a callback function registered with
|
/external/libchrome/base/ |
H A D | tracked_objects.cc | 459 ThreadData* registered = reinterpret_cast<ThreadData*>(tls_index_.Get()); 460 if (registered) 461 return registered; 482 // The list_lock_ was created when we registered the callback, so it won't be
|
/external/ImageMagick/www/api/ |
H A D | module.php | 342 <p>RegisterModule() adds an entry to the module list. It returns a pointer to the registered entry on success.</p> 359 <dd>a pointer to the registered entry is returned. </dd>
|
/external/dtc/Documentation/ |
H A D | dtc-paper.tex | 586 trademarks or registered trademarks of International Business Machines 589 Apple and Power Macintosh are a registered trademarks of Apple 592 Linux is a registered trademark of Linus Torvalds.
|
/external/minijail/ |
H A D | common.mk | 50 # If source code is being generated, rules will need to be registered for 761 @# and another script starts executing before it gets re-registered, however
|