OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TypeVals
(Results
1 - 4
of
4
) sorted by null
/frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp
217
SmallVector<uint64_t, 64>
TypeVals
;
255
TypeVals
.push_back(TypeList.size());
256
Stream.EmitRecord(bitc::TYPE_CODE_NUMENTRY,
TypeVals
);
257
TypeVals
.clear();
279
TypeVals
.push_back(cast<IntegerType>(T)->getBitWidth());
285
TypeVals
.push_back(VE.getTypeID(PTy->getElementType()));
287
TypeVals
.push_back(AddressSpace);
295
TypeVals
.push_back(FT->isVarArg());
296
TypeVals
.push_back(0); // FIXME: DEAD: remove in llvm 3.0
297
TypeVals
.push_back(VE.getTypeID(FT->getReturnType()))
[
all
...]
/frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp
188
SmallVector<uint64_t, 64>
TypeVals
;
240
TypeVals
.push_back(TypeList.size());
241
Stream.EmitRecord(bitc::TYPE_CODE_NUMENTRY,
TypeVals
);
242
TypeVals
.clear();
264
TypeVals
.push_back(cast<IntegerType>(T)->getBitWidth());
270
TypeVals
.push_back(VE.getTypeID(PTy->getElementType()));
272
TypeVals
.push_back(AddressSpace);
280
TypeVals
.push_back(FT->isVarArg());
281
TypeVals
.push_back(0); // FIXME: DEAD: remove in llvm 3.0
282
TypeVals
.push_back(VE.getTypeID(FT->getReturnType()))
[
all
...]
/frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp
188
SmallVector<uint64_t, 64>
TypeVals
;
242
TypeVals
.push_back(TypeList.size());
243
Stream.EmitRecord(bitc::TYPE_CODE_NUMENTRY,
TypeVals
);
244
TypeVals
.clear();
267
TypeVals
.push_back(cast<IntegerType>(T)->getBitWidth());
273
TypeVals
.push_back(VE.getTypeID(PTy->getElementType()));
275
TypeVals
.push_back(AddressSpace);
283
TypeVals
.push_back(FT->isVarArg());
284
TypeVals
.push_back(VE.getTypeID(FT->getReturnType()));
286
TypeVals
.push_back(VE.getTypeID(FT->getParamType(i)))
[
all
...]
/external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp
327
SmallVector<uint64_t, 64>
TypeVals
;
381
TypeVals
.push_back(TypeList.size());
382
Stream.EmitRecord(bitc::TYPE_CODE_NUMENTRY,
TypeVals
);
383
TypeVals
.clear();
405
TypeVals
.push_back(cast<IntegerType>(T)->getBitWidth());
411
TypeVals
.push_back(VE.getTypeID(PTy->getElementType()));
413
TypeVals
.push_back(AddressSpace);
421
TypeVals
.push_back(FT->isVarArg());
422
TypeVals
.push_back(VE.getTypeID(FT->getReturnType()));
424
TypeVals
.push_back(VE.getTypeID(FT->getParamType(i)))
[
all
...]
Completed in 103 milliseconds