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

1 2 3 4 56 7

  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_session.h 108 // handle_ returned by the master to identify this session.
109 string handle_ GUARDED_BY(mu_);
  /external/googletest/googletest/src/
gtest-port.cc 184 : handle_(INVALID_HANDLE_VALUE) {}
187 : handle_(handle) {}
194 return handle_;
203 if (handle_ != handle) {
205 ::CloseHandle(handle_);
207 handle_ = handle;
218 return handle_ != NULL && handle_ != INVALID_HANDLE_VALUE;
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-port.cc 184 : handle_(INVALID_HANDLE_VALUE) {}
187 : handle_(handle) {}
194 return handle_;
203 if (handle_ != handle) {
205 ::CloseHandle(handle_);
207 handle_ = handle;
218 return handle_ != NULL && handle_ != INVALID_HANDLE_VALUE;
    [all...]
  /external/v8/src/interpreter/
constant-array-builder.h 115 handle_ = handle;
124 Handle<Object> handle_; member in union:v8::internal::interpreter::BASE_EMBEDDED::Entry::__anon41064
constant-array-builder.cc 312 return handle_;
  /external/v8/testing/gtest/src/
gtest-port.cc 166 : handle_(INVALID_HANDLE_VALUE) {}
169 : handle_(handle) {}
176 return handle_;
185 if (handle_ != handle) {
187 ::CloseHandle(handle_);
189 handle_ = handle;
200 return handle_ != NULL && handle_ != INVALID_HANDLE_VALUE;
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-port.cc 143 : handle_(INVALID_HANDLE_VALUE) {}
146 : handle_(handle) {}
153 return handle_;
162 if (handle_ != handle) {
164 ::CloseHandle(handle_);
166 handle_ = handle;
177 return handle_ != NULL && handle_ != INVALID_HANDLE_VALUE;
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/src/
gtest-port.cc 143 : handle_(INVALID_HANDLE_VALUE) {}
146 : handle_(handle) {}
153 return handle_;
162 if (handle_ != handle) {
164 ::CloseHandle(handle_);
166 handle_ = handle;
177 return handle_ != NULL && handle_ != INVALID_HANDLE_VALUE;
    [all...]
  /system/core/libziparchive/
zip_archive_stream_entry.cc 85 ZipArchive* archive = reinterpret_cast<ZipArchive*>(handle_);
207 ZipArchive* archive = reinterpret_cast<ZipArchive*>(handle_);
  /external/tensorflow/tensorflow/contrib/lite/
nnapi_delegate.cc 54 mmap_fd_, 0, &handle_));
58 if (handle_) {
59 ANeuralNetworksMemory_free(handle_);
  /external/tensorflow/tensorflow/core/kernels/
stack_ops.cc 119 Tensor handle_; member in class:tensorflow::Stack
208 &stack->handle_, alloc_attr));
209 auto handle = stack->handle_.flat<string>();
212 ctx->set_output_ref(0, stack->mu(), &stack->handle_);
  /system/extras/simpleperf/
utils.cpp 82 int rc = OpenArchiveFd(fd, "", &handle_, false);
92 CloseArchive(handle_);
  /toolchain/binutils/binutils-2.27/gold/
plugin.h 57 : handle_(NULL),
112 void* handle_; member in class:gold::Plugin
plugin.cc 196 this->handle_ = dlopen(this->filename_.c_str(), RTLD_NOW);
197 if (this->handle_ == NULL)
205 void* ptr = dlsym(this->handle_, "onload");
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/
vktestbinding.h 67 const T &handle() const { return handle_; }
68 bool initialized() const { return (handle_ != VK_NULL_HANDLE); }
73 explicit Handle() : handle_(VK_NULL_HANDLE) {}
74 explicit Handle(T handle) : handle_(handle) {}
78 handle_ = handle;
86 T handle_; member in class:vk_testing::internal::Handle
  /external/tensorflow/tensorflow/core/platform/hadoop/
hadoop_file_system.cc 121 status_ = TryLoadAndBind(path.c_str(), &handle_);
125 status_ = TryLoadAndBind(kLibHdfsDso, &handle_);
130 void* handle_ = nullptr; member in class:tensorflow::LibHDFS
  /bionic/linker/
linker_soinfo.h 364 uintptr_t handle_; member in struct:soinfo
  /external/webrtc/webrtc/base/
fileutils.h 82 HANDLE handle_; member in class:rtc::DirectoryIterator
  /art/runtime/
java_vm_ext.cc 72 handle_(handle),
89 android::CloseNativeLibrary(handle_, needs_native_bridge_);
166 return dlsym(handle_, symbol_name.c_str());
174 return android::NativeBridgeGetTrampoline(handle_, symbol_name.c_str(), shorty, len);
188 void* const handle_; member in class:art::SharedLibrary
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
master_session.cc     [all...]
  /external/drm_hwcomposer/
drmhwctwo.h 203 hwc2_display_t handle_; member in class:android::DrmHwcTwo::HwcDisplay
drmhwctwo.cpp 168 handle_(handle),
181 int display = static_cast<int>(handle_);
490 map.display = static_cast<int>(handle_);
    [all...]
  /external/tensorflow/tensorflow/contrib/cudnn_rnn/kernels/
cudnn_rnn_ops.cc 325 DT_UINT8, TensorShape({byte_size}), &handle_, nullptr);
330 return AsDeviceMemory<uint8>(handle_.AccessTensor(context_));
336 PersistentTensor handle_; member in class:tensorflow::TFRNNInputMode::__anon39163::CudnnRNNPersistentSpaceAllocator
    [all...]
  /external/tensorflow/tensorflow/stream_executor/cuda/
cuda_blas.cc 338 : parent_(parent), handle_(handle), ok_(false) {}
346 wrap::cublasGetPointerMode(parent_, handle_, &old_mode_);
352 ret = wrap::cublasSetPointerMode(parent_, handle_, new_mode);
366 wrap::cublasSetPointerMode(parent_, handle_, old_mode_);
376 cublasHandle_t handle_; // Handle to the cuBLAS instance of interest. member in class:perftools::gputools::cuda::ScopedCublasPointerMode
399 : parent_(parent), handle_(handle), ok_(false) {}
406 cublasStatus_t ret = wrap::cublasGetMathMode(parent_, handle_, &old_mode_);
412 ret = wrap::cublasSetMathMode(parent_, handle_, new_mode);
424 cublasStatus_t ret = wrap::cublasSetMathMode(parent_, handle_, old_mode_);
434 cublasHandle_t handle_; // Handle to the cuBLAS instance of interest member in class:perftools::gputools::cuda::ScopedCublasMathMode
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
function.cc 288 : AsyncOpKernel(ctx), handle_(handle) {}
310 lib->Run(opts, handle_, args, rets,
327 FunctionLibraryRuntime::Handle handle_; member in class:tensorflow::CallOp
    [all...]

Completed in 3602 milliseconds

1 2 3 4 56 7