Home
last modified time | relevance | path

Searched refs:this (Results 1926 - 1950 of 5710) sorted by relevance

1...<<71727374757677787980>>...229

/kernel/linux/linux-5.10/drivers/power/reset/
H A Dreboot-mode.c42 static int reboot_mode_notify(struct notifier_block *this, in reboot_mode_notify() argument
48 reboot = container_of(this, struct reboot_mode_driver, reboot_notifier); in reboot_mode_notify()
141 * @dev: device to associate this resource with
181 * @dev: device to associate this resource with
/kernel/linux/linux-6.6/drivers/power/reset/
H A Dreboot-mode.c42 static int reboot_mode_notify(struct notifier_block *this, in reboot_mode_notify() argument
48 reboot = container_of(this, struct reboot_mode_driver, reboot_notifier); in reboot_mode_notify()
141 * @dev: device to associate this resource with
181 * @dev: device to associate this resource with
/kernel/linux/linux-6.6/rust/kernel/
H A Dtypes.rs47 /// this object must have been dropped.
59 // SAFETY: The safety requirements for this function ensure that the object is still alive, in borrow()
67 // SAFETY: The safety requirements of this function ensure that `ptr` comes from a previous in from_foreign()
153 /// [`ScopeGuard::dismiss`] and [`ScopeGuard::drop`]: in this case, it will be `None` as the value
168 // because this function consumes `self`. in dismiss()
233 /// The returned initializer calls the given closure with the pointer to the inner `T` of this
234 /// `Opaque`. Since this memory is uninitialized, the closure is not allowed to read from it.
255 /// Gets the value behind `this`.
259 pub const fn raw_get(this: *const Self) -> *mut T {
260 UnsafeCell::raw_get(this
[all...]
/third_party/gn/src/base/memory/
H A Dref_counted.h2 // Use of this source code is governed by a BSD-style license that can be
130 // should refrain from using this (callsites handling thread-safety through
133 // should properly std::move() the ref to avoid hitting this check).
144 // knock-off of WebKit's RefCounted<T> class. To use this, just extend your
217 Traits::Destruct(static_cast<const T*>(this)); in Release()
245 // friend with RefCountedThreadSafe instead of this struct, which is an in Destruct()
281 Traits::Destruct(static_cast<const T*>(this)); in Release()
/third_party/icu/icu4c/source/i18n/
H A Dnumber_patternstring.h25 // Note: the order of fields in this enum matters for parsing.
81 : state(this->pattern), currentSubpattern(nullptr) {} in ParsedPatternInfo()
85 // Need to declare this explicitly because of the destructor
122 return *this;
250 * a roundingIncrement of 0.006 is treated like 0.01 for this determination, i.e.
272 * created from the string returned by this function may not be the same as the original property bag.
H A Dnumber_types.h166 * Apply this Modifier to the string builder.
169 * The string builder to which to apply this modifier.
194 * Whether this modifier is strong. If a modifier is strong, it should always be applied immediately and not allowed
221 * Gets a set of "parameters" for this Modifier.
223 * TODO: Make this return a `const Parameters*` more like Java?
228 * Returns whether this Modifier is *semantically equivalent* to the other Modifier;
229 * in many cases, this is the same as equal, but parameters should be ignored.
257 * In other words, this interface is used for the parts of number processing that are <em>quantity-dependent</em>.
324 return *this; in operator =()
330 return *this; in operator =()
[all...]
/third_party/node/deps/v8/src/zone/
H A Dzone-list.h2 // Use of this source code is governed by a BSD-style license that can be
52 ZoneList(ZoneList<T>&& other) V8_NOEXCEPT { *this = std::move(other); }
64 // If this assert ever fails, consider calling Clear(Zone*) or
72 return *this;
112 // Add all the elements from the argument list to this list.
114 // Add all the elements from the vector to this list.
121 // until the next change is made to this list.
/third_party/node/deps/v8/src/wasm/
H A Dstruct-types.h2 // Use of this source code is governed by a BSD-style license that can be
54 if (this == &other) return true; in operator ==()
61 bool operator!=(const StructType& other) const { return !(*this == other); } in operator !=()
/third_party/node/src/
H A Dnode_realm-inl.h82 DCHECK_EQ(GetCurrent(context), this); in AddBindingData()
84 BaseObjectPtr<T> item = MakeDetachedBaseObject<T>(this, target); in AddBindingData()
/third_party/node/src/tracing/
H A Dagent.h169 return *this; in operator =()
173 *this = std::move(other); in AgentWriterHandle()
/third_party/node/deps/icu-small/source/i18n/
H A Dnumber_types.h166 * Apply this Modifier to the string builder.
169 * The string builder to which to apply this modifier.
194 * Whether this modifier is strong. If a modifier is strong, it should always be applied immediately and not allowed
221 * Gets a set of "parameters" for this Modifier.
223 * TODO: Make this return a `const Parameters*` more like Java?
228 * Returns whether this Modifier is *semantically equivalent* to the other Modifier;
229 * in many cases, this is the same as equal, but parameters should be ignored.
257 * In other words, this interface is used for the parts of number processing that are <em>quantity-dependent</em>.
324 return *this; in operator =()
330 return *this; in operator =()
[all...]
H A Dnumber_patternstring.h25 // Note: the order of fields in this enum matters for parsing.
81 : state(this->pattern), currentSubpattern(nullptr) {} in ParsedPatternInfo()
85 // Need to declare this explicitly because of the destructor
122 return *this;
250 * a roundingIncrement of 0.006 is treated like 0.01 for this determination, i.e.
272 * created from the string returned by this function may not be the same as the original property bag.
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dsimplenumberformatter.h129 * Destruct this SimpleNumber, cleaning up any memory it might own.
158 return *this;
209 * IMPORTANT: For efficiency, this function borrows the symbols. The symbols MUST remain valid
221 * Formats a value using this SimpleNumberFormatter.
231 * Formats an integer using this SimpleNumberFormatter.
250 * Destruct this SimpleNumberFormatter, cleaning up any memory it might own.
294 return *this;
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_sched_gm107.h22 const int delta = this->base - base; in rebase()
25 this->base = 0; in rebase()
/third_party/node/deps/v8/src/compiler/
H A Dbytecode-liveness-map.h2 // Use of this source code is governed by a BSD-style license that can be
109 Iterator begin() const { return Iterator(*this, Iterator::kStartTag); } in begin()
111 Iterator end() const { return Iterator(*this, Iterator::kEndTag); } in end()
/third_party/node/deps/v8/src/heap/cppgc-js/
H A Dcpp-heap.h2 // Use of this source code is governed by a BSD-style license that can be
120 HeapBase& AsBase() { return *this; } in AsBase()
121 const HeapBase& AsBase() const { return *this; } in AsBase()
171 // finalization is not needed) thus this method is left empty.
191 // atomic pause. Allocated bytes are buffer in case this is temporarily
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/
H A DTemplate.pm5 # this file except in compliance with the License. You can obtain a copy
112 In this example, C<whatever> will only become part of the template output
146 this file except in compliance with the License. You can obtain a copy
H A Dfallback.pm4 # this file except in compliance with the License. You can obtain a copy
41 Just like with B<lib>, this only works with Unix filepaths.
42 Just like with L<lib>, this doesn't mean that it only works on Unix, but that
/third_party/openssl/util/perl/OpenSSL/
H A DTemplate.pm5 # this file except in compliance with the License. You can obtain a copy
112 In this example, C<whatever> will only become part of the template output
146 this file except in compliance with the License. You can obtain a copy
H A Dfallback.pm4 # this file except in compliance with the License. You can obtain a copy
41 Just like with B<lib>, this only works with Unix filepaths.
42 Just like with L<lib>, this doesn't mean that it only works on Unix, but that
/third_party/skia/src/core/
H A DSkMessageBus.h4 * Use of this source code is governed by a BSD-style license that can be
26 * We may want to consider providing a default template implementation, to avoid this requirement by
41 // Post a message to be received by Inboxes for this Message type. Checks
61 void receive(Message m); // SkMessageBus is a friend only to call this.
92 bus->fInboxes.push_back(this); in Inbox()
100 // This is a cheaper fInboxes.remove(fInboxes.find(this)) when order doesn't matter. in ~Inbox()
102 if (this == bus->fInboxes[i]) { in ~Inbox()
H A DSkAnalyticEdge.h4 * Use of this source code is governed by a BSD-style license that can be
27 // During aaa_walk_edges, if this edge is a left edge,
57 // Update fX, fY of this edge so fY = y
86 // return true if we're NOT done with this edge
98 SkASSERT(fPrev->fNext == this); in validate()
99 SkASSERT(fNext->fPrev == this); in validate()
H A DSkBitmapProcState.h4 * Use of this source code is governed by a BSD-style license that can be
33 return this->init(inv, color, sampling) in setup()
34 && this->chooseProcs(); in setup()
74 safe to call this inside the shader's shadeSpan() method.
140 // Overall, this code takes a point in destination space, and uses the center of the pixel
H A DSkGlyphRun.h4 * Use of this source code is governed by a BSD-style license that can be
59 // Font for this run modified to have glyph encoding and left alignment.
87 for (const SkGlyphRun& run : *this) { in totalGlyphCount()
94 for (const SkGlyphRun& run : *this) { in hasRSXForm()
/third_party/skia/src/gpu/
H A DGrClip.h4 * Use of this source code is governed by a BSD-style license that can be
72 * apply(). The results of this are returned the PreClipResults struct, where 'result.fEffect'
73 * corresponds to what 'apply' would return. If this value is kUnclipped or kNoDraw, then it
79 * action is taken to modify the draw, apply() will represent this round rect in the applied
83 * beyond it. If the render target bounds are the only clip effect on the draw, this is reported
88 bool outside = !SkIRect::Intersects(pixelBounds, this->getConservativeBounds()); in preApply()
107 * depending on what side its on. Outside of this range, the non-AA edge will snap using round()
221 Effect effect = this->apply(&out->hardClip(), &pixelBounds);

Completed in 13 milliseconds

1...<<71727374757677787980>>...229