/third_party/mesa3d/src/util/ |
H A D | sparse_array.c | 143 uintptr_t new_root = _util_sparse_array_node_alloc(arr, root_level); in util_sparse_array_get() local 145 NULL_NODE, new_root); in util_sparse_array_get() 157 uintptr_t new_root = _util_sparse_array_node_alloc(arr, root_level + 1); in util_sparse_array_get() local 159 uintptr_t *new_root_children = _util_sparse_array_node_data(new_root); in util_sparse_array_get() 168 root = _util_sparse_array_set_or_free_node(&arr->root, root, new_root); in util_sparse_array_get()
|
/third_party/ltp/testcases/kernel/security/tomoyo/ |
H A D | include.h | 74 static inline int pivot_root(const char *new_root, const char *put_old) in pivot_root() argument 76 return syscall(__NR_pivot_root, new_root, put_old); in pivot_root() 79 static inline int pivot_root(const char *new_root, const char *put_old) in pivot_root() argument
|
/third_party/python/Lib/distutils/ |
H A D | util.py | 138 def change_root (new_root, pathname): 139 """Return 'pathname' with 'new_root' prepended. If 'pathname' is 140 relative, this is equivalent to "os.path.join(new_root,pathname)". 146 return os.path.join(new_root, pathname) 148 return os.path.join(new_root, pathname[1:]) 154 return os.path.join(new_root, path)
|
/third_party/python/Lib/importlib/ |
H A D | _bootstrap_external.py | 104 for new_root, tail in map(_os._path_splitroot, path_parts): 105 if new_root.startswith(path_sep_tuple) or new_root.endswith(path_sep_tuple): 106 root = new_root.rstrip(path_separators) or root 108 elif new_root.endswith(':'): 109 if root.casefold() != new_root.casefold(): 112 root = new_root 117 root = new_root or root
|
/third_party/python/Python/ |
H A D | hamt.c | 2301 PyHamtNode *new_root; in _PyHamt_Assoc() local 2309 new_root = hamt_node_assoc( in _PyHamt_Assoc() 2312 if (new_root == NULL) { in _PyHamt_Assoc() 2316 if (new_root == o->h_root) { in _PyHamt_Assoc() 2317 Py_DECREF(new_root); in _PyHamt_Assoc() 2324 Py_DECREF(new_root); in _PyHamt_Assoc() 2328 new_o->h_root = new_root; /* borrow */ in _PyHamt_Assoc() 2342 PyHamtNode *new_root = NULL; in _PyHamt_Without() local 2347 &new_root); in _PyHamt_Without() 2358 assert(new_root ! in _PyHamt_Without() [all...] |
/third_party/skia/third_party/externals/freetype/src/psaux/ |
H A D | cffdecode.c | 1759 FT_Fixed new_root; in FT_LOCAL_DEF() local 1764 new_root = ( root + FT_DivFix( args[0], root ) + 1 ) >> 1; in FT_LOCAL_DEF() 1765 if ( new_root == root ) in FT_LOCAL_DEF() 1767 root = new_root; in FT_LOCAL_DEF() 1769 args[0] = new_root; in FT_LOCAL_DEF()
|
H A D | psintrp.c | 2280 FT_Fixed new_root; in cf2_interpT2CharString() local 2286 new_root = ( root + FT_DivFix( arg, root ) + 1 ) >> 1; in cf2_interpT2CharString() 2287 if ( new_root == root ) in cf2_interpT2CharString() 2289 root = new_root; in cf2_interpT2CharString() 2291 arg = new_root; in cf2_interpT2CharString()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-repacker.hh | 1063 for (unsigned new_root : roots) in _try_isolating_subgraphs() 1064 sorted_graph.move_to_new_space (new_root); in _try_isolating_subgraphs()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_shader.h | 189 void reset_function(ShaderBlocks& new_root);
|
H A D | sfn_shader.cpp | 1436 void Shader::reset_function(ShaderBlocks& new_root) in reset_function() argument 1438 std::swap(m_root, new_root); in reset_function()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | btree.h | 2511 node_type *new_root = iter.node; 2512 new_root->transfer_n(old_root->count(), new_root->start(), 2514 new_root->set_finish(old_root->finish()); 2517 mutable_root() = rightmost_ = new_root;
|
/third_party/rust/crates/nix/src/ |
H A D | unistd.rs | 2751 new_root: &P1, put_old: &P2) -> Result<()> { in pivot_root() 2752 let res = new_root.with_nix_path(|new_root| { in pivot_root() 2755 libc::syscall(libc::SYS_pivot_root, new_root.as_ptr(), put_old.as_ptr()) in pivot_root()
|