Home
last modified time | relevance | path

Searched refs:PAL (Results 1 – 22 of 22) sorted by relevance

/external/llvm/bindings/go/llvm/
DIRBindings.cpp26 const AttributeSet PAL = Func->getAttributes(); in LLVMAddFunctionAttr2() local
29 PAL.addAttributes(Func->getContext(), AttributeSet::FunctionIndex, in LLVMAddFunctionAttr2()
37 const AttributeSet PAL = Func->getAttributes(); in LLVMGetFunctionAttr2() local
38 return PAL.Raw(AttributeSet::FunctionIndex); in LLVMGetFunctionAttr2()
43 const AttributeSet PAL = Func->getAttributes(); in LLVMRemoveFunctionAttr2() local
46 PAL.removeAttributes(Func->getContext(), AttributeSet::FunctionIndex, in LLVMRemoveFunctionAttr2()
/external/llvm/lib/Bitcode/Writer/
DValueEnumerator.h139 unsigned getAttributeID(AttributeSet PAL) const { in getAttributeID() argument
140 if (PAL.isEmpty()) return 0; // Null maps to zero. in getAttributeID()
141 AttributeMapType::const_iterator I = AttributeMap.find(PAL); in getAttributeID()
146 unsigned getAttributeGroupID(AttributeSet PAL) const { in getAttributeGroupID() argument
147 if (PAL.isEmpty()) return 0; // Null maps to zero. in getAttributeGroupID()
148 AttributeGroupMapType::const_iterator I = AttributeGroupMap.find(PAL); in getAttributeGroupID()
201 void EnumerateAttributes(AttributeSet PAL);
DValueEnumerator.cpp682 void ValueEnumerator::EnumerateAttributes(AttributeSet PAL) { in EnumerateAttributes() argument
683 if (PAL.isEmpty()) return; // null is always 0. in EnumerateAttributes()
686 unsigned &Entry = AttributeMap[PAL]; in EnumerateAttributes()
689 Attribute.push_back(PAL); in EnumerateAttributes()
694 for (unsigned i = 0, e = PAL.getNumSlots(); i != e; ++i) { in EnumerateAttributes()
695 AttributeSet AS = PAL.getSlotAttributes(i); in EnumerateAttributes()
/external/llvm/lib/IR/
DFunction.cpp340 AttributeSet PAL = getAttributes(); in addAttribute() local
341 PAL = PAL.addAttribute(getContext(), i, attr); in addAttribute()
342 setAttributes(PAL); in addAttribute()
346 AttributeSet PAL = getAttributes(); in addAttributes() local
347 PAL = PAL.addAttributes(getContext(), i, attrs); in addAttributes()
348 setAttributes(PAL); in addAttributes()
352 AttributeSet PAL = getAttributes(); in removeAttributes() local
353 PAL = PAL.removeAttributes(getContext(), i, attrs); in removeAttributes()
354 setAttributes(PAL); in removeAttributes()
358 AttributeSet PAL = getAttributes(); in addDereferenceableAttr() local
[all …]
DInstructions.cpp316 AttributeSet PAL = getAttributes(); in addAttribute() local
317 PAL = PAL.addAttribute(getContext(), i, attr); in addAttribute()
318 setAttributes(PAL); in addAttribute()
322 AttributeSet PAL = getAttributes(); in addAttribute() local
323 PAL = PAL.addAttribute(getContext(), i, Kind, Value); in addAttribute()
324 setAttributes(PAL); in addAttribute()
328 AttributeSet PAL = getAttributes(); in removeAttribute() local
331 PAL = PAL.removeAttributes(Context, i, in removeAttribute()
333 setAttributes(PAL); in removeAttribute()
337 AttributeSet PAL = getAttributes(); in addDereferenceableAttr() local
[all …]
DAsmWriter.cpp2940 const AttributeSet &PAL = CI->getAttributes(); in printInstruction() local
2942 if (PAL.hasAttributes(AttributeSet::ReturnIndex)) in printInstruction()
2943 Out << ' ' << PAL.getAsString(AttributeSet::ReturnIndex); in printInstruction()
2957 writeParamOperand(CI->getArgOperand(op), PAL, op + 1); in printInstruction()
2968 if (PAL.hasAttributes(AttributeSet::FunctionIndex)) in printInstruction()
2969 Out << " #" << Machine.getAttributeGroupSlot(PAL.getFnAttributes()); in printInstruction()
2977 const AttributeSet &PAL = II->getAttributes(); in printInstruction() local
2985 if (PAL.hasAttributes(AttributeSet::ReturnIndex)) in printInstruction()
2986 Out << ' ' << PAL.getAsString(AttributeSet::ReturnIndex); in printInstruction()
3000 writeParamOperand(II->getArgOperand(op), PAL, op + 1); in printInstruction()
[all …]
DCore.cpp1738 const AttributeSet PAL = Func->getAttributes(); in LLVMAddFunctionAttr() local
1741 PAL.addAttributes(Func->getContext(), AttributeSet::FunctionIndex, in LLVMAddFunctionAttr()
1761 const AttributeSet PAL = Func->getAttributes(); in LLVMRemoveFunctionAttr() local
1764 PAL.removeAttributes(Func->getContext(), AttributeSet::FunctionIndex, in LLVMRemoveFunctionAttr()
1772 const AttributeSet PAL = Func->getAttributes(); in LLVMGetFunctionAttr() local
1773 return (LLVMAttribute)PAL.Raw(AttributeSet::FunctionIndex); in LLVMGetFunctionAttr()
/external/llvm/lib/Transforms/IPO/
DDeadArgumentElimination.cpp249 AttributeSet PAL = CS.getAttributes(); in DeleteDeadVarargs() local
250 if (!PAL.isEmpty() && PAL.getSlotIndex(PAL.getNumSlots() - 1) > NumArgs) { in DeleteDeadVarargs()
252 for (unsigned i = 0; PAL.getSlotIndex(i) <= NumArgs; ++i) in DeleteDeadVarargs()
253 AttributesVec.push_back(PAL.getSlotAttributes(i)); in DeleteDeadVarargs()
254 if (PAL.hasAttributes(AttributeSet::FunctionIndex)) in DeleteDeadVarargs()
256 PAL.getFnAttributes())); in DeleteDeadVarargs()
257 PAL = AttributeSet::get(Fn.getContext(), AttributesVec); in DeleteDeadVarargs()
265 cast<InvokeInst>(New)->setAttributes(PAL); in DeleteDeadVarargs()
269 cast<CallInst>(New)->setAttributes(PAL); in DeleteDeadVarargs()
750 const AttributeSet &PAL = F->getAttributes(); in RemoveDeadStuffFromFunction() local
[all …]
DArgumentPromotion.cpp638 const AttributeSet &PAL = F->getAttributes(); in DoPromotion() local
641 if (PAL.hasAttributes(AttributeSet::ReturnIndex)) in DoPromotion()
643 PAL.getRetAttributes())); in DoPromotion()
658 AttributeSet attrs = PAL.getParamAttributes(ArgIndex); in DoPromotion()
720 if (PAL.hasAttributes(AttributeSet::FunctionIndex)) in DoPromotion()
722 PAL.getFnAttributes())); in DoPromotion()
/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417DecodedBitStreamParser.cpp50 int32_t CBC_DecodedBitStreamPaser::PAL = 29; member in CBC_DecodedBitStreamPaser
311 if (subModeCh < PAL) { in decodeTextCompaction()
314 if (subModeCh == PAL) { in decodeTextCompaction()
337 if (subModeCh < PAL) { in decodeTextCompaction()
340 if (subModeCh == PAL) { in decodeTextCompaction()
DBC_PDF417DecodedBitStreamParser.h35 static int32_t PAL; variable
/external/llvm/include/llvm/IR/
DCallSite.h253 void setAttributes(const AttributeSet &PAL) { in setAttributes() argument
254 CALLSITE_DELEGATE_SETTER(setAttributes(PAL)); in setAttributes()
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp149 void printAttributes(const AttributeSet &PAL, const std::string &name);
477 void CppWriter::printAttributes(const AttributeSet &PAL, in printAttributes() argument
481 if (!PAL.isEmpty()) { in printAttributes()
485 for (unsigned i = 0; i < PAL.getNumSlots(); ++i) { in printAttributes()
486 unsigned index = PAL.getSlotIndex(i); in printAttributes()
487 AttrBuilder attrs(PAL.getSlotAttributes(i), index); in printAttributes()
/external/llvm/lib/Target/XCore/
DXCoreFrameLowering.cpp239 const AttributeSet &PAL = MF.getFunction()->getAttributes(); in emitPrologue() local
240 if (PAL.hasAttrSomewhere(Attribute::Nest)) in emitPrologue()
/external/llvm/lib/Target/NVPTX/
DNVPTXAsmPrinter.cpp1423 const AttributeSet &PAL = F->getAttributes(); in emitFunctionParamList() local
1475 if (!PAL.hasAttribute(paramIndex + 1, Attribute::ByVal)) { in emitFunctionParamList()
1480 unsigned align = PAL.getParamAlignment(paramIndex + 1); in emitFunctionParamList()
1561 unsigned align = PAL.getParamAlignment(paramIndex + 1); in emitFunctionParamList()
DNVPTXISelLowering.cpp2060 const AttributeSet &PAL = F->getAttributes(); in LowerFormalArguments() local
2140 if (!PAL.hasAttribute(i + 1, Attribute::ByVal)) { in LowerFormalArguments()
/external/clang/lib/CodeGen/
DCGCall.cpp1436 AttributeListType &PAL, in ConstructAttributeList() argument
1639 PAL.push_back(llvm::AttributeSet::get( in ConstructAttributeList()
1649 PAL.push_back(llvm::AttributeSet::get( in ConstructAttributeList()
1657 PAL.push_back(llvm::AttributeSet::get( in ConstructAttributeList()
1672 PAL.push_back(llvm::AttributeSet::get( in ConstructAttributeList()
1753 PAL.push_back(llvm::AttributeSet::get(getLLVMContext(), in ConstructAttributeList()
1760 PAL.push_back(llvm:: in ConstructAttributeList()
DCodeGenModule.h976 CGCalleeInfo CalleeInfo, AttributeListType &PAL,
/external/llvm/lib/AsmParser/
DLLParser.cpp4461 AttributeSet PAL = AttributeSet::get(Context, Attrs); in ParseFunctionHeader() local
4463 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy()) in ParseFunctionHeader()
4518 Fn->setAttributes(PAL); in ParseFunctionHeader()
5116 AttributeSet PAL = AttributeSet::get(Context, Attrs); in ParseInvoke() local
5121 II->setAttributes(PAL); in ParseInvoke()
5720 AttributeSet PAL = AttributeSet::get(Context, Attrs); in ParseCall() local
5727 CI->setAttributes(PAL); in ParseCall()
/external/libpng/contrib/libtests/
Dpngimage.c238 T(EXPAND_16, NONE, X, X, PAL, R),
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp4651 AttributeSet PAL = getAttributes(Record[OpNum++]); in parseFunctionBody() local
4704 cast<InvokeInst>(I)->setAttributes(PAL); in parseFunctionBody()
5031 AttributeSet PAL = getAttributes(Record[OpNum++]); in parseFunctionBody() local
5101 cast<CallInst>(I)->setAttributes(PAL); in parseFunctionBody()
/external/icu/icu4j/perf-tests/data/collation/
DTestNames_SerbianSH.txt1258 ŠANTA PAL
1380 ŠARNJAI PAL
2320 ŠOMOĐI PAL
2321 ŠOMOĐI PAL
2322 ŠOMOĐI PAL
2749 ŠULJAN PAL
6277 ANDROCKI PAL DIPL ING
6532 ARANJOŠ PAL
7304 BAGI-BENKOVIĆ PAL
7639 BAKOŠ PAL
[all …]