OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:numbytes
(Results
226 - 250
of
448
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/llvm/lib/MC/
MCStreamer.cpp
133
/// EmitFill - Emit
NumBytes
bytes worth of the value specified by
135
void MCStreamer::EmitFill(uint64_t
NumBytes
, uint8_t FillValue) {
137
for (uint64_t i = 0, e =
NumBytes
; i != e; ++i)
142
void MCStreamer::EmitZeros(uint64_t
NumBytes
) {
143
EmitFill(
NumBytes
, 0);
/external/llvm/lib/Target/AArch64/
AArch64AsmPrinter.cpp
392
// [<def>], <id>, <
numBytes
>, <target>, <numArgs>
424
unsigned
NumBytes
= Opers.getMetaOper(PatchPointOpers::NBytesPos).getImm();
425
assert(
NumBytes
>= EncodedBytes &&
427
assert((
NumBytes
- EncodedBytes) % 4 == 0 &&
429
for (unsigned i = EncodedBytes; i <
NumBytes
; i += 4)