HomeSort by relevance Sort by last modified time
    Searched refs:handle_ (Results 101 - 125 of 161) sorted by null

1 2 3 45 6 7

  /external/tensorflow/tensorflow/core/kernels/
tensor_array.cc 92 handle_.vec<string>()(1), " has size ", tensors_.size(), " but rhs ",
93 rhs->handle_.vec<string>()(1), " has size ", rhs->tensors_.size());
critical_section.cc 125 FunctionLibraryRuntime::Handle handle_; member in class:tensorflow::ExecuteInCriticalSectionOp::Closure
136 handle_(-1),
177 &handle_);
192 function_library->Run(opts_, handle_, arguments_t_, &output_t_,
queue_ops.cc 457 &handle_, nullptr));
462 handle_.AccessTensor(context)->flat<string>()(0) = ref.container();
463 handle_.AccessTensor(context)->flat<string>()(1) = ref.name();
464 context->set_output_ref(0, &mu_, handle_.AccessTensor(context));
469 PersistentTensor handle_; member in class:tensorflow::FakeQueueOp
  /device/google/cuttlefish_common/guest/commands/usbforward/
usb_server.h 82 std::shared_ptr<libusb_device_handle> handle_; member in class:usb_forward::final
  /frameworks/base/tools/aapt2/io/
ZipArchive.h 76 ZipArchiveHandle handle_; member in class:aapt::io::ZipFileCollection
  /external/google-breakpad/src/common/windows/
