OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ByteSize
(Results
1 - 13
of
13
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h
28
uint32_t
ByteSize
= 0;
DWARFAbbreviationDeclaration.h
34
AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<uint8_t>
ByteSize
)
37
this->
ByteSize
.HasByteSize =
ByteSize
.hasValue();
38
if (this->
ByteSize
.HasByteSize)
39
this->
ByteSize
.
ByteSize
= *
ByteSize
;
46
/// The following field is used for
ByteSize
for non-implicit_const
51
///
ByteSize
contains the fixed size in bytes for the Form in this
61
uint8_t
ByteSize
;
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIASourceFile.cpp
33
DWORD
ByteSize
= 0;
34
HRESULT Result = SourceFile->get_checksum(0, &
ByteSize
, nullptr);
35
if (
ByteSize
== 0)
37
std::vector<BYTE> ChecksumBytes(
ByteSize
);
38
Result = SourceFile->get_checksum(
ByteSize
, &
ByteSize
, &ChecksumBytes[0]);
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.cpp
72
Optional<uint8_t>
ByteSize
;
99
if ((
ByteSize
= dwarf::getFixedFormByteSize(F, dwarf::FormParams()))) {
101
FixedAttributeSize->NumBytes += *
ByteSize
;
111
AttributeSpecs.push_back(AttributeSpec(A, F,
ByteSize
));
187
size_t
ByteSize
= NumBytes;
189
ByteSize
+= NumAddrs * U.getAddressByteSize();
191
ByteSize
+= NumRefAddrs * U.getRefAddrByteSize();
193
ByteSize
+= NumDwarfOffsets * U.getDwarfOffsetByteSize();
194
return
ByteSize
;
201
if (
ByteSize
.HasByteSize
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFLinkerDeclContext.cpp
104
unsigned
ByteSize
= std::numeric_limits<uint32_t>::max();
115
ByteSize
= dwarf::toUnsigned(DIE.find(dwarf::DW_AT_byte_size),
160
DeclContext Key(Hash, Line,
ByteSize
, Tag, NameRef, FileRef, Context);
167
new (Allocator) DeclContext(Hash, Line,
ByteSize
, Tag, NameRef, FileRef,
/src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
DWARFLinkerDeclContext.h
83
DeclContext(unsigned Hash, uint32_t Line, uint32_t
ByteSize
, uint16_t Tag,
86
: QualifiedNameHash(Hash), Line(Line),
ByteSize
(
ByteSize
), Tag(Tag),
107
uint32_t
ByteSize
= 0;
174
LHS->Line == RHS->Line && LHS->
ByteSize
== RHS->
ByteSize
&&
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfExpression.cpp
83
unsigned
ByteSize
= SizeInBits / SizeOfByte;
84
emitUnsigned(
ByteSize
);
CodeViewDebug.cpp
1656
uint32_t
ByteSize
;
1659
ByteSize
= Ty->getSizeInBits() / 8;
1667
switch (
ByteSize
) {
1676
switch (
ByteSize
) {
1685
switch (
ByteSize
) {
1695
switch (
ByteSize
) {
1704
switch (
ByteSize
) {
1713
switch (
ByteSize
) {
1719
if (
ByteSize
== 1)
1723
if (
ByteSize
== 1
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp
264
const unsigned
ByteSize
= 1U << i;
265
const unsigned BitSize =
ByteSize
* 8;
266
std::string ByteSizeStr = utostr(
ByteSize
);
748
const unsigned
ByteSize
= 1U << Idx;
749
const unsigned BitSize =
ByteSize
* 8;
763
const unsigned
ByteSize
= 1U << Idx;
764
const unsigned BitSize =
ByteSize
* 8;
780
const unsigned
ByteSize
= 1U << Idx;
781
const unsigned BitSize =
ByteSize
* 8;
794
const unsigned
ByteSize
= 1U << Idx
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
RawTypes.h
315
support::ulittle32_t
ByteSize
; // Number of bytes of names buffer.
/src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp
2401
/// the constant being splatted. The
ByteSize
field indicates the number of
2403
SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned
ByteSize
, SelectionDAG &DAG) {
2406
// If
ByteSize
of the splat is bigger than the element size of the
2411
if (EltSize <
ByteSize
) {
2412
unsigned Multiple =
ByteSize
/EltSize; // Number of BV entries per spltval.
2484
if (ValSizeInBytes <
ByteSize
) return SDValue();
2487
// of a repeated bit pattern of size
ByteSize
.
2488
if (!APInt(ValSizeInBytes * 8, Value).isSplat(
ByteSize
* 8))
2492
int MaskVal = SignExtend32(Value,
ByteSize
* 8);
14326
unsigned
ByteSize
= Op1VT.getScalarSizeInBits() / 8
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp
13710
unsigned
ByteSize
= VT.getSizeInBits().getKnownMinSize() / 8;
13712
EVT::getVectorVT(Ctx, MVT::i8, ElementCount::getScalable(
ByteSize
));
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.cpp
9309
const uint64_t
ByteSize
= DL.getTypeAllocSize(RetTy);
9311
int FrameIdx = MFI.CreateStackObject(
ByteSize
, StackAlign, false);
Completed in 56 milliseconds
Indexes created Mon Jun 08 00:24:58 UTC 2026