Searched refs:get (Results 1 - 25 of 3123) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DValueTypes.cpp40 VT.LLVMTy = IntegerType::get(Context, BitWidth);
49 VectorType::get(VT.getTypeForEVT(Context), NumElements, IsScalable);
56 ResultVT.LLVMTy = VectorType::get(VT.getTypeForEVT(Context), EC);
216 case MVT::i128: return IntegerType::get(Context, 128);
226 return TargetExtType::get(Context, "aarch64.svcount");
228 case MVT::i64x8: return IntegerType::get(Context, 512);
232 return FixedVectorType::get(Type::getInt1Ty(Context), 1);
234 return FixedVectorType::get(Type::getInt1Ty(Context), 2);
236 return FixedVectorType::get(Type::getInt1Ty(Context), 4);
238 return FixedVectorType::get(Typ
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerBrUnless.cpp80 Def->setDesc(TII.get(NE_I32));
84 Def->setDesc(TII.get(EQ_I32));
88 Def->setDesc(TII.get(LE_S_I32));
92 Def->setDesc(TII.get(LT_S_I32));
96 Def->setDesc(TII.get(GE_S_I32));
100 Def->setDesc(TII.get(GT_S_I32));
104 Def->setDesc(TII.get(LE_U_I32));
108 Def->setDesc(TII.get(LT_U_I32));
112 Def->setDesc(TII.get(GE_U_I32));
116 Def->setDesc(TII.get(GT_U_I3
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DOpDescriptor.cpp18 Cs.push_back(ConstantInt::get(IntTy, 0));
19 Cs.push_back(ConstantInt::get(IntTy, 1));
20 Cs.push_back(ConstantInt::get(IntTy, 42));
21 Cs.push_back(ConstantInt::get(IntTy, APInt::getMaxValue(W)));
22 Cs.push_back(ConstantInt::get(IntTy, APInt::getMinValue(W)));
23 Cs.push_back(ConstantInt::get(IntTy, APInt::getSignedMaxValue(W)));
24 Cs.push_back(ConstantInt::get(IntTy, APInt::getSignedMinValue(W)));
25 Cs.push_back(ConstantInt::get(IntTy, APInt::getOneBitSet(W, W / 2)));
29 Cs.push_back(ConstantFP::get(Ctx, APFloat::getZero(Sem)));
30 Cs.push_back(ConstantFP::get(Ct
[all...]
/freebsd-current/contrib/libfido2/.actions/
H A Dsetup_clang12 apt-get install -q -y software-properties-common
16 apt-get update -q
17 apt-get install -q -y "${CC}" "clang-tools-${VERSION}"
/freebsd-current/contrib/unbound/contrib/android/
H A Dinstall_tools.sh5 sudo apt-get -qq update
6 sudo apt-get -qq install --no-install-recommends curl tar zip unzip perl openjdk-8-jdk autoconf automake libtool pkg-config
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_get/
H A Dzpool_get_001_pos.ksh37 # Zpool get usage message is displayed when called with no arguments
40 # 1. Run zpool get
45 log_assert "Zpool get usage message is displayed when called with no arguments."
47 zpool get > /dev/null 2>&1
51 log_fail "\"zpool get\" exit status $RET should be equal to 2."
54 OUTPUT=$(zpool get 2>&1 | grep -i usage)
58 log_fail "Usage message for zpool get did not contain the word 'usage'."
61 log_pass "Zpool get usage message is displayed when called with no arguments."
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyEnumDumper.cpp28 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const ";
30 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile ";
32 WithColor(Printer, PDB_ColorItem::Keyword).get() << "unaligned ";
33 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum ";
34 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName();
38 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum ";
39 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName();
58 WithColor(Printer, PDB_ColorItem::Identifier).get()
61 WithColor(Printer, PDB_ColorItem::LiteralValue).get()
H A DPrettyTypedefDumper.cpp32 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef ";
36 WithColor(Printer, PDB_ColorItem::Identifier).get() << " "
51 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum ";
52 WithColor(Printer, PDB_ColorItem::Type).get() << " " << Symbol.getName();
57 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const ";
59 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile ";
73 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict";
82 WithColor(Printer, PDB_ColorItem::Keyword).get() << "class ";
83 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName();
H A DPrettyClassDefinitionDumper.cpp55 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const ";
57 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile ";
59 WithColor(Printer, PDB_ColorItem::Keyword).get() << "unaligned ";
61 WithColor(Printer, PDB_ColorItem::Keyword).get() << Class.getUdtKind() << " ";
62 WithColor(Printer, PDB_ColorItem::Type).get() << Class.getName();
63 WithColor(Printer, PDB_ColorItem::Comment).get() << " [sizeof = " << Size
76 WithColor(Printer, PDB_ColorItem::Keyword).get() << Base.getAccess();
78 WithColor(Printer, PDB_ColorItem::Keyword).get() << " virtual";
80 WithColor(Printer, PDB_ColorItem::Type).get() << " " << Base.getName();
102 WithColor(Printer, PDB_ColorItem::Padding).get()
[all...]
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zpool_get/
H A Dzpool_get_001_pos.ksh37 # Zpool get usage message is displayed when called with no arguments
40 # 1. Run zpool get
54 log_assert "Zpool get usage message is displayed when called with no arguments."
56 $ZPOOL get > /dev/null 2>&1
60 log_fail "\"zpool get\" exit status $RET should be equal to 2."
63 OUTPUT=$($ZPOOL get 2>&1 | $GREP -i usage)
67 log_fail "Usage message for zpool get did not contain the word 'usage'."
70 log_pass "Zpool get usage message is displayed when called with no arguments."
/freebsd-current/contrib/llvm-project/llvm/include/llvm/MC/
H A DSectionKind.h181 static SectionKind get(Kind K) { function in class:llvm::SectionKind
188 static SectionKind getMetadata() { return get(Metadata); }
189 static SectionKind getExclude() { return get(Exclude); }
190 static SectionKind getText() { return get(Text); }
191 static SectionKind getExecuteOnly() { return get(ExecuteOnly); }
192 static SectionKind getReadOnly() { return get(ReadOnly); }
194 return get(Mergeable1ByteCString);
197 return get(Mergeable2ByteCString);
200 return get(Mergeable4ByteCString);
202 static SectionKind getMergeableConst4() { return get(MergeableConst
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Format/
H A DFormatToken.h982 kw_final = &IdentTable.get("final");
983 kw_override = &IdentTable.get("override");
984 kw_in = &IdentTable.get("in");
985 kw_of = &IdentTable.get("of");
986 kw_CF_CLOSED_ENUM = &IdentTable.get("CF_CLOSED_ENUM");
987 kw_CF_ENUM = &IdentTable.get("CF_ENUM");
988 kw_CF_OPTIONS = &IdentTable.get("CF_OPTIONS");
989 kw_NS_CLOSED_ENUM = &IdentTable.get("NS_CLOSED_ENUM");
990 kw_NS_ENUM = &IdentTable.get("NS_ENUM");
991 kw_NS_ERROR_ENUM = &IdentTable.get("NS_ERROR_ENU
[all...]
/freebsd-current/contrib/atf/atf-c++/detail/
H A Denv.hpp44 std::string get(const std::string&);
49 std::string get(const std::string&, const std::string&);
H A Denv_test.cpp37 set_md_var("descr", "Tests the has and get functions");
42 ATF_REQUIRE(!atf::env::get("PATH").empty());
50 set_md_var("descr", "Tests the get function with a default value");
55 ATF_REQUIRE(atf::env::get("PATH", "default value") != "default value");
57 ATF_REQUIRE_EQ(atf::env::get("_UNDEFINED_VARIABLE_", "foo bar"), "foo bar");
68 const std::string& oldval = atf::env::get("PATH");
70 ATF_REQUIRE(atf::env::get("PATH") != oldval);
71 ATF_REQUIRE_EQ(atf::env::get("PATH"), "foo-bar");
75 ATF_REQUIRE_EQ(atf::env::get("_UNDEFINED_VARIABLE_"), "foo2-bar2");
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DDivisionByConstantInfo.h22 static SignedDivisionByConstantInfo get(const APInt &D);
30 get(const APInt &D, unsigned LeadingZeros = 0,
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSanitizerStats.cpp24 StatTy = ArrayType::get(PointerType::getUnqual(M->getContext()), 2);
32 return ArrayType::get(StatTy, Inits.size());
36 return StructType::get(M->getContext(),
47 ArrayType *StatTy = ArrayType::get(PtrTy, 2);
49 Inits.push_back(ConstantArray::get(
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() -
57 FunctionType *StatReportTy = FunctionType::get(B.getVoidTy(), PtrTy, false);
64 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2),
65 ConstantInt::get(IntPtrT
[all...]
/freebsd-current/sys/dev/isci/scil/
H A Dsci_pool.h60 * is expected to evaluate the pool condition empty before a get
90 U32 get; \
98 * If the pool is empty the user should not perform any get operation on
102 ((this_pool).get == (this_pool).put)
109 (SCI_POOL_INCREMENT(this_pool, (this_pool).put) == (this_pool).get)
114 * get and put pointers can be written simultaneously by different
132 (this_pool).get > (this_pool).put \
133 ? ((this_pool).size - (this_pool).get + (this_pool).put) \
134 : ((this_pool).put - (this_pool).get) \
145 (this_pool).get
[all...]
/freebsd-current/contrib/llvm-project/clang/utils/TableGen/
H A DASTTableGen.h95 llvm::Record *get() const { function in class:clang::tblgen::WrappedRecord
106 return get()->getLoc();
111 return get()->isSubClassOf(className);
117 ? NodeClass(get()) : NodeClass());
122 return lhs.get()->getName() < rhs.get()->getName();
163 return get()->getName();
168 return get()->getValueAsOptionalDef(BaseFieldName);
173 return get()->getValueAsBit(AbstractFieldName);
254 return get()
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXCtorDtorLowering.cpp58 llvm::ConstantAsMetadata::get(GV), llvm::MDString::get(Ctx, "kernel"),
59 llvm::ConstantAsMetadata::get(
60 llvm::ConstantInt::get(llvm::Type::getInt32Ty(Ctx), 1))};
64 llvm::ConstantAsMetadata::get(GV), llvm::MDString::get(Ctx, "maxntidx"),
65 llvm::ConstantAsMetadata::get(
66 llvm::ConstantInt::get(llvm::Type::getInt32Ty(Ctx), 1))};
68 llvm::ConstantAsMetadata::get(GV), llvm::MDString::get(Ct
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Frontend/HLSL/
H A DHLSLResource.cpp59 Entry = MDNode::get(
60 Ctx, {ValueAsMetadata::get(GV),
61 ConstantAsMetadata::get(B.getInt32(static_cast<int>(RK))),
62 ConstantAsMetadata::get(B.getInt32(static_cast<int>(ElTy))),
63 ConstantAsMetadata::get(B.getInt1(IsROV)),
64 ConstantAsMetadata::get(B.getInt32(ResIndex)),
65 ConstantAsMetadata::get(B.getInt32(Space))});
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h36 std::fill(Data.get(), Data.get() + Length, InitVal);
42 std::copy(V.Data.get(), V.Data.get() + Length, Data.get());
56 return std::equal(Data.get(), Data.get() + Length, V.Data.get());
83 std::transform(Data.get(), Data.get()
[all...]
/freebsd-current/contrib/netbsd-tests/sbin/route/
H A Dt_missing.sh40 route -n get
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/
H A DObjCNoReturn.cpp30 NSExceptionII(&C.Idents.get("NSException"))
36 II.push_back(&C.Idents.get("raise"));
37 II.push_back(&C.Idents.get("format"));
42 II.push_back(&C.Idents.get("arguments"));
/freebsd-current/tests/sys/cddl/zfs/tests/zones/
H A Dzones_005_pos.ksh57 log_must $ZPOOL get all zonepool
58 log_must $ZPOOL get bootfs zonepool
62 log_must eval "$ZPOOL get bootfs zonepool > $TMPDIR/output.${TESTCASE_ID}"
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBEvent.cpp28 m_opaque_ptr(m_event_sp.get()) {
33 : m_event_sp(event_sp), m_opaque_ptr(event_sp.get()) {
61 Event *lldb_event = get();
73 const Event *lldb_event = get();
86 const Event *lldb_event = get();
95 const Event *lldb_event = get();
113 Event *lldb_event = get();
116 success = lldb_event->BroadcasterIs(broadcaster.get());
125 Event *lldb_event = get();
132 Event *SBEvent::get() cons function in class:SBEvent
[all...]

Completed in 315 milliseconds

1234567891011>>