http_upload.cc 51 explicit AutoInternetHandle(HINTERNET handle) : handle_(handle) {}
53 if (handle_) {
54 InternetCloseHandle(handle_);
58 HINTERNET get() { return handle_; }
61 HINTERNET handle_; member in class:google_breakpad::HTTPUpload::AutoInternetHandle
  /external/tensorflow/tensorflow/contrib/data/kernels/
prefetching_kernels.cc 52 handle_(kInvalidHandle),
82 if (handle_ != kInvalidHandle) {
89 &handle_);
142 handle = handle_;
231 FunctionLibraryRuntime::Handle handle_ GUARDED_BY(mu_);
  /external/google-breakpad/src/testing/gtest/src/
gtest-internal-inl.h 978 HANDLE handle_; member in class:testing::internal::AutoHandle
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-internal-inl.h 963 HANDLE handle_; member in class:testing::internal::AutoHandle
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-internal-inl.h 991 HANDLE handle_; member in class:testing::internal::AutoHandle
    [all...]
  /external/perfetto/include/perfetto/protozero/
message.h 91 void set_handle(MessageHandleBase* handle) { handle_ = handle; }
212 MessageHandleBase* handle_; member in class:protozero::Message
  /external/protobuf/gtest/src/
gtest-internal-inl.h 1002 HANDLE handle_; member in class:testing::internal::AutoHandle
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-internal-inl.h 960 HANDLE handle_; member in class:testing::internal::AutoHandle
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
master_session.h 64 const string& handle() const { return handle_; }
111 const string handle_; member in class:tensorflow::MasterSession
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/src/
gtest-internal-inl.h 985 HANDLE handle_; member in class:testing::internal::AutoHandle
    [all...]
  /system/core/adb/
transport.h 93 explicit UsbConnection(usb_handle* handle) : handle_(handle) {}
101 usb_handle* handle_; member in struct:UsbConnection
  /system/extras/simpleperf/
utils.h 98 return handle_;
102 ZipArchiveHandle handle_; member in class:ArchiveHelper
  /external/libchrome/base/memory/
shared_memory_handle.h 60 // Whether handle_ needs to be duplicated into the destination process when
71 HANDLE handle_;
73 // The process in which |handle_| is valid and can be used. If |handle_| is
78 // ownership of |handle_| to the IPC stack. This is meant to mimic the
  /external/tensorflow/tensorflow/stream_executor/cuda/
cuda_dnn.cc 434 : parent_(parent), handle_(nullptr) {
435 cudnnStatus_t status = wrap::cudnnCreateTensorDescriptor(parent_, &handle_);
459 parent_, handle_, elem_type, nd, dims.data(), strides.data());
470 parent_, handle_, CUDNN_TENSOR_NCHW_VECT_C, elem_type,
488 cudnnStatus_t status = wrap::cudnnDestroyTensorDescriptor(parent_, handle_);
495 cudnnTensorDescriptor_t handle() const { return handle_; }
499 cudnnTensorDescriptor_t handle_; // Owned. member in class:perftools::gputools::cuda::ScopedTensorDescriptor
511 : parent_(parent), handle_(nullptr) {
512 cudnnStatus_t status = wrap::cudnnCreateFilterDescriptor(parent_, &handle_);
546 status = wrap::cudnnSetFilterNdDescriptor(parent_, handle_, elem_type
572 cudnnFilterDescriptor_t handle_; member in class:perftools::gputools::cuda::ScopedFilterDescriptor
688 cudnnConvolutionDescriptor_t handle_; \/\/ Owned. member in class:perftools::gputools::cuda::ScopedConvolutionDescriptor
748 cudnnPoolingDescriptor_t handle_; \/\/ Owned. member in class:perftools::gputools::cuda::ScopedPoolingDescriptor
804 cudnnLRNDescriptor_t handle_; \/\/ Owned. member in class:perftools::gputools::cuda::ScopedNormalizeDescriptor
872 cudnnActivationDescriptor_t handle_; \/\/ Owned. member in class:perftools::gputools::cuda::ScopedActivationDescriptor
1033 cudnnDropoutDescriptor_t handle_; member in class:perftools::gputools::cuda::CudnnDropoutDescriptor
1066 cudnnFilterDescriptor_t handle_; member in class:perftools::gputools::cuda::CudnnRnnParamsDescriptor
1403 cudnnTensorDescriptor_t handle_; member in class:perftools::gputools::cuda::CudnnRnnStateTensorDescriptor
    [all...]
  /frameworks/native/libs/vr/libbufferhubqueue/benchmarks/
buffer_transport_benchmark.cpp 209 handle_ = dlopen("libdvr.so", RTLD_NOW | RTLD_LOCAL);
210 CHECK(handle_);
213 reinterpret_cast<decltype(&dvrGetApi)>(dlsym(handle_, "dvrGetApi"));
219 ~DvrApi() { dlclose(handle_); }
224 void* handle_ = nullptr; member in class:DvrApi
  /system/tpm/attestation/server/
pkcs11_key_store.cc 58 explicit ScopedSession(CK_SLOT_ID slot) : handle_(CK_INVALID_HANDLE) {
66 if (C_OpenSession(slot, flags, nullptr, nullptr, &handle_) != CKR_OK) {
73 if (IsValid() && (C_CloseSession(handle_) != CKR_OK)) {
75 handle_ = CK_INVALID_HANDLE;
79 CK_SESSION_HANDLE handle() const { return handle_; }
81 bool IsValid() const { return (handle_ != CK_INVALID_HANDLE); }
84 CK_SESSION_HANDLE handle_; member in class:attestation::ScopedSession
  /external/vulkan-validation-layers/tests/
vktestbinding.h 87 const T &handle() const { return handle_; }
88 bool initialized() const { return (handle_ != T{}); }
93 explicit Handle() : handle_{} {}
94 explicit Handle(T handle) : handle_(handle) {}
101 Handle(Handle &&src) NOEXCEPT : handle_{src.handle_} { src.handle_ = {}; }
103 handle_ = src.handle_;
104 src.handle_ = {}
114 T handle_; member in class:vk_testing::internal::Handle
    [all...]
  /external/google-breakpad/src/client/windows/crash_generation/
minidump_generator.cc 94 ULONG64 handle_; member in class:__anon20758::HandleTraceData
96 // List of handle operations for |handle_|.
106 handle_(NULL) {
155 // Now that |handle_| is initialized, purge all irrelevant operations.
159 if (i->Handle == handle_) {
237 self->handle_ = description->Handle;
  /external/libmojo/mojo/public/cpp/bindings/
interface_endpoint_client.h 162 ScopedInterfaceEndpointHandle handle_; member in class:mojo::InterfaceEndpointClient
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_compilation_device.cc 130 handle_ = h;

Completed in 884 milliseconds

1 2 3 45 6 7