OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NumBytes
(Results
1 - 25
of
79
) sorted by relevancy
1
2
3
4
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfStringPool.h
31
uint64_t
NumBytes
= 0;
DwarfExpression.cpp
226
int
NumBytes
= API.getBitWidth() / 8;
227
if (
NumBytes
== 4 /*float*/ ||
NumBytes
== 8 /*double*/) {
230
emitUnsigned(
NumBytes
/*Size of the block in bytes*/);
238
for (int i = 0; i <
NumBytes
; ++i) {
/src/external/apache2/llvm/dist/llvm/lib/Support/
FormattedStream.cpp
76
unsigned
NumBytes
;
77
for (const char *End = Ptr + Size; Ptr < End; Ptr +=
NumBytes
) {
78
NumBytes
= getNumBytesForUTF8(*Ptr);
85
if ((unsigned)(End - Ptr) <
NumBytes
) {
90
ProcessUTF8CodePoint(StringRef(Ptr,
NumBytes
));
/src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/MCTargetDesc/
CSKYAsmBackend.cpp
116
unsigned
NumBytes
= alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8;
118
assert(Offset +
NumBytes
<= Data.size() && "Invalid fixup offset!");
124
if (IsLittleEndian && (
NumBytes
== 4)) {
130
for (unsigned I = 0; I !=
NumBytes
; I++) {
131
unsigned Idx = IsLittleEndian ? I : (
NumBytes
- 1 - I);
/src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/MCTargetDesc/
MSP430AsmBackend.cpp
139
unsigned
NumBytes
= alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8;
141
assert(Offset +
NumBytes
<= Data.size() && "Invalid fixup offset!");
145
for (unsigned i = 0; i !=
NumBytes
; ++i) {
/src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/MCTargetDesc/
SparcAsmBackend.cpp
304
unsigned
NumBytes
= getFixupKindNumBytes(Fixup.getKind());
309
for (unsigned i = 0; i !=
NumBytes
; ++i) {
310
unsigned Idx = Endian == support::little ? i : (
NumBytes
- 1) - i;
/src/external/apache2/llvm/dist/llvm/lib/Target/VE/MCTargetDesc/
VEAsmBackend.cpp
199
unsigned
NumBytes
= getFixupKindNumBytes(Fixup.getKind());
201
assert(Offset +
NumBytes
<= Data.size() && "Invalid fixup offset!");
205
for (unsigned i = 0; i !=
NumBytes
; ++i) {
206
unsigned Idx = Endian == support::little ? i : (
NumBytes
- 1) - i;
/src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyAsmBackend.cpp
103
unsigned
NumBytes
= alignTo(Info.TargetSize, 8) / 8;
111
assert(Offset +
NumBytes
<= Data.size() && "Invalid fixup offset!");
115
for (unsigned I = 0; I !=
NumBytes
; ++I)
/src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
SectionSizes.cpp
63
std::string
NumBytes
= std::to_string(It.second);
64
OS << right_justify(
NumBytes
, SizeColWidth) << " ("
/src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/MCTargetDesc/
LanaiAsmBackend.cpp
99
unsigned
NumBytes
= (getFixupKindInfo(Kind).TargetSize + 7) / 8;
106
for (unsigned i = 0; i !=
NumBytes
; ++i) {
117
for (unsigned i = 0; i !=
NumBytes
; ++i) {
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUAsmBackend.cpp
145
unsigned
NumBytes
= getFixupKindNumBytes(Fixup.getKind());
147
assert(Offset +
NumBytes
<= Data.size() && "Invalid fixup offset!");
151
for (unsigned i = 0; i !=
NumBytes
; ++i)
/src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp
54
uint64_t
NumBytes
= 0;
58
NumBytes
= FrameSize - MSP430FI->getCalleeSavedFrameSize();
63
MFI.setOffsetAdjustment(-
NumBytes
);
79
NumBytes
= StackSize - MSP430FI->getCalleeSavedFrameSize();
88
if (
NumBytes
) { // adjust stack pointer: SP -=
numbytes
91
//
NumBytes
-= mergeSPUpdates(MBB, MBBI, true);
94
// mergeSPUpdatesDown(MBB, MBBI, &
NumBytes
);
96
if (
NumBytes
) {
99
.addReg(MSP430::SP).addImm(
NumBytes
);
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.cpp
258
unsigned
NumBytes
= (getFixupKindInfo(Kind).TargetSize + 7) / 8;
283
for (unsigned i = 0; i !=
NumBytes
; ++i) {
295
for (unsigned i = 0; i !=
NumBytes
; ++i) {
/src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCAsmBackend.cpp
148
unsigned
NumBytes
= getFixupKindNumBytes(Kind);
153
for (unsigned i = 0; i !=
NumBytes
; ++i) {
154
unsigned Idx = Endian == support::little ? i : (
NumBytes
- 1 - i);
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOX86_64.h
169
unsigned
NumBytes
= 1 << Size;
171
SignExtend64(readBytesUnaligned(LocalAddress,
NumBytes
),
NumBytes
* 8);
RuntimeDyldMachOAArch64.h
37
unsigned
NumBytes
= 1 << RE.Size;
53
if (
NumBytes
!= 4 &&
NumBytes
!= 8) {
70
assert(
NumBytes
== 4 && "Invalid relocation size.");
82
if (
NumBytes
== 4)
155
void encodeAddend(uint8_t *LocalAddress, unsigned
NumBytes
,
163
assert((
NumBytes
== 4 ||
NumBytes
== 8) && "Invalid relocation size.");
170
assert(
NumBytes
== 4 && "Invalid relocation size.");
182
if (
NumBytes
== 4
[
all
...]
RuntimeDyldMachOI386.h
160
unsigned
NumBytes
= 1 << Size;
161
uint64_t Addend = readBytesUnaligned(LocalAddress,
NumBytes
);
/src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
SparcFrameLowering.cpp
43
int
NumBytes
,
51
if (
NumBytes
>= -4096 &&
NumBytes
< 4096) {
53
.addReg(SP::O6).addImm(
NumBytes
);
59
if (
NumBytes
>= 0) {
61
// sethi %hi(
NumBytes
), %g1
62
// or %g1, %lo(
NumBytes
), %g1
65
.addImm(HI22(
NumBytes
));
67
.addReg(SP::G1).addImm(LO10(
NumBytes
));
74
// sethi %hix(
NumBytes
), %g
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/VE/
VEFrameLowering.cpp
138
uint64_t
NumBytes
,
186
uint64_t
NumBytes
,
229
int64_t
NumBytes
,
234
if (
NumBytes
== 0) {
236
} else if (isInt<7>(
NumBytes
)) {
237
// adds.l %s11,
NumBytes
@lo, %s11
240
.addImm(
NumBytes
);
241
} else if (isInt<32>(
NumBytes
)) {
242
// lea %s11,
NumBytes
@lo(, %s11)
246
.addImm(Lo_32(
NumBytes
));
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/AST/
FormatString.cpp
309
unsigned
NumBytes
= llvm::getNumBytesForUTF8(FirstByte);
310
if (
NumBytes
== 1)
312
if (SB +
NumBytes
> SE)
315
Len =
NumBytes
+ 1;
/src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/
AVRAsmBackend.cpp
374
auto
NumBytes
= (NumBits / 8) + ((NumBits % 8) == 0 ? 0 : 1);
380
assert(Offset +
NumBytes
<= Data.size() && "Invalid fixup offset!");
384
for (unsigned i = 0; i <
NumBytes
; ++i) {
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonAsmBackend.cpp
431
unsigned
NumBytes
= getFixupKindNumBytes(Kind);
432
assert(Offset +
NumBytes
<= Data.size() && "Invalid fixup offset!");
517
uint32_t OldData = 0; for (unsigned i = 0; i <
NumBytes
; i++) OldData |=
527
for (unsigned i = 0; i <
NumBytes
; i++){
533
for (unsigned i = 0; i <
NumBytes
; i++) NewData |=
/src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/
RISCVAsmBackend.cpp
402
unsigned
NumBytes
= alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8;
404
assert(Offset +
NumBytes
<= Data.size() && "Invalid fixup offset!");
408
for (unsigned i = 0; i !=
NumBytes
; ++i) {
/src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZAsmPrinter.cpp
551
// Emit the largest nop instruction smaller than or equal to
NumBytes
554
unsigned
NumBytes
, const MCSubtargetInfo &STI) {
555
if (
NumBytes
< 2) {
559
else if (
NumBytes
< 4) {
564
else if (
NumBytes
< 6) {
642
// [<def>], <id>, <
numBytes
>, <target>, <numArgs>
691
unsigned
NumBytes
= Opers.getNumPatchBytes();
692
assert(
NumBytes
>= EncodedBytes &&
694
assert((
NumBytes
- EncodedBytes) % 2 == 0 &&
696
while (EncodedBytes <
NumBytes
)
[
all
...]
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeEmitterGen.cpp
478
int
NumBytes
= (BitWidth + 7) / 8;
485
<< NumWords << "], " <<
NumBytes
<< ");\n"
Completed in 27 milliseconds
1
2
3
4
Indexes created Wed Mar 04 15:26:31 UTC 2026