Searched refs:Array (Results 26 - 50 of 139) sorted by relevance

123456

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp70 const json::Array *Object::getArray(StringRef K) const {
75 json::Array *Object::getArray(StringRef K) {
91 Array::Array(std::initializer_list<Value> Elements) { function in class:llvm::json::Array
100 : Value(json::Array(Elements)) {}
121 create<json::Array>(M.as<json::Array>());
147 create<json::Array>(std::move(M.as<json::Array>()));
170 as<json::Array>()
[all...]
/freebsd-12-stable/contrib/one-true-awk/
H A Dproto.h99 extern Array *makesymtab(int);
102 extern Cell *setsymtab(const char *, const char *, double, unsigned int, Array *);
104 extern void rehash(Array *);
105 extern Cell *lookup(const char *, Array *);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackReader.h56 Array, member in class:llvm::msgpack::Type
88 /// Value for \c Type::Array and \c Type::Map.
113 /// For the collection objects (Array and Map), only the length is read, and
114 /// the caller must make and additional \c N calls (in the case of Array) or
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveRegMatrix.h50 LiveIntervalUnion::Array Matrix;
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dlocal_cache.h23 void setFromArray(void **Array, u32 N) { argument
26 memcpy(Batch, Array, sizeof(void *) * Count);
33 void copyToArray(void **Array) const {
34 memcpy(Array, Batch, sizeof(void *) * Count);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp73 case BitCodeAbbrevOp::Array:
117 if (CodeOp.getEncoding() == BitCodeAbbrevOp::Array ||
121 "Abbreviation starts with an Array or a Blob");
133 if (Op.getEncoding() != BitCodeAbbrevOp::Array &&
141 if (Op.getEncoding() == BitCodeAbbrevOp::Array) {
142 // Array case. Read the number of elements as a vbr6.
156 report_fatal_error("Array element type can't be an Array or a Blob");
235 if (CodeOp.getEncoding() == BitCodeAbbrevOp::Array ||
237 report_fatal_error("Abbreviation starts with an Array o
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStructuredData.h53 class Array;
62 typedef std::shared_ptr<Array> ArraySP;
85 Array *GetAsArray() {
87 ? static_cast<Array *>(this)
165 class Array : public Object { class in class:lldb_private::StructuredData
167 Array() : Object(lldb::eStructuredDataTypeArray) {} function in class:lldb_private::StructuredData::Array
169 ~Array() override = default;
264 bool GetItemAtIndexAsArray(size_t idx, Array *&result) const {
369 auto object_sp = std::make_shared<Array>();
478 bool GetValueForKeyAsArray(llvm::StringRef key, Array *
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DTSanRuntime.cpp211 static StructuredData::Array *
214 StructuredData::Array *trace = new StructuredData::Array();
229 static StructuredData::Array *ConvertToStructuredArray(
234 StructuredData::Array *array = new StructuredData::Array();
351 StructuredData::Array *stacks = ConvertToStructuredArray(
363 StructuredData::Array *mops = ConvertToStructuredArray(
390 StructuredData::Array *locs = ConvertToStructuredArray(
424 StructuredData::Array *mutexe
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveIntervalUnion.cpp181 void LiveIntervalUnion::Array::init(LiveIntervalUnion::Allocator &Alloc,
194 void LiveIntervalUnion::Array::clear() {
/freebsd-12-stable/contrib/bearssl/T0/
H A DConstData.cs55 Array.Copy(buf, 0, nbuf, 0, len);
94 Array.Copy(sd, 0, buf, len, sd.Length);
H A DWordBuilder.cs104 Array.Copy(cfStack, cfPtr - (depth - 1),
124 Array.Copy(cfStack, 0, ncf, 0, len);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp87 MutableArrayRef<T> Array(Temporaries.Allocate<T>(Num), Num);
88 std::uninitialized_copy(Range.begin(), Range.end(), Array.begin());
89 return {allocateArray(Array), Array};
/freebsd-12-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DAMDGPUMetadataVerifier.cpp56 auto &Array = Node.getArray();
57 if (Size && Array.size() != *Size)
59 for (auto &Item : Array)
H A DMsgPackWriter.cpp142 if (Size <= FixMax::Array) {
143 EW.write(static_cast<uint8_t>(FixBits::Array | Size));
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_profile_collector.cpp67 using ThreadDataArray = Array<ThreadData>;
88 using ProfileBufferArray = Array<ProfileBuffer>;
149 using PathArray = Array<int32_t>;
162 using ProfileRecordArray = Array<ProfileRecord>;
169 using StackArray = Array<const FunctionCallTrie::Node *>;
273 // use a local allocator and an __xray::Array<...> to store the intermediary
H A Dxray_function_call_trie.h37 /// a Array<NodeIdPair> -- each NodeIdPair instance will contain the function
103 using NodeIdPairArray = Array<NodeIdPair>;
128 using NodeArray = Array<Node>;
129 using RootArray = Array<Node *>;
130 using ShadowStackArray = Array<ShadowStackEntry>;
489 using Stack = Array<NodeAndParent>;
548 using Stack = Array<NodeAndTarget>;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp132 StructuredData::Array *names_array;
139 StructuredData::Array *names_mask_array;
198 StructuredData::ArraySP names_sp(new StructuredData::Array());
199 StructuredData::ArraySP name_masks_sp(new StructuredData::Array());
H A DBreakpointResolverFileRegex.cpp55 StructuredData::Array *names_array;
86 StructuredData::ArraySP names_array_sp(new StructuredData::Array());
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamWriter.h291 /// data that should be emitted as part of the Blob or Array operand that is
314 assert(Op.getEncoding() != BitCodeAbbrevOp::Array &&
328 } else if (Op.getEncoding() == BitCodeAbbrevOp::Array) {
329 // Array case.
455 StringRef Array) {
456 EmitRecordWithAbbrevImpl(Abbrev, makeArrayRef(Vals), Array, None);
/freebsd-12-stable/contrib/ntp/sntp/unity/auto/
H A DparseOutput.rb117 @arrayList = Array.new
/freebsd-12-stable/tools/regression/usr.bin/env/
H A Dregress-sb.rb62 @expect_err = Array.new
63 @expect_out = Array.new
64 @symlinks = Array.new
90 @symlinks << Array.[](srcf, newf)
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DMainThreadCheckerRuntime.cpp116 StructuredData::Array *trace = new StructuredData::Array();
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTRecordReader.h72 auto Array = llvm::makeArrayRef(Record).slice(Idx, Len); local
74 return Array;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp647 auto Array = new GlobalVariable( local
654 Array->setComdat(Comdat);
655 Array->setSection(getSectionName(Section));
656 Array->setAlignment(Align(Ty->isPointerTy()
659 GlobalsToAppendToUsed.push_back(Array);
660 GlobalsToAppendToCompilerUsed.push_back(Array);
662 Array->addMetadata(LLVMContext::MD_associated, *MD);
664 return Array;
/freebsd-12-stable/sys/contrib/dev/acpica/common/
H A Ddmtbdump1.c519 UINT8 *Array; local
550 Array = (UINT8 *) Subtable + ArrayOffset;
552 Status = AcpiDmDumpTable (Length, AbsoluteOffset, Array,
567 Array = (UINT8 *) Subtable + ArrayOffset;
569 Status = AcpiDmDumpTable (Length, AbsoluteOffset, Array,
582 Array = (UINT8 *) Subtable + ArrayOffset;
584 Status = AcpiDmDumpTable (Length, AbsoluteOffset, Array,

Completed in 260 milliseconds

123456