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:bitfield_
(Results
1 - 6
of
6
) sorted by relevance
/third_party/node/deps/v8/src/execution/
H
A
D
encoded-c-signature.h
27
:
bitfield_
(bitfield), parameter_count_(parameter_count) {}
in EncodedCSignature()
33
return (
bitfield_
& (static_cast<uint32_t>(1) << index)) != 0;
in IsFloat()
36
void SetFloat(int index) {
bitfield_
|= (static_cast<uint32_t>(1) << index); }
in SetFloat()
52
uint32_t
bitfield_
= 0; // Bit i is set if floating point, unset if not.
member
H
A
D
encoded-c-signature.cc
16
return base::bits::CountPopulation(
bitfield_
& ~(1 << kReturnIndex));
in FPParameterCount()
/third_party/node/deps/v8/src/maglev/
H
A
D
maglev-ir.h
182
constexpr bool is_call() const { return kIsCallBit::decode(
bitfield_
); }
in is_call()
184
return kCanEagerDeoptBit::decode(
bitfield_
);
in can_eager_deopt()
187
return kCanLazyDeoptBit::decode(
bitfield_
);
in can_lazy_deopt()
189
constexpr bool can_read() const { return kCanReadBit::decode(
bitfield_
); }
in can_read()
190
constexpr bool can_write() const { return kCanWriteBit::decode(
bitfield_
); }
in can_write()
192
return kNonMemorySideEffectsBit::decode(
bitfield_
);
in non_memory_side_effects()
195
return kUntaggedValueBit::decode(
bitfield_
);
in is_untagged_value()
199
return (
bitfield_
| kPureMask) == kPureValue;
in is_pure()
206
return OpProperties(
bitfield_
| that.
bitfield_
);
in operator |()
256
const uint32_t
bitfield_
;
global()
member in v8::internal::maglev::OpProperties
[all...]
/third_party/vixl/src/
H
A
D
utils-vixl.h
935
for (int i = 0; static_cast<size_t>(i) <
bitfield_
.size(); i++) {
936
if (
bitfield_
[i] == check_set)
944
explicit BitField(unsigned size) :
bitfield_
(size, 0) {}
947
explicit BitField(PandaAllocator* allocator, unsigned size) :
bitfield_
(size, 0, AllocatorWrapper(allocator).Adapter()) {}
951
VIXL_ASSERT((i >= 0) && (static_cast<size_t>(i) <
bitfield_
.size()));
952
bitfield_
[i] = true;
956
VIXL_ASSERT((i >= 0) && (static_cast<size_t>(i) <
bitfield_
.size()));
957
bitfield_
[i] = true;
960
bool IsSet(int i) const { return
bitfield_
[i]; }
983
std::vector<bool>
bitfield_
;
[all...]
/third_party/node/deps/v8/src/debug/
H
A
D
debug.h
198
: isolate_(isolate),
bitfield_
(0) {}
in DebugFeatureTracker()
203
uint32_t
bitfield_
;
member in v8::internal::DebugFeatureTracker
H
A
D
debug.cc
372
if (
bitfield_
& mask) return;
in Track()
374
bitfield_
|= mask;
in Track()
Completed in 11 milliseconds