OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ByteAlignment
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/MC/
MCELFStreamer.h
55
unsigned
ByteAlignment
);
80
unsigned Size = 0, unsigned
ByteAlignment
= 0) {
84
uint64_t Size, unsigned
ByteAlignment
= 0) {
88
virtual void EmitValueToAlignment(unsigned
ByteAlignment
, int64_t Value = 0,
91
virtual void EmitCodeAlignment(unsigned
ByteAlignment
,
107
unsigned
ByteAlignment
;
MCELFStreamer.cpp
195
unsigned
ByteAlignment
) {
213
struct LocalCommon L = {&SD, Size,
ByteAlignment
};
216
SD.setCommon(Size,
ByteAlignment
);
228
// FIXME:
ByteAlignment
is not needed here, but is required.
238
void MCELFStreamer::EmitValueToAlignment(unsigned
ByteAlignment
,
244
MaxBytesToEmit =
ByteAlignment
;
245
new MCAlignFragment(
ByteAlignment
, Value, ValueSize, MaxBytesToEmit,
249
if (
ByteAlignment
> getCurrentSectionData()->getAlignment())
250
getCurrentSectionData()->setAlignment(
ByteAlignment
);
253
void MCELFStreamer::EmitCodeAlignment(unsigned
ByteAlignment
,
[
all
...]
MCAsmStreamer.cpp
156
unsigned
ByteAlignment
);
165
unsigned Size = 0, unsigned
ByteAlignment
= 0);
168
uint64_t Size, unsigned
ByteAlignment
= 0);
187
virtual void EmitValueToAlignment(unsigned
ByteAlignment
, int64_t Value = 0,
191
virtual void EmitCodeAlignment(unsigned
ByteAlignment
,
472
unsigned
ByteAlignment
) {
474
if (
ByteAlignment
!= 0) {
476
OS << ',' <<
ByteAlignment
;
478
OS << ',' << Log2_32(
ByteAlignment
);
494
unsigned Size, unsigned
ByteAlignment
) {
[
all
...]
/external/llvm/lib/Target/PTX/
PTXMCAsmStreamer.cpp
129
unsigned
ByteAlignment
);
138
unsigned Size = 0, unsigned
ByteAlignment
= 0);
141
uint64_t Size, unsigned
ByteAlignment
= 0);
155
virtual void EmitValueToAlignment(unsigned
ByteAlignment
, int64_t Value = 0,
159
virtual void EmitCodeAlignment(unsigned
ByteAlignment
,
284
unsigned
ByteAlignment
) {}
289
unsigned Size, unsigned
ByteAlignment
) {}
293
uint64_t Size, unsigned
ByteAlignment
) {}
424
void PTXMCAsmStreamer::EmitValueToAlignment(unsigned
ByteAlignment
,
430
if (isPowerOf2_32(
ByteAlignment
)) {
[
all
...]
Completed in 219 milliseconds