OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Abbv
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp
147
const BitCodeAbbrev *
Abbv
= getAbbrev(AbbrevID);
149
for (unsigned i = 0, e =
Abbv
->getNumOperandInfos(); i != e; ++i) {
150
const BitCodeAbbrevOp &Op =
Abbv
->getOperandInfo(i);
166
const BitCodeAbbrevOp &EltEnc =
Abbv
->getOperandInfo(++i);
205
const BitCodeAbbrev *
Abbv
= getAbbrev(AbbrevID);
208
assert(
Abbv
->getNumOperandInfos() != 0 && "no record code in abbreviation?");
209
const BitCodeAbbrevOp &CodeOp =
Abbv
->getOperandInfo(0);
216
for (unsigned i = 1, e =
Abbv
->getNumOperandInfos(); i != e; ++i) {
217
const BitCodeAbbrevOp &Op =
Abbv
->getOperandInfo(i);
235
const BitCodeAbbrevOp &EltEnc =
Abbv
->getOperandInfo(++i)
[
all
...]
/external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp
331
BitCodeAbbrev *
Abbv
= new BitCodeAbbrev();
332
Abbv
->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
333
Abbv
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
334
Abbv
->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
335
unsigned PtrAbbrev = Stream.EmitAbbrev(
Abbv
);
338
Abbv
= new BitCodeAbbrev();
339
Abbv
->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
340
Abbv
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
341
Abbv
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
342
Abbv
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits))
[
all
...]
Completed in 303 milliseconds