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:kSmiValueSize
(Results
1 - 13
of
13
) sorted by relevance
/third_party/node/deps/v8/src/ic/
H
A
D
handler-configuration.h
90
STATIC_ASSERT(DescriptorBits::kLastUsedBit <
kSmiValueSize
);
106
STATIC_ASSERT(FieldIndexBits::kLastUsedBit <
kSmiValueSize
);
114
STATIC_ASSERT(WasmFieldOffsetBits::kLastUsedBit <
kSmiValueSize
);
133
STATIC_ASSERT(ElementsKindBits::kLastUsedBit <
kSmiValueSize
);
140
STATIC_ASSERT(WasmArrayTypeBits::kLastUsedBit <
kSmiValueSize
);
147
kSmiValueSize
- LookupOnLookupStartObjectBits::kLastUsedBit - 1>;
148
STATIC_ASSERT(ExportsIndexBits::kLastUsedBit <
kSmiValueSize
);
297
STATIC_ASSERT(FieldIndexBits::kLastUsedBit <
kSmiValueSize
);
/third_party/node/deps/v8/include/
H
A
D
v8-internal.h
76
enum { kSmiShiftSize = 0,
kSmiValueSize
= 31 };
enumerator
79
static_cast<intptr_t>(kUintptrAllBitsSet << (
kSmiValueSize
- 1));
101
enum { kSmiShiftSize = 31,
kSmiValueSize
= 32 };
enumerator
104
static_cast<intptr_t>(kUintptrAllBitsSet << (
kSmiValueSize
- 1));
145
const int
kSmiValueSize
= PlatformSmiTagging::
kSmiValueSize
;
member
148
constexpr bool SmiValuesAre31Bits() { return
kSmiValueSize
== 31; }
in SmiValuesAre31Bits()
149
constexpr bool SmiValuesAre32Bits() { return
kSmiValueSize
== 32; }
in SmiValuesAre32Bits()
/third_party/node/deps/v8/include/v8-include/
H
A
D
v8-internal.h
77
enum { kSmiShiftSize = 0,
kSmiValueSize
= 31 };
enumerator
80
static_cast<intptr_t>(kUintptrAllBitsSet << (
kSmiValueSize
- 1));
102
enum { kSmiShiftSize = 31,
kSmiValueSize
= 32 };
enumerator
105
static_cast<intptr_t>(kUintptrAllBitsSet << (
kSmiValueSize
- 1));
146
const int
kSmiValueSize
= PlatformSmiTagging::
kSmiValueSize
;
member
149
constexpr bool SmiValuesAre31Bits() { return
kSmiValueSize
== 31; }
in SmiValuesAre31Bits()
150
constexpr bool SmiValuesAre32Bits() { return
kSmiValueSize
== 32; }
in SmiValuesAre32Bits()
/third_party/node/deps/v8/src/objects/
H
A
D
smi.h
59
return Smi::FromInt((value << (32 -
kSmiValueSize
)) >>
in From31BitPattern()
60
(32 -
kSmiValueSize
));
in From31BitPattern()
H
A
D
property-array.h
70
kSmiValueSize
- kLengthFieldSize - 1>;
H
A
D
objects.h
261
const int kStubMinorKeyBits =
kSmiValueSize
- kStubMajorKeyBits - 1;
H
A
D
feedback-vector.h
840
STATIC_ASSERT(LEXICAL_MODE_BIT_FIELDS_Ranges::kBitsCount <=
kSmiValueSize
);
H
A
D
value-serializer.cc
500
static_assert(
kSmiValueSize
<= 32, "Expected SMI <= 32 bits.");
in WriteSmi()
/third_party/node/deps/v8/src/common/
H
A
D
globals.h
570
static_assert(
kSmiValueSize
<= 32, "Unsupported Smi tagging scheme");
573
static_assert((
kSmiValueSize
+ kSmiShiftSize + kSmiTagSize) % 32 == 0,
577
(
kSmiValueSize
+ kSmiShiftSize + kSmiTagSize) == 64;
579
(
kSmiValueSize
+ kSmiShiftSize + kSmiTagSize) == 32;
589
uintptr_t{1} << (
kSmiValueSize
+ kSmiShiftSize + kSmiTagSize - 1));
/third_party/node/deps/v8/src/runtime/
H
A
D
runtime-wasm.cc
113
STATIC_ASSERT(wasm::ValueType::kLastUsedBit + 1 <=
kSmiValueSize
);
in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/api/
H
A
D
api.cc
6068
if (kEmbedderSmiValueSize != internal::
kSmiValueSize
) {
in Initialize()
6072
kEmbedderSmiValueSize, internal::
kSmiValueSize
);
in Initialize()
/third_party/node/deps/v8/src/compiler/
H
A
D
wasm-compiler.cc
6582
STATIC_ASSERT(wasm::ValueType::kLastUsedBit + 1 <=
kSmiValueSize
);
/third_party/node/deps/v8/src/codegen/
H
A
D
code-stub-assembler.cc
1103
Int32Constant(
kSmiValueSize
== 32 ? kMinInt : (kMinInt >> 1))),
in TrySmiDiv()
Completed in 89 milliseconds