Home
last modified time | relevance | path

Searched refs:this (Results 176 - 200 of 4513) sorted by relevance

12345678910>>...181

/third_party/protobuf/php/src/Google/Protobuf/
H A DTimestamp.php63 * In JavaScript, one can convert a Date object to this format using the
66 * to this format using [`strftime`](https://docs.python.org/2/library/time.html#time.strftime)
70 * ) to obtain a formatter capable of generating timestamps in this format.
126 return $this->seconds;
136 * @return $this
141 $this->seconds = $var;
143 return $this;
157 return $this->nanos;
168 * @return $this
173 $this
[all...]
H A DAny.php99 * Note: this functionality is not currently available in the official
141 * Note: this functionality is not currently available in the official
173 * Note: this functionality is not currently available in the official
184 return $this->type_url;
205 * Note: this functionality is not currently available in the official
213 * @return $this
218 $this->type_url = $var;
220 return $this;
231 return $this->value;
239 * @return $this
[all...]
/kernel/linux/linux-5.10/drivers/block/drbd/
H A Ddrbd_interval.c12 struct drbd_interval *this = rb_entry(node, struct drbd_interval, rb); in interval_end() local
13 return this->end; in interval_end()
25 drbd_insert_interval(struct rb_root *root, struct drbd_interval *this) in drbd_insert_interval() argument
28 sector_t this_end = this->sector + (this->size >> 9); in drbd_insert_interval()
30 BUG_ON(!IS_ALIGNED(this->size, 512)); in drbd_insert_interval()
39 if (this->sector < here->sector) in drbd_insert_interval()
41 else if (this->sector > here->sector) in drbd_insert_interval()
43 else if (this < here) in drbd_insert_interval()
45 else if (this > her in drbd_insert_interval()
95 drbd_remove_interval(struct rb_root *root, struct drbd_interval *this) drbd_remove_interval() argument
[all...]
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DCodedOutputStream.php12 // notice, this list of conditions and the following disclaimer.
14 // copyright notice, this list of conditions and the following disclaimer
19 // this software without specific prior written permission.
46 $this->current = 0;
47 $this->buffer_size = $size;
48 $this->buffer = str_repeat(chr(0), $this->buffer_size);
53 return $this->buffer;
60 return $this->writeRaw($bytes, $size);
67 return $this
[all...]
/third_party/skia/include/utils/
H A DSkRandom.h4 * Use of this source code is governed by a BSD-style license that can be
18 multiply-with-carry "mother of all" algorithm. Unlike rand(), this class holds
33 return *this; in operator =()
46 int32_t nextS() { return (int32_t)this->nextU(); } in nextS()
52 int floatint = 0x3f800000 | (int)(this->nextU() >> 9); in nextF()
61 return min + this->nextF() * (max - min); in nextRangeF()
70 return this->nextU() >> (32 - bitCount); in nextBits()
80 return this->nextU(); in nextRangeU()
82 return min + this->nextU() % range; in nextRangeU()
91 return this in nextULessThan()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/
H A Dint128.h5 // you may not use this file except in compliance with the License.
23 // are defined in this file, while many inline `int128` methods are defined in
69 // Note: code written with this type will continue to compile once `uint128_t`
79 // interoperable with that type. (Abseil checks for this compatibility through
201 // Note that this factory function is the only way to construct a `uint128`
323 // interoperable with that type. (Abseil checks for this compatibility through
432 // Note that this factory function is the only way to construct a `int128`
548 inline uint128& uint128::operator=(int v) { return *this = uint128(v); } in operator =()
551 return *this = uint128(v); in operator =()
555 return *this in operator =()
[all...]
/third_party/node/deps/v8/src/codegen/riscv64/
H A Dconstants-riscv64.h2 // Use of this source code is governed by a BSD-style license that can be
1114 // On RISC-V we use this enum to abstract from conditional branch instructions.
1151 // for condition < 0, this will work as expected.
1376 uint16_t FirstHalfWord = *reinterpret_cast<const uint16_t*>(this);
1381 uint8_t FirstByte = *reinterpret_cast<const uint8_t*>(this);
1386 return (FLAG_riscv_c_extension && this->IsShortInstruction())
1393 if (FLAG_riscv_c_extension && this->IsShortInstruction()) {
1394 return 0x0000FFFF & (*reinterpret_cast<const ShortInstr*>(this));
1396 return *reinterpret_cast<const Instr*>(this);
1401 *reinterpret_cast<Instr*>(this)
[all...]
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/detail/
H A Darray_property.h4 * you may not use this file except in compliance with the License.
35 if (auto arr = interface_cast<IArrayAny>(&this->GetValueAny())) { in GetSize()
42 if (auto arr = interface_cast<IArrayAny>(&this->GetValueAny())) { in GetAnyAt()
62 if (auto c = this->GetValueAny().Clone(true)) { in SetAnyAt()
65 return this->SetValueAny(*arr); in SetAnyAt()
76 if (auto c = this->GetValueAny().Clone(true)) { in InsertAnyAt()
79 return this->SetValueAny(*arr); in InsertAnyAt()
86 if (auto c = this->GetValueAny().Clone(true)) { in RemoveAt()
89 return this->SetValueAny(*arr); in RemoveAt()
114 if (auto arr = interface_cast<IArrayAny>(&this in GetValueAt()
[all...]
/kernel/linux/linux-5.10/drivers/mtd/nand/onenand/
H A Donenand_samsung.c218 struct onenand_chip *this = onenand->mtd->priv; in s3c_onenand_readw() local
220 int reg = addr - this->base; in s3c_onenand_readw()
268 struct onenand_chip *this = onenand->mtd->priv; in s3c_onenand_writew() local
270 unsigned int reg = addr - this->base; in s3c_onenand_writew()
379 struct onenand_chip *this = mtd->priv; in s3c_onenand_command() local
386 fba = (int) (addr >> this->erase_shift); in s3c_onenand_command()
387 fpa = (int) (addr >> this->page_shift); in s3c_onenand_command()
388 fpa &= this->page_mask; in s3c_onenand_command()
398 ONENAND_SET_NEXT_BUFFERRAM(this); in s3c_onenand_command()
403 index = ONENAND_CURRENT_BUFFERRAM(this); in s3c_onenand_command()
476 struct onenand_chip *this = mtd->priv; s3c_get_bufferram() local
618 struct onenand_chip *this = mtd->priv; s5pc110_read_bufferram() local
728 struct onenand_chip *this = mtd->priv; s3c_onenand_check_lock_status() local
748 struct onenand_chip *this = mtd->priv; s3c_onenand_do_lock_cmd() local
773 struct onenand_chip *this = mtd->priv; s3c_unlock_all() local
802 struct onenand_chip *this = mtd->priv; s3c_onenand_setup() local
836 struct onenand_chip *this; s3c_onenand_probe() local
957 struct onenand_chip *this = mtd->priv; s3c_pm_ops_suspend() local
966 struct onenand_chip *this = mtd->priv; s3c_pm_ops_resume() local
[all...]
/kernel/linux/linux-6.6/drivers/mtd/nand/onenand/
H A Donenand_samsung.c218 struct onenand_chip *this = onenand->mtd->priv; in s3c_onenand_readw() local
220 int reg = addr - this->base; in s3c_onenand_readw()
268 struct onenand_chip *this = onenand->mtd->priv; in s3c_onenand_writew() local
270 unsigned int reg = addr - this->base; in s3c_onenand_writew()
379 struct onenand_chip *this = mtd->priv; in s3c_onenand_command() local
386 fba = (int) (addr >> this->erase_shift); in s3c_onenand_command()
387 fpa = (int) (addr >> this->page_shift); in s3c_onenand_command()
388 fpa &= this->page_mask; in s3c_onenand_command()
398 ONENAND_SET_NEXT_BUFFERRAM(this); in s3c_onenand_command()
404 index = ONENAND_CURRENT_BUFFERRAM(this); in s3c_onenand_command()
477 struct onenand_chip *this = mtd->priv; s3c_get_bufferram() local
619 struct onenand_chip *this = mtd->priv; s5pc110_read_bufferram() local
729 struct onenand_chip *this = mtd->priv; s3c_onenand_check_lock_status() local
749 struct onenand_chip *this = mtd->priv; s3c_onenand_do_lock_cmd() local
774 struct onenand_chip *this = mtd->priv; s3c_unlock_all() local
803 struct onenand_chip *this = mtd->priv; s3c_onenand_setup() local
837 struct onenand_chip *this; s3c_onenand_probe() local
953 struct onenand_chip *this = mtd->priv; s3c_pm_ops_suspend() local
962 struct onenand_chip *this = mtd->priv; s3c_pm_ops_resume() local
[all...]
/foundation/CastEngine/castengine_wifi_display/services/protocol/frame/
H A Dh264_frame.h4 * you may not use this file except in compliance with the License.
47 this->codecId_ = CODEC_H264; in H264Frame()
52 this->codecId_ = CODEC_H264; in H264Frame()
57 this->Assign((char *)ptr, (int32_t)size); in H264Frame()
61 this->codecId_ = CODEC_H264; in H264Frame()
68 auto nalPtr = (uint8_t *)this->Data() + this->PrefixSize();
74 auto nalPtr = (uint8_t *)this->Data() + this->PrefixSize();
86 auto nalPtr = (uint8_t *)this
[all...]
/third_party/skia/src/sksl/ir/
H A DSkSLInterfaceBlock.h4 * Use of this source code is governed by a BSD-style license that can be
28 * At the IR level, this is represented by a single variable of struct type.
65 return std::make_unique<InterfaceBlock>(fLine, this->variable(), this->typeName(),
66 this->instanceName(), this->arraySize(),
67 SymbolTable::WrapIfBuiltin(this->typeOwner()));
71 String result = this->variable().modifiers().description() + this->typeName() + " {\n";
72 const Type* structType = &this
[all...]
H A DSkSLTernaryExpression.h4 * Use of this source code is governed by a BSD-style license that can be
28 SkASSERT(this->ifTrue()->type() == this->ifFalse()->type()); in TernaryExpression()
69 return this->test()->hasProperty(property) || this->ifTrue()->hasProperty(property) ||
70 this->ifFalse()->hasProperty(property);
74 return this->test()->isConstantOrUniform() && this->ifTrue()->isConstantOrUniform() &&
75 this->ifFalse()->isConstantOrUniform();
79 return std::make_unique<TernaryExpression>(fLine, this
[all...]
/foundation/multimedia/av_session/services/session/ipc/stub/
H A Davsession_callback_stub.h4 * you may not use this file except in compliance with the License.
54 [this](MessageParcel& data, MessageParcel& reply) { return HandleOnPlay(data, reply); }},
56 [this](MessageParcel& data, MessageParcel& reply) { return HandleOnPause(data, reply); }},
58 [this](MessageParcel& data, MessageParcel& reply) { return HandleOnStop(data, reply); }},
60 [this](MessageParcel& data, MessageParcel& reply) { return HandleOnPlayNext(data, reply); }},
62 [this](MessageParcel& data, MessageParcel& reply) { return HandleOnPlayPrevious(data, reply); }},
64 [this](MessageParcel& data, MessageParcel& reply) { return HandleOnFastForward(data, reply); }},
66 [this](MessageParcel& data, MessageParcel& reply) { return HandleOnRewind(data, reply); }},
68 [this](MessageParcel& data, MessageParcel& reply) { return HandleOnSeek(data, reply); }},
70 [this](MessageParce
[all...]
H A Davsession_service_stub.h4 * you may not use this file except in compliance with the License.
65 [this](MessageParcel& data, MessageParcel& reply) { return HandleCreateSessionInner(data, reply); }},
67 [this](MessageParcel& data, MessageParcel& reply) { return HandleGetAllSessionDescriptors(data, reply); }},
69 [this](MessageParcel& data, MessageParcel& reply)
72 [this](MessageParcel& data, MessageParcel& reply)
75 [this](MessageParcel& data, MessageParcel& reply)
78 [this](MessageParcel& data, MessageParcel& reply) { return HandleStartAVPlayback(data, reply); }},
80 [this](MessageParcel& data, MessageParcel& reply) { return HandleCreateControllerInner(data, reply); }},
82 [this](MessageParcel& data, MessageParcel& reply) { return HandleGetAVCastControllerInner(data, reply); }},
84 [this](MessageParce
[all...]
/third_party/gn/src/gn/
H A Dimmutable_vector.h2 // Use of this source code is governed by a BSD-style license that can be
76 for (const auto& cur_item : *this) in contains()
115 this->header_ = AllocateFor(size); in ImmutableVector()
116 auto* dst = &(this->header_->item0); in ImmutableVector()
138 this->header_ = AllocateFor(size); in ImmutableVector()
140 auto* dst = &(this->header_->item0); in ImmutableVector()
157 this->header_ = AllocateFor(size); in ImmutableVector()
159 auto* dst = &(this->header_->item0); in ImmutableVector()
176 if (this != &other) { in operator =()
177 this in operator =()
[all...]
/third_party/backends/backend/
H A Dhp-handle.h16 along with this program. If not, see <https://www.gnu.org/licenses/>.
19 additional uses of the libraries contained in this release of SANE.
22 to produce an executable, this does not by itself cause the
33 those changes may be distributed with this exception intact.
36 whether to permit this exception to apply to your modifications.
37 If you do not wish that, delete this exception notice.
49 void sanei_hp_handle_destroy (HpHandle this);
50 const SANE_Option_Descriptor * sanei_hp_handle_saneoption (HpHandle this,
52 SANE_Status sanei_hp_handle_control(HpHandle this, SANE_Int optnum,
54 SANE_Status sanei_hp_handle_getParameters (HpHandle this,
[all...]
/foundation/graphic/graphic_2d/rosen/modules/platform/utils/
H A Drefbase.h4 * you may not use this file except in compliance with the License.
70 * as long as this strong reference exists, thus the reference
123 * it will call `delete this` to deallocate this RefCounter object.
310 * object can still alive even if the target refereneced by this object
336 * @brief Increment the reference count to this WeakRefCounter object.
338 * @note Notice the difference between this count and the weak reference
340 * referencing this WeakRefCount object.
346 * @brief Decrement the reference count to this WeakRefCounter object.
348 * @note This WeakRefCounter object will be deallocated when this coun
[all...]
/kernel/linux/linux-5.10/fs/jffs2/
H A Ddebug.c9 * For licensing information, see the file 'LICENCE' in this directory.
501 struct list_head *this; in __jffs2_dbg_dump_block_lists_nolock() local
505 list_for_each(this, &c->clean_list) { in __jffs2_dbg_dump_block_lists_nolock()
506 struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list); in __jffs2_dbg_dump_block_lists_nolock()
523 struct list_head *this; in __jffs2_dbg_dump_block_lists_nolock() local
527 list_for_each(this, &c->very_dirty_list) { in __jffs2_dbg_dump_block_lists_nolock()
528 struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list); in __jffs2_dbg_dump_block_lists_nolock()
546 struct list_head *this; in __jffs2_dbg_dump_block_lists_nolock() local
550 list_for_each(this, &c->dirty_list) { in __jffs2_dbg_dump_block_lists_nolock()
551 struct jffs2_eraseblock *jeb = list_entry(this, struc in __jffs2_dbg_dump_block_lists_nolock()
569 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
585 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
600 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
616 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
632 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
648 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
664 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
680 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
705 struct jffs2_node_frag *this = frag_first(&f->fragtree); __jffs2_dbg_dump_fragtree_nolock() local
[all...]
/kernel/linux/linux-6.6/fs/jffs2/
H A Ddebug.c9 * For licensing information, see the file 'LICENCE' in this directory.
501 struct list_head *this; in __jffs2_dbg_dump_block_lists_nolock() local
505 list_for_each(this, &c->clean_list) { in __jffs2_dbg_dump_block_lists_nolock()
506 struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list); in __jffs2_dbg_dump_block_lists_nolock()
523 struct list_head *this; in __jffs2_dbg_dump_block_lists_nolock() local
527 list_for_each(this, &c->very_dirty_list) { in __jffs2_dbg_dump_block_lists_nolock()
528 struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list); in __jffs2_dbg_dump_block_lists_nolock()
546 struct list_head *this; in __jffs2_dbg_dump_block_lists_nolock() local
550 list_for_each(this, &c->dirty_list) { in __jffs2_dbg_dump_block_lists_nolock()
551 struct jffs2_eraseblock *jeb = list_entry(this, struc in __jffs2_dbg_dump_block_lists_nolock()
569 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
585 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
600 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
616 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
632 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
648 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
664 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
680 struct list_head *this; __jffs2_dbg_dump_block_lists_nolock() local
705 struct jffs2_node_frag *this = frag_first(&f->fragtree); __jffs2_dbg_dump_fragtree_nolock() local
[all...]
/third_party/skia/src/core/
H A DSkDevice.h4 * Use of this source code is governed by a BSD-style license that can be
43 * Return ImageInfo for this device. If the canvas is not backed by pixels
49 * Return SurfaceProps for this device.
55 SkIRect bounds() const { return SkIRect::MakeWH(this->width(), this->height()); } in bounds()
64 *bounds = SkMatrixPriv::MapRect(fDeviceToGlobal, SkRect::Make(this->bounds())).roundOut(); in getGlobalBounds()
69 this->getGlobalBounds(&bounds); in getGlobalBounds()
74 * Returns the bounding box of the current clip, in this device's
76 * draws unless the clip is further modified (at which point this will
79 SkIRect devClipBounds() const { return this
[all...]
/foundation/resourceschedule/ffrt/interfaces/kits/cpp/
H A Dqueue.h4 * you may not use this file except in compliance with the License.
41 ffrt_queue_attr_init(this); in queue_attr()
46 ffrt_queue_attr_destroy(this); in ~queue_attr()
53 * @brief Sets the QoS for this queue attribute.
61 ffrt_queue_attr_set_qos(this, qos_); in qos()
62 return *this; in qos()
68 return ffrt_queue_attr_get_qos(this); in qos()
74 ffrt_queue_attr_set_timeout(this, timeout_us); in timeout()
75 return *this; in timeout()
81 return ffrt_queue_attr_get_timeout(this); in timeout()
[all...]
/third_party/skia/src/gpu/
H A DGrDirectContextPriv.h4 * Use of this source code is governed by a BSD-style license that can be
38 GrStrikeCache* getGrStrikeCache() { return this->context()->fStrikeCache.get(); } in getGrStrikeCache()
46 * It is not necessary to call this before reading the render target via Skia/GrContext.
63 return this->flushSurfaces({&proxy, size}, access, info, newState);
78 SkTaskGroup* getTaskGroup() { return this->context()->fTaskGroup.get(); } in getTaskGroup()
80 GrResourceProvider* resourceProvider() { return this->context()->fResourceProvider.get(); } in resourceProvider()
82 return this->context()->fResourceProvider.get(); in resourceProvider()
85 GrResourceCache* getResourceCache() { return this->context()->fResourceCache.get(); } in getResourceCache()
87 GrGpu* getGpu() { return this->context()->fGpu.get(); } in getGpu()
88 const GrGpu* getGpu() const { return this in getGpu()
[all...]
H A DGrStencilSettings.h4 * Use of this source code is governed by a BSD-style license that can be
50 GrStencilSettings() { this->setDisabled(); } in GrStencilSettings()
52 this->reset(user, hasStencilClip, numStencilBits); in GrStencilSettings()
54 GrStencilSettings(const GrStencilSettings& that) { this->reset(that); } in GrStencilSettings()
55 GrStencilSettings& operator=(const GrStencilSettings& that) { this->reset(that); return *this; } in operator =()
63 bool isDisabled() const { SkASSERT(this->isValid()); return fFlags & kDisabled_StencilFlag; } in isDisabled()
64 bool doesWrite() const { SkASSERT(this->isValid()); in doesWrite()
66 bool isTwoSided() const { SkASSERT(this->isValid()); in isTwoSided()
68 bool usesWrapOp() const { SkASSERT(this in isTwoSided()
[all...]
/third_party/skia/third_party/externals/dawn/src/common/
H A Dityp_stack_vec.h4 // you may not use this file except in compliance with the License.
35 this->container().resize(static_cast<I>(size)); in stack_vec()
49 this->container().resize(static_cast<I>(size));
53 this->container().reserve(static_cast<I>(size));
57 return this->container().data(); in data()
61 return this->container().data(); in data()
65 return this->container().begin();
69 return this->container().begin();
73 return this->container().end();
77 return this
[all...]

Completed in 15 milliseconds

12345678910>>...181