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
refs:bitset
(Results
1 - 25
of
50
) sorted by relevance
1
2
/arkcompiler/ets_runtime/ecmascript/compiler/base/
H
A
D
bit_set.h
91
void Union(const BitSet &
bitset
)
in Union()
argument
94
data_.inlineWord_ |=
bitset
.data_.inlineWord_;
in Union()
97
data_.words_[i] |=
bitset
.data_.words_[i];
in Union()
102
bool UnionWithChanged(const BitSet &
bitset
)
in UnionWithChanged()
argument
106
data_.inlineWord_ |=
bitset
.data_.inlineWord_;
in UnionWithChanged()
112
data_.words_[i] |=
bitset
.data_.words_[i];
in UnionWithChanged()
121
void Intersect(const BitSet &
bitset
)
in Intersect()
argument
124
data_.inlineWord_ &=
bitset
.data_.inlineWord_;
in Intersect()
127
data_.words_[i] &=
bitset
.data_.words_[i];
in Intersect()
/arkcompiler/ets_runtime/ecmascript/js_api/
H
A
D
js_api_bitvector.cpp
31
auto elements = reinterpret_cast<std::vector<std::
bitset
<BIT_SET_LENGTH>>*>(np->GetExternalPointer());
in Push()
33
std::
bitset
<BIT_SET_LENGTH> increaseSet;
in Push()
54
auto elements = reinterpret_cast<std::vector<std::
bitset
<BIT_SET_LENGTH>>*>(np->GetExternalPointer());
in Pop()
77
auto elements = reinterpret_cast<std::vector<std::
bitset
<BIT_SET_LENGTH>>*>(np->GetExternalPointer());
in Set()
93
auto elements = reinterpret_cast<std::vector<std::
bitset
<BIT_SET_LENGTH>>*>(np->GetExternalPointer());
in Get()
122
auto elements = reinterpret_cast<std::vector<std::
bitset
<BIT_SET_LENGTH>>*>(np->GetExternalPointer());
in Has()
142
auto elements = reinterpret_cast<std::vector<std::
bitset
<BIT_SET_LENGTH>>*>(np->GetExternalPointer());
in Has()
180
auto elements = reinterpret_cast<std::vector<std::
bitset
<BIT_SET_LENGTH>>*>(np->GetExternalPointer());
in SetBitsByRange()
213
auto srcElements = reinterpret_cast<std::vector<std::
bitset
<BIT_SET_LENGTH>>*>(srcNp->GetExternalPointer());
in GetBitsByRange()
217
auto dstElements = reinterpret_cast<std::vector<std::
bitset
<BIT_SET_LENGT
in GetBitsByRange()
[all...]
H
A
D
js_api_bitvector.h
99
inline static void SetBit(std::vector<std::
bitset
<BIT_SET_LENGTH>> *elements, uint32_t index,
in SetBit()
112
inline static JSTaggedValue GetBit(std::vector<std::
bitset
<BIT_SET_LENGTH>> *elements, uint32_t index)
in GetBit()
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
gc_bitset.h
20
#include <
bitset
>
168
void Merge(GCBitset *
bitset
, size_t bitSize)
174
words[i] |=
bitset
->TwoWords()[i];
298
ARK_INLINE std::array<std::
bitset
<GCBitset::BIT_PER_WORD>, BitSetNum> GetAndResetAll(uintptr_t& updateAddress)
300
std::array<std::
bitset
<GCBitset::BIT_PER_WORD>, BitSetNum> retBitsets;
312
std::array<std::
bitset
<GCBitset::BIT_PER_WORD>, BitSetNum> bitsets_;
H
A
D
remembered_set.h
102
GCBitset *
bitset
= rset->GCBitsetData();
in Merge()
local
103
GCBitsetData()->Merge(
bitset
, size_);
in Merge()
/arkcompiler/runtime_core/compiler/
H
A
D
compiler_logger.h
19
#include <
bitset
>
63
static std::
bitset
<CompilerLoggerComponents::LOG_COMPONENTS_NUM> components;
H
A
D
compiler_logger.cpp
19
std::
bitset
<CompilerLoggerComponents::LOG_COMPONENTS_NUM> CompilerLogger::components(0);
H
A
D
compiler_options.h
138
std::
bitset
<CPU_FEATURES_NUM> features_;
/arkcompiler/runtime_core/static_core/compiler/
H
A
D
compiler_logger.h
20
#include <
bitset
>
63
static std::
bitset
<CompilerLoggerComponents::LOG_COMPONENTS_NUM> components_;
H
A
D
compiler_logger.cpp
19
std::
bitset
<CompilerLoggerComponents::LOG_COMPONENTS_NUM> CompilerLogger::components_(0);
H
A
D
compiler_options.h
155
std::
bitset
<CPU_FEATURES_NUM> features_;
/arkcompiler/runtime_core/static_core/libllvmbackend/
H
A
D
llvm_logger.h
20
#include <
bitset
>
63
static std::
bitset
<LLVMLoggerComponents::LOG_COMPONENTS_NUM> components_;
H
A
D
llvm_logger.cpp
19
std::
bitset
<LLVMLoggerComponents::LOG_COMPONENTS_NUM> LLVMLogger::components_(0);
/arkcompiler/ets_runtime/ecmascript/tests/
H
A
D
js_api_bitvector_test.cpp
64
static JSTaggedValue GetBit(std::vector<std::
bitset
<JSAPIBitVector::BIT_SET_LENGTH>> *elements, uint32_t index)
in GetBit()
97
auto *newBitSetVector = new std::vector<std::
bitset
<JSAPIBitVector::BIT_SET_LENGTH>>();
in CreateBitVector()
126
reinterpret_cast<std::vector<std::
bitset
<JSAPIBitVector::BIT_SET_LENGTH>> *>(np->GetExternalPointer());
in HWTEST_F_L0()
170
reinterpret_cast<std::vector<std::
bitset
<JSAPIBitVector::BIT_SET_LENGTH>> *>(np->GetExternalPointer());
in HWTEST_F_L0()
259
reinterpret_cast<std::vector<std::
bitset
<JSAPIBitVector::BIT_SET_LENGTH>> *>(np->GetExternalPointer());
in HWTEST_F_L0()
310
reinterpret_cast<std::vector<std::
bitset
<JSAPIBitVector::BIT_SET_LENGTH>> *>(np->GetExternalPointer());
in HWTEST_F_L0()
404
reinterpret_cast<std::vector<std::
bitset
<JSAPIBitVector::BIT_SET_LENGTH>> *>(np->GetExternalPointer());
in HWTEST_F_L0()
432
reinterpret_cast<std::vector<std::
bitset
<JSAPIBitVector::BIT_SET_LENGTH>> *>(np->GetExternalPointer());
in HWTEST_F_L0()
459
reinterpret_cast<std::vector<std::
bitset
<JSAPIBitVector::BIT_SET_LENGTH>> *>(np->GetExternalPointer());
in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/ad/
H
A
D
mad.h
19
#include <
bitset
>
/arkcompiler/runtime_core/compiler/optimizer/ir/
H
A
D
marker.h
20
#include <
bitset
>
72
mutable std::
bitset
<MARKERS_NUM> spaces_ {};
/arkcompiler/runtime_core/libpandabase/tests/
H
A
D
regmask_test.cpp
18
#include <
bitset
>
22
using BitsetType = std::
bitset
<RegMask::Size()>;
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H
A
D
marker.h
20
#include <
bitset
>
72
mutable std::
bitset
<MARKERS_NUM> spaces_ {};
/arkcompiler/runtime_core/static_core/libpandabase/tests/
H
A
D
regmask_test.cpp
18
#include <
bitset
>
22
using BitsetType = std::
bitset
<RegMask::Size()>;
/arkcompiler/runtime_core/static_core/runtime/
H
A
D
lock_order_graph.h
18
#include <
bitset
>
H
A
D
thread_manager.h
18
#include <
bitset
>
308
std::
bitset
<MAX_INTERNAL_THREAD_ID> internalThreadIds_ GUARDED_BY(idsLock_);
/arkcompiler/runtime_core/libpandabase/utils/
H
A
D
bit_utils.h
24
#include <
bitset
>
250
return std::
bitset
<BIT_SIZE>(value).count();
in BitCount()
256
return std::
bitset
<BIT_SIZE>(value).count();
in BitCount()
262
return std::
bitset
<BIT_SIZE>(value).count();
in BitCount()
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H
A
D
bit_utils.h
28
#include <
bitset
>
252
return std::
bitset
<BIT_SIZE>(value).count();
in BitCount()
258
return std::
bitset
<BIT_SIZE>(value).count();
in BitCount()
264
return std::
bitset
<BIT_SIZE>(value).count();
in BitCount()
H
A
D
logger.h
28
#include <
bitset
>
54
using ComponentMask = std::
bitset
<Component::LAST>;
/arkcompiler/runtime_core/static_core/runtime/coroutines/
H
A
D
stackful_coroutine_manager.cpp
418
std::
bitset
<stackful_coroutines::MAX_WORKERS_COUNT> affinityBits(maskValue);
in ChooseWorkerForCoroutine()
456
std::
bitset
<stackful_coroutines::MAX_WORKERS_COUNT> mask(stackful_coroutines::AFFINITY_MASK_NONE);
in CalcAffinityMaskFromLaunchMode()
462
std::
bitset
<stackful_coroutines::MAX_WORKERS_COUNT> mask(stackful_coroutines::AFFINITY_MASK_NONE);
in CalcAffinityMaskFromLaunchMode()
470
std::
bitset
<stackful_coroutines::MAX_WORKERS_COUNT> mask(stackful_coroutines::AFFINITY_MASK_FULL);
in CalcAffinityMaskFromLaunchMode()
Completed in 16 milliseconds
1
2