/external/llvm/lib/Bitcode/Writer/ |
ValueEnumerator.h | 101 unsigned getAttributeID(const AttrListPtr &PAL) const { 102 if (PAL.isEmpty()) return 0; // Null maps to zero. 103 AttributeMapType::const_iterator I = AttributeMap.find(PAL.getRawPointer()); 149 void EnumerateAttributes(const AttrListPtr &PAL);
|
ValueEnumerator.cpp | 420 void ValueEnumerator::EnumerateAttributes(const AttrListPtr &PAL) { 421 if (PAL.isEmpty()) return; // null is always 0. 423 unsigned &Entry = AttributeMap[PAL.getRawPointer()]; 426 Attributes.push_back(PAL);
|
/frameworks/compile/slang/BitWriter_2_9/ |
ValueEnumerator.h | 97 unsigned getAttributeID(const AttrListPtr &PAL) const { 98 if (PAL.isEmpty()) return 0; // Null maps to zero. 99 AttributeMapType::const_iterator I = AttributeMap.find(PAL.getRawPointer()); 145 void EnumerateAttributes(const AttrListPtr &PAL);
|
ValueEnumerator.cpp | 386 void ValueEnumerator::EnumerateAttributes(const AttrListPtr &PAL) { 387 if (PAL.isEmpty()) return; // null is always 0. 389 unsigned &Entry = AttributeMap[PAL.getRawPointer()]; 392 Attributes.push_back(PAL);
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
ValueEnumerator.h | 97 unsigned getAttributeID(const AttrListPtr &PAL) const { 98 if (PAL.isEmpty()) return 0; // Null maps to zero. 99 AttributeMapType::const_iterator I = AttributeMap.find(PAL.getRawPointer()); 145 void EnumerateAttributes(const AttrListPtr &PAL);
|
ValueEnumerator.cpp | 386 void ValueEnumerator::EnumerateAttributes(const AttrListPtr &PAL) { 387 if (PAL.isEmpty()) return; // null is always 0. 389 unsigned &Entry = AttributeMap[PAL.getRawPointer()]; 392 Attributes.push_back(PAL);
|
/external/llvm/lib/VMCore/ |
Function.cpp | 247 AttrListPtr PAL = getAttributes(); 248 PAL = PAL.addAttr(i, attr); 249 setAttributes(PAL); 253 AttrListPtr PAL = getAttributes(); 254 PAL = PAL.removeAttr(i, attr); 255 setAttributes(PAL);
|
Attributes.cpp | 192 AttributeListImpl *PAL = 197 if (!PAL) { 198 PAL = new AttributeListImpl(Attrs, NumAttrs); 199 AttributesLists->InsertNode(PAL, InsertPos); 203 return AttrListPtr(PAL); 350 dbgs() << "PAL[ ";
|
AsmWriter.cpp | [all...] |
Instructions.cpp | 328 AttrListPtr PAL = getAttributes(); 329 PAL = PAL.addAttr(i, attr); 330 setAttributes(PAL); 334 AttrListPtr PAL = getAttributes(); 335 PAL = PAL.removeAttr(i, attr); 336 setAttributes(PAL); 568 AttrListPtr PAL = getAttributes(); 569 PAL = PAL.addAttr(i, attr) [all...] |
Core.cpp | [all...] |
/external/llvm/lib/Transforms/IPO/ |
DeadArgumentElimination.cpp | 234 AttrListPtr PAL = CS.getAttributes(); 235 if (!PAL.isEmpty() && PAL.getSlot(PAL.getNumSlots() - 1).Index > NumArgs) { 237 for (unsigned i = 0; PAL.getSlot(i).Index <= NumArgs; ++i) 238 AttributesVec.push_back(PAL.getSlot(i)); 239 if (Attributes FnAttrs = PAL.getFnAttributes()) 241 PAL = AttrListPtr::get(AttributesVec.begin(), AttributesVec.end()); 249 cast<InvokeInst>(New)->setAttributes(PAL); 253 cast<CallInst>(New)->setAttributes(PAL); [all...] |
PruneEH.cpp | 148 const AttrListPtr &PAL = F->getAttributes(); 149 const AttrListPtr &NPAL = PAL.addAttr(~0, NewAttributes); 150 if (PAL != NPAL) {
|
ArgumentPromotion.cpp | 520 const AttrListPtr &PAL = F->getAttributes(); 523 if (Attributes attrs = PAL.getRetAttributes()) 540 if (Attributes attrs = PAL.getParamAttributes(ArgIndex)) 593 if (Attributes attrs = PAL.getFnAttributes()) [all...] |
/external/llvm/include/llvm/Support/ |
CallSite.h | 183 void setAttributes(const AttrListPtr &PAL) { 184 CALLSITE_DELEGATE_SETTER(setAttributes(PAL));
|
/external/qemu/distrib/sdl-1.2.12/src/video/xbios/ |
SDL_xbios.c | 394 /* Keep vga/rvb, and pal/ntsc bits */ 400 newvmode &= ~(VGA|PAL); 401 newvmode |= XBIOS_oldvmode & (VGA|PAL);
|
/external/llvm/lib/Target/CppBackend/ |
CPPBackend.cpp | 143 void printAttributes(const AttrListPtr &PAL, const std::string &name); 446 void CppWriter::printAttributes(const AttrListPtr &PAL, 450 if (!PAL.isEmpty()) { 454 for (unsigned i = 0; i < PAL.getNumSlots(); ++i) { 455 unsigned index = PAL.getSlot(i).Index; 456 Attributes attrs = PAL.getSlot(i).Attrs; [all...] |
/external/clang/lib/CodeGen/ |
CGCall.cpp | [all...] |
CodeGenModule.h | 797 /// \param PAL [out] - On return, the attribute list to use. 801 AttributeListType &PAL, [all...] |
/external/llvm/lib/AsmParser/ |
LLParser.cpp | [all...] |
/external/llvm/lib/Bitcode/Reader/ |
BitcodeReader.cpp | [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
BitcodeReader.cpp | [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
BitcodeReader.cpp | [all...] |
/external/zxing/core/ |
core.jar | |