Home
last modified time | relevance | path

Searched refs:new_handle (Results 1 – 12 of 12) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Dchannel_tracker.cc44 ChannelHandle new_handle = AllocateHandle(type); in NewChannel() local
51 opaque_to_channel_[new_handle.handle()] = channel; in NewChannel()
53 return new_handle; in NewChannel()
/external/python/cpython2/Lib/multiprocessing/
Dreduction.py70 new_handle = duplicate(handle, process_handle)
71 conn.send(new_handle)
157 new_handle = recv_handle(conn)
159 return new_handle
/external/libchrome/mojo/public/cpp/platform/tests/
Dplatform_handle_unittest.cc207 auto new_handle = std::move(test_handle()); in TEST_P() local
209 EXPECT_TRUE(new_handle.is_valid()); in TEST_P()
211 EXPECT_EQ(kTestData, GetObjectContents(new_handle)); in TEST_P()
/external/autotest/client/bin/net/
Dnet_tc.py50 def new_handle(): function
356 def __init__(self, handle=new_handle(), bands=3):
386 def __init__(self, handle=new_handle()):
398 def __init__(self, handle=new_handle()):
/external/libchrome/mojo/core/test/
Dmojo_test_base.cc206 MojoHandle new_handle; in DuplicateBuffer() local
213 MojoDuplicateBufferHandle(h, &options, &new_handle)); in DuplicateBuffer()
214 return new_handle; in DuplicateBuffer()
/external/u-boot/lib/efi_loader/
Defi_file.c194 struct efi_file_handle **new_handle, in efi_file_open() argument
199 EFI_ENTRY("%p, %p, \"%ls\", %llx, %llu", file, new_handle, file_name, in efi_file_open()
202 *new_handle = file_open(fh->fs, fh, file_name, open_mode); in efi_file_open()
203 if (!*new_handle) in efi_file_open()
/external/python/cpython3/Lib/multiprocessing/
Dspawn.py99 new_handle = reduction.steal_handle(parent_pid, pipe_handle)
100 fd = msvcrt.open_osfhandle(new_handle, os.O_RDONLY)
/external/tensorflow/tensorflow/c/
Dc_api.cc940 string new_handle; in TF_PRunSetup() local
942 target_oper_names, &new_handle); in TF_PRunSetup()
944 char* buf = new char[new_handle.size() + 1]; in TF_PRunSetup()
945 memcpy(buf, new_handle.c_str(), new_handle.size() + 1); in TF_PRunSetup()
2747 string new_handle; in TF_SessionPRunSetup() local
2749 target_names, &new_handle); in TF_SessionPRunSetup()
2751 char* buf = new char[new_handle.size() + 1]; in TF_SessionPRunSetup()
2752 memcpy(buf, new_handle.c_str(), new_handle.size() + 1); in TF_SessionPRunSetup()
/external/tensorflow/tensorflow/python/kernel_tests/
Dresource_variable_ops_test.py611 new_handle = array_ops.identity(handle)
618 return new_handle, grad
626 new_handle = differentiable_scatter_update(var.handle, indices, updates)
628 new_handle, indices, dtype=var.dtype)
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tensor.cc96 TFE_TensorHandle* new_handle = in CopyToDevice() local
106 return new_handle; in CopyToDevice()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_batchbuffer.c295 uint32_t old_handle, uint32_t new_handle) in replace_bo_in_reloc_list() argument
299 rlist->relocs[i].target_handle = new_handle; in replace_bo_in_reloc_list()
/external/u-boot/include/
Defi_api.h861 struct efi_file_handle **new_handle,