Home
last modified time | relevance | path

Searched refs:new_in (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/compiler/jit/
Dclone_constants_for_better_clustering.cc42 Node* new_in = g->AddNode(new_in_def, &s); in CloneNode() local
47 g->AddControlEdge(e->src(), new_in); in CloneNode()
49 g->AddEdge(e->src(), e->src_output(), new_in, e->dst_input()); in CloneNode()
53 new_in->set_assigned_device_name(n->assigned_device_name()); in CloneNode()
54 return new_in; in CloneNode()
/external/rust/crates/hashbrown/src/raw/
Dmod.rs404 table: RawTableInner::new_in(Global), in new()
431 pub fn new_in(alloc: A) -> Self { in new_in() method
433 table: RawTableInner::new_in(alloc), in new_in()
610 *self = Self::new_in(self.table.alloc.clone()); in shrink_to()
1077 table: ManuallyDrop::new(mem::replace(self, Self::new_in(self.table.alloc.clone()))), in drain_iter_from()
1129 const fn new_in(alloc: A) -> Self { in new_in() method
1180 Ok(Self::new_in(alloc)) in fallible_with_capacity()
1472 Self::new_in(self.table.alloc.clone()) in clone()
1500 *self = Self::new_in(self.table.alloc.clone()); in clone_from()
1655 Self::new_in(Default::default()) in default()
/external/rust/crates/which/src/
Dlib.rs130 pub fn new_in<T, U, V>(binary_name: T, paths: Option<U>, cwd: V) -> Result<Path> in new_in() method
255 pub fn new_in<T, U, V>(binary_name: T, paths: Option<U>, cwd: V) -> Result<CanonicalPath> in new_in() method
/external/rust/crates/hashbrown/src/
Dlib.rs159 let mut map = HashMap::new_in(BumpWrapper(&bump)); in test_bumpalo()
Dset.rs185 pub fn new_in(alloc: A) -> Self { in new_in() method
187 map: HashMap::new_in(alloc), in new_in()
Dmap.rs314 pub fn new_in(alloc: A) -> Self { in new_in() method
422 table: RawTable::new_in(alloc), in with_hasher_in()
/external/rust/crates/which/tests/
Dbasic.rs87 which::CanonicalPath::new_in(path, Some(f.paths.clone()), f.tempdir.path()) in _which()
/external/rust/crates/nix/test/
Dtest_unistd.rs1009 let file = tempfile::NamedTempFile::new_in("/var/tmp").unwrap(); in test_setfsuid()