Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
defs:IterateBitSet
(Results
1 - 3
of
3
) sorted by relevance
/third_party/skia/third_party/externals/dawn/src/common/
H
A
D
ityp_bitset.h
125
friend BitSetIterator<N, Index>
IterateBitSet
(const bitset& bitset) {
in IterateBitSet()
function in ityp::bitset
H
A
D
BitSetIterator.h
135
BitSetIterator<N, uint32_t>
IterateBitSet
(const std::bitset<N>& bitset) {
in IterateBitSet()
function
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H
A
D
PipelineLayout.cpp
347
ASSERT(group < kMaxBindGroupsTyped); ASSERT(mMask[group]); const BindGroupLayoutBase* bgl = mBindGroupLayouts[group].Get(); ASSERT(bgl != nullptr); return bgl; } BindGroupLayoutBase* PipelineLayoutBase::GetBindGroupLayout(BindGroupIndex group) { ASSERT(!IsError()); ASSERT(group < kMaxBindGroupsTyped); ASSERT(mMask[group]); BindGroupLayoutBase* bgl = mBindGroupLayouts[group].Get(); ASSERT(bgl != nullptr); return bgl; } const BindGroupLayoutMask& PipelineLayoutBase::GetBindGroupLayoutsMask() const { ASSERT(!IsError()); return mMask; } BindGroupLayoutMask PipelineLayoutBase::InheritedGroupsMask( const PipelineLayoutBase* other) const { ASSERT(!IsError()); return {(1 << static_cast<uint32_t>(GroupsInheritUpTo(other))) - 1u}; } BindGroupIndex PipelineLayoutBase::GroupsInheritUpTo(const PipelineLayoutBase* other) const { ASSERT(!IsError()); for (BindGroupIndex i(0); i < kMaxBindGroupsTyped; ++i) { if (!mMask[i] || mBindGroupLayouts[i].Get() != other->mBindGroupLayouts[i].Get()) { return i; } } return kMaxBindGroupsTyped; } size_t PipelineLayoutBase::ComputeContentHash() { ObjectContentHasher recorder; recorder.Record(mMask); for (BindGroupIndex group :
IterateBitSet
(mMask)) { recorder.Record(GetBindGroupLayout(group)->GetContentHash()); } return recorder.GetContentHash(); } bool PipelineLayoutBase::EqualityFunc::operator()(const PipelineLayoutBase* a, const PipelineLayoutBase* b) const { if (a->mMask != b->mMask) { return false; } for (BindGroupIndex group :
IterateBitSet
(a->mMask)
GetBindGroupLayout()
argument
Completed in 2 milliseconds