/third_party/node/deps/icu-small/source/common/ |
H A D | lsr.h | 30 char *owned = nullptr; member 45 * copies those into owned memory, and aliases the region. 55 if (owned != nullptr) { in ~LSR()
|
/third_party/rust/crates/rustix/src/io/ |
H A D | procfs.rs | 257 .map(|(owned, stat)| (owned.as_fd(), stat)) in proc_self() 288 .map(|(owned, _stat)| owned.as_fd()) 325 .map(|(owned, stat)| (owned.as_fd(), stat)) in proc_self_fdinfo()
|
/third_party/selinux/libselinux/src/ |
H A D | regex.c | 321 int owned; /* member 322 * non zero if regex and pcre_extra is owned by this 347 (*regex)->owned = 1; in regex_prepare_data() 381 (*regex)->owned = 0; in regex_load_mmap() 425 if (regex->owned) { in get_pcre_extra() 487 if (regex->owned) { in regex_data_free()
|
/kernel/linux/linux-5.10/drivers/infiniband/hw/qib/ |
H A D | qib_sd7220.c | 556 int owned = 0; in epb_access() local 585 owned = !!(accval & EPB_ACC_GNT); in epb_access() 601 owned = -1; in epb_access() 613 owned = -1; in epb_access() 615 return owned; in epb_access() 661 int owned; in qib_sd7220_reg_mod() local 685 owned = epb_access(dd, sdnum, 1); in qib_sd7220_reg_mod() 686 if (owned < 0) { in qib_sd7220_reg_mod() 752 int owned; in qib_sd7220_ram_xfer() local 779 owned in qib_sd7220_ram_xfer() [all...] |
/kernel/linux/linux-6.6/drivers/infiniband/hw/qib/ |
H A D | qib_sd7220.c | 556 int owned = 0; in epb_access() local 585 owned = !!(accval & EPB_ACC_GNT); in epb_access() 601 owned = -1; in epb_access() 613 owned = -1; in epb_access() 615 return owned; in epb_access() 661 int owned; in qib_sd7220_reg_mod() local 685 owned = epb_access(dd, sdnum, 1); in qib_sd7220_reg_mod() 686 if (owned < 0) { in qib_sd7220_reg_mod() 751 int owned; in qib_sd7220_ram_xfer() local 778 owned in qib_sd7220_ram_xfer() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | cord_rep_btree.cc | 200 inline bool owned(int depth) const { return depth < share_depth; } in owned() function 222 // Builds a stack with the invariant that all nodes are private owned / not 224 // guaranteed all nodes are owned / private. 286 const bool owned = depth < share_depth; in Unwind() local 290 result = node->AddEdge<edge_type>(owned, result.tree, length); in Unwind() 293 result = node->SetEdge<edge_type>(owned, result.tree, length); in Unwind() 431 inline OpResult CordRepBtree::AddEdge(bool owned, CordRep* edge, size_t delta) { in AddEdge() argument 433 OpResult result = ToOpResult(owned); in AddEdge() 440 OpResult CordRepBtree::SetEdge(bool owned, CordRep* edge, size_t delta) { in SetEdge() argument 443 if (owned) { in SetEdge() [all...] |
H A D | cord_rep_btree.h | 297 // Adds the edge `edge` to this node if possible. `owned` indicates if the 306 inline OpResult AddEdge(bool owned, CordRep* edge, size_t delta); 315 OpResult SetEdge(bool owned, CordRep* edge, size_t delta); 479 // depending on the value of `owned`. 480 inline OpResult ToOpResult(bool owned); 739 inline CordRepBtree::OpResult CordRepBtree::ToOpResult(bool owned) { in ToOpResult() argument 740 return owned ? OpResult{this, kSelf} : OpResult{Copy(), kCopied}; in ToOpResult()
|
/third_party/rust/crates/io-lifetimes/examples/ |
H A D | owning-wrapper.rs | 58 fn from(owned: Thing) -> Self { in from() 59 owned.filelike in from() 100 fn from(owned: Thing) -> Self { in from() 101 owned.filelike in from()
|
/third_party/rust/crates/proc-macro2/src/ |
H A D | rcvec.rs | 55 let vec = if let Some(owned) = Rc::get_mut(&mut self.inner) { in make_owned() 56 mem::take(owned) in make_owned()
|
/kernel/linux/linux-5.10/drivers/char/tpm/ |
H A D | tpm-sysfs.c | 173 sizeof(cap.owned))) in owned_show() 176 rc = sprintf(buf, "%d\n", cap.owned); in owned_show() 181 static DEVICE_ATTR_RO(owned);
|
/third_party/icu/icu4c/source/common/unicode/ |
H A D | localematcher.h | 276 int32_t desIndex, int32_t suppIndex, UBool owned) : in Result() 279 desiredIsOwned(owned) {} in Result() 275 Result(const Locale *desired, const Locale *supported, int32_t desIndex, int32_t suppIndex, UBool owned) Result() argument
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | localematcher.h | 276 int32_t desIndex, int32_t suppIndex, UBool owned) : in Result() 279 desiredIsOwned(owned) {} in Result() 275 Result(const Locale *desired, const Locale *supported, int32_t desIndex, int32_t suppIndex, UBool owned) Result() argument
|
/third_party/skia/src/sksl/ir/ |
H A D | SkSLProgram.h | 143 iterator(Owned owned, Owned ownedEnd, Shared shared, Shared sharedEnd) in iterator() argument 144 : fOwned(owned), fOwnedEnd(ownedEnd), fShared(shared), fSharedEnd(sharedEnd) {} in iterator() 169 // Can be used to iterate over *all* elements in this Program, both owned and shared (builtin). 191 // Contains *only* elements owned exclusively by this program. 193 // Contains *only* elements owned by a built-in module that are included in this program. 194 // Use elements() to iterate over the combined set of owned + shared elements.
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | localematcher.h | 276 int32_t desIndex, int32_t suppIndex, UBool owned) : in Result() 279 desiredIsOwned(owned) {} in Result() 275 Result(const Locale *desired, const Locale *supported, int32_t desIndex, int32_t suppIndex, UBool owned) Result() argument
|
/kernel/linux/linux-6.6/drivers/char/tpm/ |
H A D | tpm-sysfs.c | 173 sizeof(cap.owned))) in owned_show() 176 rc = sprintf(buf, "%d\n", cap.owned); in owned_show() 181 static DEVICE_ATTR_RO(owned);
|
/kernel/linux/linux-5.10/fs/erofs/ |
H A D | zdata.c | 104 * The current collection has been linked with the owned chain, and 317 * by the original owned chain. in try_to_claim_pcluster() 945 z_erofs_next_pcluster_t owned = io->head; in z_erofs_decompress_queue() local 947 while (owned != Z_EROFS_PCLUSTER_TAIL_CLOSED) { in z_erofs_decompress_queue() 950 /* no possible that 'owned' equals Z_EROFS_WORK_TPTR_TAIL */ in z_erofs_decompress_queue() 951 DBG_BUGON(owned == Z_EROFS_PCLUSTER_TAIL); in z_erofs_decompress_queue() 953 /* no possible that 'owned' equals NULL */ in z_erofs_decompress_queue() 954 DBG_BUGON(owned == Z_EROFS_PCLUSTER_NIL); in z_erofs_decompress_queue() 956 pcl = container_of(owned, struct z_erofs_pcluster, next); in z_erofs_decompress_queue() 957 owned in z_erofs_decompress_queue() [all...] |
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | listformatter.h | 276 ListFormatInternal* owned; member in ListFormatter
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | listformatter.h | 276 ListFormatInternal* owned; member in ListFormatter
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | listformatter.h | 280 ListFormatInternal* owned; member in ListFormatter
|
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/dispnv50/ |
H A D | crc.c | 361 * controlling wndw channel programmed to a wndw that's owned by our in nv50_crc_atomic_check_head() 365 !(BIT(asyh->crc.wndw) & asyh->wndw.owned)) { in nv50_crc_atomic_check_head() 366 if (!asyh->wndw.owned) { in nv50_crc_atomic_check_head() 370 * currently not-visible and owned by another head, in nv50_crc_atomic_check_head() 379 asyh->crc.wndw = ffs(asyh->wndw.owned) - 1; in nv50_crc_atomic_check_head()
|
/third_party/node/deps/v8/src/heap/ |
H A D | large-spaces.cc | 353 bool owned = (chunk->owner() == this); in Contains() local 355 SLOW_DCHECK(!owned || ContainsSlow(object.address())); in Contains() 357 return owned; in Contains()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | raw_hash_set_allocator_test.cc | 35 std::set<void*> owned; member 111 if (!state->owned.insert(ptr).second) in track_alloc() 115 if (state_->owned.erase(ptr) != 1) in track_dealloc() 117 << " deleting memory owned by another allocator: " << ptr; in track_dealloc()
|
/third_party/node/deps/ada/ |
H A D | ada.cpp | 15009 ada_owned_string owned; 15011 owned.data = nullptr; 15012 owned.length = 0; 15013 return owned; 15016 owned.length = out.size(); 15017 owned.data = new char[owned.length]; 15018 memcpy((void*)owned.data, out.data(), owned.length); 15019 return owned; [all...] |
/kernel/linux/linux-5.10/include/net/ |
H A D | sock.h | 100 int owned; member 548 * managed/owned by a BPF reuseport array. This bit should be set 1602 if (sk->sk_lock.owned) { in sock_release_ownership() 1603 sk->sk_lock.owned = 0; in sock_release_ownership() 1619 sk->sk_lock.owned = 0; \ 1702 return sk->sk_lock.owned; in sock_owned_by_user() 1707 return sk->sk_lock.owned; in sock_owned_by_user_nocheck() 1715 return !sk->sk_lock.owned && !spin_is_locked(&sk->sk_lock.slock); in sock_allow_reclassification()
|
/third_party/rust/crates/quote/tests/ |
H A D | test.rs | 391 let owned: Cow<Ident> = Cow::Owned(Ident::new("owned", Span::call_site())); in test_cow() 396 let tokens = quote! { #owned #borrowed }; in test_cow() 397 assert_eq!("owned borrowed", tokens.to_string()); in test_cow()
|