| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | FormatToken.h | 1034 kw_final = &IdentTable.get("final"); in AdditionalKeywords() 1035 kw_override = &IdentTable.get("override"); in AdditionalKeywords() 1036 kw_in = &IdentTable.get("in"); in AdditionalKeywords() 1037 kw_of = &IdentTable.get("of"); in AdditionalKeywords() 1038 kw_CF_CLOSED_ENUM = &IdentTable.get("CF_CLOSED_ENUM"); in AdditionalKeywords() 1039 kw_CF_ENUM = &IdentTable.get("CF_ENUM"); in AdditionalKeywords() 1040 kw_CF_OPTIONS = &IdentTable.get("CF_OPTIONS"); in AdditionalKeywords() 1041 kw_NS_CLOSED_ENUM = &IdentTable.get("NS_CLOSED_ENUM"); in AdditionalKeywords() 1042 kw_NS_ENUM = &IdentTable.get("NS_ENUM"); in AdditionalKeywords() 1043 kw_NS_ERROR_ENUM = &IdentTable.get("NS_ERROR_ENUM"); in AdditionalKeywords() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Frontend/HLSL/ |
| H A D | RootSignatureMetadata.cpp | 78 return MDNode::get(Ctx, GeneratedMetadata); in BuildRootSignature() 84 MDString::get(Ctx, "RootFlags"), in BuildRootFlags() 85 ConstantAsMetadata::get(Builder.getInt32(llvm::to_underlying(Flags))), in BuildRootFlags() 87 return MDNode::get(Ctx, Operands); in BuildRootFlags() 93 MDString::get(Ctx, "RootConstants"), in BuildRootConstants() 94 ConstantAsMetadata::get( in BuildRootConstants() 96 ConstantAsMetadata::get(Builder.getInt32(Constants.Reg.Number)), in BuildRootConstants() 97 ConstantAsMetadata::get(Builder.getInt32(Constants.Space)), in BuildRootConstants() 98 ConstantAsMetadata::get(Builder.getInt32(Constants.Num32BitConstants)), in BuildRootConstants() 100 return MDNode::get(Ctx, Operands); in BuildRootConstants() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | LocalizationChecker.cpp | 134 UIMethods[&Ctx.Idents.get(#receiver)]; 137 {Ctx.Selectors.getNullarySelector(&Ctx.Idents.get(#method)), argument}); 140 {Ctx.Selectors.getUnarySelector(&Ctx.Idents.get(#method)), argument}); 156 &Ctx.Idents.get("initWithTitle"), &Ctx.Idents.get("image"), in initUIMethods() 157 &Ctx.Idents.get("tag")}; in initUIMethods() 160 &Ctx.Idents.get("initWithTitle"), &Ctx.Idents.get("image"), in initUIMethods() 161 &Ctx.Idents.get("selectedImage")}; in initUIMethods() 173 &Ctx.Idents.get("rowActionWithStyle"), &Ctx.Idents.get("title"), in initUIMethods() 174 &Ctx.Idents.get("handler")}; in initUIMethods() 185 &Ctx.Idents.get("radioButtonWithTitle"), &Ctx.Idents.get("target"), in initUIMethods() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | MDBuilder.cpp | 22 return MDString::get(Context, Str); in createString() 26 return ConstantAsMetadata::get(C); in createConstant() 34 createConstant(ConstantFP::get(Type::getFloatTy(Context), Accuracy)); in createFPMath() 35 return MDNode::get(Context, Op); in createFPMath() 65 Vals[i + Offset] = createConstant(ConstantInt::get(Int32Ty, Weights[i])); in createBranchWeights() 67 return MDNode::get(Context, Vals); in createBranchWeights() 70 MDNode *MDBuilder::createUnpredictable() { return MDNode::get(Context, {}); } in createUnpredictable() 81 Ops.push_back(createConstant(ConstantInt::get(Int64Ty, Count))); in createFunctionEntryCount() 86 Ops.push_back(createConstant(ConstantInt::get(Int64Ty, ID))); in createFunctionEntryCount() 88 return MDNode::get(Context, Ops); in createFunctionEntryCount() [all …]
|
| H A D | ConstantFold.cpp | 83 return ConstantExpr::getBitCast(ConstantVector::get(V), DestTy); in FoldBitCast() 91 return ConstantFP::get( in FoldBitCast() 102 return ConstantExpr::getBitCast(ConstantVector::get(V), DestTy); in FoldBitCast() 118 return ConstantInt::get(DestTy, FP->getValueAPF().bitcastToAPInt()); in FoldBitCast() 134 return PoisonValue::get(DestTy); in ConstantFoldCastInstruction() 143 return UndefValue::get(DestTy); in ConstantFoldCastInstruction() 179 Type *Ty = IntegerType::get(V->getContext(), 32); in ConstantFoldCastInstruction() 183 Constant *C = ConstantExpr::getExtractElement(V, ConstantInt::get(Ty, i)); in ConstantFoldCastInstruction() 189 return ConstantVector::get(res); in ConstantFoldCastInstruction() 204 return ConstantFP::get(DestTy, Val); in ConstantFoldCastInstruction() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyLowerBrUnless.cpp | 80 Def->setDesc(TII.get(NE_I32)); in runOnMachineFunction() 84 Def->setDesc(TII.get(EQ_I32)); in runOnMachineFunction() 88 Def->setDesc(TII.get(LE_S_I32)); in runOnMachineFunction() 92 Def->setDesc(TII.get(LT_S_I32)); in runOnMachineFunction() 96 Def->setDesc(TII.get(GE_S_I32)); in runOnMachineFunction() 100 Def->setDesc(TII.get(GT_S_I32)); in runOnMachineFunction() 104 Def->setDesc(TII.get(LE_U_I32)); in runOnMachineFunction() 108 Def->setDesc(TII.get(LT_U_I32)); in runOnMachineFunction() 112 Def->setDesc(TII.get(GE_U_I32)); in runOnMachineFunction() 116 Def->setDesc(TII.get(GT_U_I32)); in runOnMachineFunction() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | NSAPI.cpp | 38 return (ClassIds[K] = &Ctx.Idents.get(ClassName[K])); in getNSClassId() 48 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithString")); in getNSStringSelector() 52 &Ctx.Idents.get("stringWithUTF8String")); in getNSStringSelector() 56 &Ctx.Idents.get("initWithUTF8String")); in getNSStringSelector() 59 const IdentifierInfo *KeyIdents[] = {&Ctx.Idents.get("stringWithCString"), in getNSStringSelector() 60 &Ctx.Idents.get("encoding")}; in getNSStringSelector() 65 Sel= Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithCString")); in getNSStringSelector() 68 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithString")); in getNSStringSelector() 82 Sel = Ctx.Selectors.getNullarySelector(&Ctx.Idents.get("array")); in getNSArraySelector() 85 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithArray")); in getNSArraySelector() [all …]
|
| H A D | ASTTypeTraits.cpp | 188 if (const TemplateArgument *TA = get<TemplateArgument>()) in print() 190 else if (const TemplateArgumentLoc *TAL = get<TemplateArgumentLoc>()) in print() 192 else if (const TemplateName *TN = get<TemplateName>()) in print() 194 else if (const NestedNameSpecifier *NNS = get<NestedNameSpecifier>()) in print() 196 else if (const NestedNameSpecifierLoc *NNSL = get<NestedNameSpecifierLoc>()) { in print() 201 } else if (const QualType *QT = get<QualType>()) in print() 203 else if (const TypeLoc *TL = get<TypeLoc>()) in print() 205 else if (const Decl *D = get<Decl>()) in print() 207 else if (const Stmt *S = get<Stmt>()) in print() 209 else if (const Type *T = get<Type>()) in print() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | SectionKind.h | 181 static SectionKind get(Kind K) { in get() function 188 static SectionKind getMetadata() { return get(Metadata); } in getMetadata() 189 static SectionKind getExclude() { return get(Exclude); } in getExclude() 190 static SectionKind getText() { return get(Text); } in getText() 191 static SectionKind getExecuteOnly() { return get(ExecuteOnly); } in getExecuteOnly() 192 static SectionKind getReadOnly() { return get(ReadOnly); } in getReadOnly() 194 return get(Mergeable1ByteCString); in getMergeable1ByteCString() 197 return get(Mergeable2ByteCString); in getMergeable2ByteCString() 200 return get(Mergeable4ByteCString); in getMergeable4ByteCString() 202 static SectionKind getMergeableConst4() { return get(MergeableConst4); } in getMergeableConst4() [all …]
|
| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ASTTableGen.h | 95 const llvm::Record *get() const { in get() function 106 return get()->getLoc(); in getLoc() 111 return get()->isSubClassOf(className); in isSubClassOf() 117 ? NodeClass(get()) : NodeClass()); in getAs() 122 return lhs.get()->getName() < rhs.get()->getName(); 163 return get()->getName(); in getName() 168 return get()->getValueAsOptionalDef(BaseFieldName); in getBase() 173 return get()->getValueAsBit(AbstractFieldName); in isAbstract() 254 return get()->isAnonymous(); in isGenericSpecialization() 260 return get()->getName(); in getAbstractTypeName() [all …]
|
| /freebsd/sys/dev/bhnd/tools/ |
| H A D | nvram_map_gen.awk | 269 map_set(ValueFormats, get(FmtHex, p_name), FmtHex) 270 map_set(ValueFormats, get(FmtDec, p_name), FmtDec) 271 map_set(ValueFormats, get(FmtMAC, p_name), FmtMAC) 272 map_set(ValueFormats, get(FmtLEDDC, p_name), FmtLEDDC) 273 map_set(ValueFormats, get(FmtStr, p_name), FmtStr) 325 map_set(BaseTypes, get(UInt8, p_name), UInt8) 326 map_set(BaseTypes, get(UInt16, p_name), UInt16) 327 map_set(BaseTypes, get(UInt32, p_name), UInt32) 328 map_set(BaseTypes, get(Int8, p_name), Int8) 329 map_set(BaseTypes, get(Int16, p_name), Int16) [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGLoopInfo.cpp | 30 Args.push_back(MDString::get(Ctx, FollowupName)); in createFollowupMetadata() 32 return MDNode::get(Ctx, Args); in createFollowupMetadata() 53 MDNode::get(Ctx, {MDString::get(Ctx, "llvm.loop.pipeline.disable"), in createPipeliningMetadata() 54 ConstantAsMetadata::get(ConstantInt::get( in createPipeliningMetadata() 62 MDString::get(Ctx, "llvm.loop.pipeline.initiationinterval"), in createPipeliningMetadata() 63 ConstantAsMetadata::get(ConstantInt::get( in createPipeliningMetadata() 65 Args.push_back(MDNode::get(Ctx, Vals)); in createPipeliningMetadata() 102 MDNode::get(Ctx, MDString::get(Ctx, "llvm.loop.unroll.disable"))); in createPartialUnrollMetadata() 113 Metadata *Vals[] = {MDString::get(Ctx, "llvm.loop.unroll.count"), in createPartialUnrollMetadata() 114 ConstantAsMetadata::get(ConstantInt::get( in createPartialUnrollMetadata() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Frontend/Offloading/ |
| H A D | OffloadWrapper.cpp | 120 auto *Zero = ConstantInt::get(getSizeTTy(M), 0u); in createBinDesc() 128 auto *Data = ConstantDataArray::get(C, Buf); in createBinDesc() 150 auto *Begin = ConstantInt::get(getSizeTTy(M), Entry->ImageOffset); in createBinDesc() 152 ConstantInt::get(getSizeTTy(M), Entry->ImageOffset + Entry->ImageSize); in createBinDesc() 161 ImagesInits.push_back(ConstantStruct::get(getDeviceImageTy(M), ImageB, in createBinDesc() 166 auto *ImagesData = ConstantArray::get( in createBinDesc() 167 ArrayType::get(getDeviceImageTy(M), ImagesInits.size()), ImagesInits); in createBinDesc() 179 auto *DescInit = ConstantStruct::get( in createBinDesc() 181 ConstantInt::get(Type::getInt32Ty(C), ImagesInits.size()), ImagesB, in createBinDesc() 192 auto *FuncTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg*/ false); in createUnregisterFunction() [all …]
|
| /freebsd/crypto/openssl/test/recipes/70-test_quic_multistream_data/ |
| H A D | verify-qlog.py | 58 if hdr_trace["vantage_point"].get('type') not in ('client', 'server'): 61 vp_name = hdr_trace["vantage_point"].get('name') 69 if hdr_common_fields.get("time_format") != "delta": 72 if hdr_common_fields.get("protocol_type") != ["QUIC"]: 82 name = event.get("name") 90 if type(event.get("time")) != int: 93 data = event.get('data') 101 check_packet_header(filename, event, data.get('header')) 103 datagram_id = data.get('datagram_id') 107 for frame in data.get('frames', []): [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyFunctionDumper.cpp | 47 WithColor(Printer, PDB_ColorItem::Type).get() << ClassParent->getName(); in dumpClassParentWithScopeOperator() 77 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " "; in start() 80 WithColor(Printer, PDB_ColorItem::Identifier).get() in start() 87 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " "; in start() 89 WithColor(Printer, PDB_ColorItem::Identifier).get() in start() 98 WithColor(Printer, PDB_ColorItem::Identifier).get() << Name; in start() 114 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const"; in start() 116 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile"; in start() 124 WithColor(Printer, PDB_ColorItem::Address).get() << format_hex(FuncStart, 10); in start() 127 WithColor(Printer, PDB_ColorItem::Offset).get() in start() [all …]
|
| H A D | PrettyCompilandDumper.cpp | 54 WithColor(Printer, PDB_ColorItem::Path).get() << FullName; in start() 62 WithColor(Printer, PDB_ColorItem::Path).get() << File->getFileName(); in start() 66 WithColor(Printer, PDB_ColorItem::Comment).get() in start() 84 WithColor(Printer, StatementColor).get() << LineStart; in start() 86 WithColor(Printer, StatementColor).get() << " - " << LineEnd; in start() 92 WithColor(Printer, StatementColor).get() << ColumnStart; in start() 94 WithColor(Printer, StatementColor).get() << " - " << ColumnEnd; in start() 101 WithColor(Printer, PDB_ColorItem::Address).get() in start() 107 WithColor(Printer, PDB_ColorItem::Address).get() in start() 139 WithColor(Printer, PDB_ColorItem::Address).get() in dump() [all …]
|
| H A D | PrettyVariableDumper.cpp | 53 WithColor(Printer, PDB_ColorItem::Address).get() in start() 56 WithColor(Printer, PDB_ColorItem::Keyword).get() << "static "; in start() 66 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getValue(); in start() 71 WithColor(Printer, PDB_ColorItem::Offset).get() in start() 79 WithColor(Printer, PDB_ColorItem::Offset).get() in start() 84 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getLength(); in start() 90 WithColor(Printer, PDB_ColorItem::Identifier).get() << Var.getName(); in start() 99 WithColor(Printer, PDB_ColorItem::Offset).get() in startVbptr() 109 WithColor(Printer, PDB_ColorItem::Offset).get() in start() 137 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/ |
| H A D | OpDescriptor.cpp | 23 Cs.push_back(ConstantInt::get(IntTy, 0)); in makeConstantsWithType() 24 Cs.push_back(ConstantInt::get(IntTy, 1)); in makeConstantsWithType() 25 Cs.push_back(ConstantInt::get(IntTy, 42)); in makeConstantsWithType() 26 Cs.push_back(ConstantInt::get(IntTy, APInt::getMaxValue(W))); in makeConstantsWithType() 27 Cs.push_back(ConstantInt::get(IntTy, APInt::getMinValue(W))); in makeConstantsWithType() 28 Cs.push_back(ConstantInt::get(IntTy, APInt::getSignedMaxValue(W))); in makeConstantsWithType() 29 Cs.push_back(ConstantInt::get(IntTy, APInt::getSignedMinValue(W))); in makeConstantsWithType() 30 Cs.push_back(ConstantInt::get(IntTy, APInt::getOneBitSet(W, W / 2))); in makeConstantsWithType() 34 Cs.push_back(ConstantFP::get(Ctx, APFloat::getZero(Sem))); in makeConstantsWithType() 35 Cs.push_back(ConstantFP::get(Ctx, APFloat(Sem, 1))); in makeConstantsWithType() [all …]
|
| /freebsd/stand/ficl/softwords/ |
| H A D | string.fr | 23 : get-count ( 2:this -- count ) my=[ .count get ] ; 26 : ?empty ( 2:this -- flag ) --> get-count 0= ; 28 : get-buflen ( 2:this -- len ) my=[ .buflen get ] ; 31 : get-buf ( 2:this -- ptr ) my=[ .buf get-ptr ] ; 45 this my=> get-buf 64 this --> get-buflen 0= 73 size this --> get-buflen > if 74 this --> get-buf size resize 83 c-addr this --> get-buf u move 86 : get { 2:this -- c-addr u } [all …]
|
| H A D | classes.fr | 17 : get ( inst class -- refinst refclass ) 26 : get drop c@ ; 33 : get drop w@ ; 40 : get drop q@ ; 48 : get drop @ ; 59 \ they point to, and supply get and set methods. 68 \ get the value of the pointer 69 : get-ptr ( inst class -- addr ) 71 c-cell => get 87 c-ptr => get-ptr 0= [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kExpandPseudo.cpp | 111 return TII->ExpandMOVSZX_RM(MIB, true, TII->get(M68k::MOV8dj), MVT::i16, in INITIALIZE_PASS() 114 return TII->ExpandMOVSZX_RM(MIB, true, TII->get(M68k::MOV8dj), MVT::i32, in INITIALIZE_PASS() 117 return TII->ExpandMOVSZX_RM(MIB, true, TII->get(M68k::MOV16rj), MVT::i32, in INITIALIZE_PASS() 121 return TII->ExpandMOVSZX_RM(MIB, false, TII->get(M68k::MOV8dj), MVT::i16, in INITIALIZE_PASS() 124 return TII->ExpandMOVSZX_RM(MIB, false, TII->get(M68k::MOV8dj), MVT::i32, in INITIALIZE_PASS() 127 return TII->ExpandMOVSZX_RM(MIB, false, TII->get(M68k::MOV16rj), MVT::i32, in INITIALIZE_PASS() 131 return TII->ExpandMOVSZX_RM(MIB, true, TII->get(M68k::MOV8dp), MVT::i16, in INITIALIZE_PASS() 134 return TII->ExpandMOVSZX_RM(MIB, true, TII->get(M68k::MOV8dp), MVT::i32, in INITIALIZE_PASS() 137 return TII->ExpandMOVSZX_RM(MIB, true, TII->get(M68k::MOV16rp), MVT::i32, in INITIALIZE_PASS() 141 return TII->ExpandMOVSZX_RM(MIB, false, TII->get(M68k::MOV8dp), MVT::i16, in INITIALIZE_PASS() [all …]
|
| /freebsd/crypto/heimdal/lib/asn1/ |
| H A D | setchgpw2.asn1 | 97 Req-get-pw-policy ::= NULL 99 Rep-get-pw-policy ::= SEQUENCE { 106 Err-get-pw-policy ::= NULL 109 Req-get-princ-aliases ::= NULL 111 Rep-get-princ-aliases ::= SEQUENCE { 121 Err-get-princ-aliases ::= NULL 124 Req-get-supported-etypes ::= NULL 126 Rep-get-supported-etypes ::= SEQUENCE OF ENCTYPE 128 Err-get-supported-etypes ::= NULL 136 get-pw-policy[3] Req-get-pw-policy, [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
| H A D | MPIFunctionClassifier.cpp | 30 IdentInfo_MPI_Send = &ASTCtx.Idents.get("MPI_Send"); in initPointToPointIdentifiers() 35 IdentInfo_MPI_Isend = &ASTCtx.Idents.get("MPI_Isend"); in initPointToPointIdentifiers() 41 IdentInfo_MPI_Ssend = &ASTCtx.Idents.get("MPI_Ssend"); in initPointToPointIdentifiers() 46 IdentInfo_MPI_Issend = &ASTCtx.Idents.get("MPI_Issend"); in initPointToPointIdentifiers() 52 IdentInfo_MPI_Bsend = &ASTCtx.Idents.get("MPI_Bsend"); in initPointToPointIdentifiers() 57 IdentInfo_MPI_Ibsend = &ASTCtx.Idents.get("MPI_Ibsend"); in initPointToPointIdentifiers() 63 IdentInfo_MPI_Rsend = &ASTCtx.Idents.get("MPI_Rsend"); in initPointToPointIdentifiers() 68 IdentInfo_MPI_Irsend = &ASTCtx.Idents.get("MPI_Irsend"); in initPointToPointIdentifiers() 73 IdentInfo_MPI_Recv = &ASTCtx.Idents.get("MPI_Recv"); in initPointToPointIdentifiers() 78 IdentInfo_MPI_Irecv = &ASTCtx.Idents.get("MPI_Irecv"); in initPointToPointIdentifiers() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__functional/ |
| H A D | reference_wrapper.h | 61 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 type& get() const _NOEXCEPT { return *__f_; } in get() function 73 return std::__invoke(get(), std::forward<_ArgTypes>(__args)...); in operator() 82 { __x.get() == __y.get() } -> __core_convertible_to<bool>; 85 return __x.get() == __y.get(); 90 { __x.get() == __y } -> __core_convertible_to<bool>; 93 return __x.get() == __y; 98 { __x.get() == __y.get() } -> __core_convertible_to<bool>; 101 return __x.get() == __y.get(); 105 requires requires { std::__synth_three_way(__x.get(), __y.get()); } 107 return std::__synth_three_way(__x.get(), __y.get()); [all …]
|
| /freebsd/contrib/kyua/engine/ |
| H A D | atf_result.cpp | 438 if (status.get().exited()) { in apply() 440 if (_argument.get() == status.get().exitstatus()) in apply() 447 _argument.get() % status.get().exitstatus()); in apply() 452 format_status(status.get())); in apply() 455 if (status.get().exited() && status.get().exitstatus() == EXIT_SUCCESS) in apply() 460 format_status(status.get())); in apply() 463 if (status.get().signaled()) { in apply() 465 if (_argument.get() == status.get().termsig()) in apply() 472 _argument.get() % status.get().termsig()); in apply() 477 format_status(status.get())); in apply() [all …]
|