/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/ |
H A D | DXILValueEnumerator.h | 174 unsigned getAttributeListID(AttributeList PAL) const { in getAttributeListID() argument 175 if (PAL.isEmpty()) in getAttributeListID() 177 AttributeListMapType::const_iterator I = AttributeListMap.find(PAL); in getAttributeListID() 299 void EnumerateAttributes(AttributeList PAL);
|
H A D | DXILValueEnumerator.cpp | 996 void ValueEnumerator::EnumerateAttributes(AttributeList PAL) { in EnumerateAttributes() argument 997 if (PAL.isEmpty()) in EnumerateAttributes() 1001 unsigned &Entry = AttributeListMap[PAL]; in EnumerateAttributes() 1004 AttributeLists.push_back(PAL); in EnumerateAttributes() 1009 for (unsigned i : PAL.indexes()) { in EnumerateAttributes() 1010 AttributeSet AS = PAL.getAttributes(i); in EnumerateAttributes()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | DeadArgumentElimination.cpp | 192 AttributeList PAL = CB->getAttributes(); in deleteDeadVarargs() local 193 if (!PAL.isEmpty()) { in deleteDeadVarargs() 196 ArgAttrs.push_back(PAL.getParamAttrs(ArgNo)); in deleteDeadVarargs() 197 PAL = AttributeList::get(F.getContext(), PAL.getFnAttrs(), in deleteDeadVarargs() 198 PAL.getRetAttrs(), ArgAttrs); in deleteDeadVarargs() 214 NewCB->setAttributes(PAL); in deleteDeadVarargs() 750 const AttributeList &PAL = F->getAttributes(); in removeDeadStuffFromFunction() local 764 ArgAttrVec.push_back(PAL.getParamAttrs(ArgI)); in removeDeadStuffFromFunction() 765 HasLiveReturnedArg |= PAL.hasParamAttr(ArgI, Attribute::Returned); in removeDeadStuffFromFunction() 840 AttrBuilder RAttrs(F->getContext(), PAL.getRetAttrs()); in removeDeadStuffFromFunction() [all …]
|
H A D | ExpandVariadics.cpp | 794 AttributeList PAL = CB->getAttributes(); in expandCall() local 795 if (!PAL.isEmpty()) { in expandCall() 798 ArgAttrs.push_back(PAL.getParamAttrs(ArgNo)); in expandCall() 799 PAL = in expandCall() 800 AttributeList::get(Ctx, PAL.getFnAttrs(), PAL.getRetAttrs(), ArgAttrs); in expandCall() 831 NewCB->setAttributes(PAL); in expandCall()
|
H A D | ArgumentPromotion.cpp | 128 AttributeList PAL = F->getAttributes(); in doPromotion() local 137 ArgAttrVec.push_back(PAL.getParamAttrs(ArgNo)); in doPromotion() 183 NF->setAttributes(AttributeList::get(F->getContext(), PAL.getFnAttrs(), in doPromotion() 184 PAL.getRetAttrs(), ArgAttrVec)); in doPromotion()
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
H A D | ValueEnumerator.h | 175 unsigned getAttributeListID(AttributeList PAL) const { in getAttributeListID() argument 176 if (PAL.isEmpty()) return 0; // Null maps to zero. in getAttributeListID() 177 AttributeListMapType::const_iterator I = AttributeListMap.find(PAL); in getAttributeListID() 297 void EnumerateAttributes(AttributeList PAL);
|
H A D | ValueEnumerator.cpp | 1028 void ValueEnumerator::EnumerateAttributes(AttributeList PAL) { in EnumerateAttributes() argument 1029 if (PAL.isEmpty()) return; // null is always 0. in EnumerateAttributes() 1032 unsigned &Entry = AttributeListMap[PAL]; in EnumerateAttributes() 1035 AttributeLists.push_back(PAL); in EnumerateAttributes() 1040 for (unsigned i : PAL.indexes()) { in EnumerateAttributes() 1041 AttributeSet AS = PAL.getAttributes(i); in EnumerateAttributes()
|
/freebsd/sys/contrib/device-tree/Bindings/media/i2c/ |
H A D | tvp514x.txt | 7 conversion and decoding of NTSC, PAL and SECAM composite and S-video into
|
H A D | tvp5150.txt | 3 The TVP5150 and TVP5151 are video decoders that convert baseband NTSC and PAL
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | Lint.cpp | 233 AttributeList PAL = I.getAttributes(); in visitCallBase() local 238 if (PAL.hasParamAttr(ArgNo, Attribute::ByVal)) in visitCallBase() 270 const AttributeList &PAL = CI->getAttributes(); in visitCallBase() local 275 if (PAL.hasParamAttr(ArgNo++, Attribute::ByVal)) in visitCallBase()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | AsmWriter.cpp | 4408 const AttributeList &PAL = CI->getAttributes(); in printInstruction() local 4410 if (PAL.hasRetAttrs()) in printInstruction() 4411 Out << ' ' << PAL.getAsString(AttributeList::ReturnIndex); in printInstruction() 4427 writeParamOperand(CI->getArgOperand(op), PAL.getParamAttrs(op)); in printInstruction() 4441 if (PAL.hasFnAttrs()) in printInstruction() 4442 Out << " #" << Machine.getAttributeGroupSlot(PAL.getFnAttrs()); in printInstruction() 4449 const AttributeList &PAL = II->getAttributes(); in printInstruction() local 4457 if (PAL.hasRetAttrs()) in printInstruction() 4458 Out << ' ' << PAL.getAsString(AttributeList::ReturnIndex); in printInstruction() 4475 writeParamOperand(II->getArgOperand(op), PAL.getParamAttrs(op)); in printInstruction() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXAsmPrinter.cpp | 1500 const AttributeList &PAL = F->getAttributes(); in emitFunctionParamList() local 1555 auto getOptimalAlignForParam = [TLI, &DL, &PAL, F, in emitFunctionParamList() 1562 MaybeAlign ParamAlign = PAL.getParamAlignment(paramIndex); in emitFunctionParamList() 1566 if (!PAL.hasParamAttr(paramIndex, Attribute::ByVal)) { in emitFunctionParamList() 1649 Type *ETy = PAL.getParamByValType(paramIndex); in emitFunctionParamList() 1661 F, ETy, PAL.getParamAlignment(paramIndex).valueOrOne(), DL); in emitFunctionParamList()
|
H A D | NVPTXISelLowering.cpp | 3177 const AttributeList &PAL = F->getAttributes(); in LowerFormalArguments() local 3245 if (!PAL.hasParamAttr(i, Attribute::ByVal)) { in LowerFormalArguments()
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | animation | 478 >>4 belong&0xFFFFFF00 0x30024000 \b, PAL Capture 482 >>>5 beshort&0x0FFF 0x0240 \b PAL 486 >>>7 byte&0xF0 0x80 \b, PAL 4:3 498 >>>5 beshort&0x0FFF 0x0120 \b PAL 502 >>>7 byte&0xF0 0x80 \b, PAL 4:3 504 >>>5 beshort&0x0FFF 0x0240 \b PAL 625 510 >>>5 beshort&0x0FFF 0x0240 \b PAL 625 516 >>>5 beshort&0x0FFF 0x0240 \b PAL 625 956 >3 byte &0x80 (PAL)
|
H A D | console | 45 >>12 byte&0x03 =0x1 [PAL] 46 >>12 byte&0x02 =0x2 [NTSC+PAL] 641 >>0 ubelong&0x00FF0000 0x00FF0000 PAL 642 >>0 ubelong&0x00FF0000 0x00FE0000 PAL [except AU/NZ] 923 >>0x15 byte &0x2 \b, PAL standard 1202 >>>0x39 byte 1 (PAL)
|
H A D | riff | 245 >8 string PAL\ \b, palette 251 # Extended PAL Format 253 # Simple PAL Format 843 >8 string PAL \b, palette
|
H A D | audio | 331 >122 byte&0x2 =1 dual PAL/NTSC 332 >122 byte&0x1 =1 PAL 345 >18 byte&0x2 =1 dual PAL/NTSC 347 >>18 byte&0x1 =1 PAL
|
H A D | c64 | 299 # video standard like: 0~PAL 1~NTSC 2~OLD NTSC 3~PALN 301 >0xE ubyte 0 PAL
|
H A D | windows | 1588 0 string JASC-PAL\r\n PaintShop Pro color palette
|
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/ |
H A D | XCoreFrameLowering.cpp | 239 const AttributeList &PAL = MF.getFunction().getAttributes(); in emitPrologue() local 240 if (PAL.hasAttrSomewhere(Attribute::Nest)) in emitPrologue()
|
/freebsd/share/misc/ |
H A D | usb_vendors | 1300 1312 WinFast TV - PAL BG + FM 1301 1313 WinFast TV - PAL BG+TXT + FM 1302 1314 WinFast TV Audio - PHP PAL I 1303 1315 WinFast TV Audio - PHP PAL I+TXT 1304 1316 WinFast TV Audio - PHP PAL DK 1305 1317 WinFast TV Audio - PHP PAL DK+TXT 1306 1318 WinFast TV - PAL I/DK + FM 1307 1319 WinFast TV - PAL N + FM 1315 1322 WinFast TV - PAL BG 1316 1323 WinFast TV - PAL BG+TXT [all …]
|
H A D | pci_vendors | 9022 127a 0002 Bt878 Mediastream Controller PAL BG 9023 127a 0003 Bt878a Mediastream Controller PAL BG 9032 14f1 0002 Bt878 Mediastream Controller PAL BG 9033 14f1 0003 Bt878a Mediastream Controller PAL BG 9093 127a 0122 Bt879 Video Capture PAL I 9095 127a 0222 Bt879 Video Capture PAL BG 9099 127a 1122 Bt879 Video Capture PAL I 9100 127a 1222 Bt879 Video Capture PAL BG 9102 127a 1522 Bt879a Video Capture PAL I 9103 127a 1622 Bt879a Video Capture PAL BG [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 6433 AttributeList PAL = in parseFunctionHeader() local 6437 if (PAL.hasParamAttr(0, Attribute::StructRet) && !RetType->isVoidTy()) in parseFunctionHeader() 6504 Fn->setAttributes(PAL); in parseFunctionHeader() 7353 AttributeList PAL = in parseInvoke() local 7360 II->setAttributes(PAL); in parseInvoke() 7666 AttributeList PAL = in parseCallBr() local 7674 CBI->setAttributes(PAL); in parseCallBr() 8061 AttributeList PAL = in parseCall() local 8088 CI->setAttributes(PAL); in parseCall()
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 5737 AttributeList PAL = getAttributes(Record[OpNum++]); in parseFunctionBody() local 5806 cast<InvokeInst>(I)->setAttributes(PAL); in parseFunctionBody() 5827 AttributeList PAL = getAttributes(Record[OpNum++]); in parseFunctionBody() local 5961 cast<CallBrInst>(I)->setAttributes(PAL); in parseFunctionBody() 6627 AttributeList PAL = getAttributes(Record[OpNum++]); in parseFunctionBody() local 6712 cast<CallInst>(I)->setAttributes(PAL); in parseFunctionBody()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenModule.cpp | 2164 llvm::AttributeList PAL; in SetLLVMFunctionAttributes() local 2165 ConstructAttributeList(F->getName(), Info, GD, PAL, CallingConv, in SetLLVMFunctionAttributes() 2175 F->setAttributes(PAL); in SetLLVMFunctionAttributes()
|