HomeSort by: relevance | last modified time | path
    Searched defs:Elements (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/sys/external/bsd/acpica/dist/hardware/
hwxface.c 393 * elements, at least one per sleep type (A/B).
418 ACPI_OPERAND_OBJECT **Elements;
483 Elements = Info->ReturnObject->Package.Elements;
493 if (Elements[0]->Common.Type != ACPI_TYPE_INTEGER)
501 *SleepTypeA = (UINT8) Elements[0]->Integer.Value;
502 *SleepTypeB = (UINT8) (Elements[0]->Integer.Value >> 8);
508 if ((Elements[0]->Common.Type != ACPI_TYPE_INTEGER) ||
509 (Elements[1]->Common.Type != ACPI_TYPE_INTEGER))
517 *SleepTypeA = (UINT8) Elements[0]->Integer.Value
    [all...]
  /src/sys/external/bsd/acpica/dist/namespace/
nsprepkg.c 60 ACPI_OPERAND_OBJECT **Elements,
66 ACPI_OPERAND_OBJECT **Elements,
76 ACPI_OPERAND_OBJECT **Elements,
102 ACPI_OPERAND_OBJECT **Elements;
123 * and trailing NULL package elements
127 /* Extract package count and elements array */
129 Elements = ReturnObject->Package.Elements;
144 "Return Package has no elements (empty)"));
159 Status = AcpiNsCustomPackage (Info, Elements, Count)
    [all...]
nsconvert.c 239 ACPI_OPERAND_OBJECT **Elements;
284 /* All elements of the Package must be integers */
286 Elements = OriginalObject->Package.Elements;
291 if ((!*Elements) ||
292 ((*Elements)->Common.Type != ACPI_TYPE_INTEGER))
296 Elements++;
307 /* Copy the package elements (integers) to the buffer as DWORDs */
309 Elements = OriginalObject->Package.Elements;
    [all...]
nsrepair2.c 138 ACPI_OPERAND_OBJECT **Elements,
407 * If a Package, ensure same for all string elements.
442 ElementPtr = ReturnObject->Package.Elements;
511 OuterElements = &ReturnObject->Package.Elements[i + 1];
523 ObjDesc = (*OuterElements)->Package.Elements[1]; /* Index1 = Type */
546 ObjDesc = ReturnObject->Package.Elements[0];
686 TopObjectList = PackageObject->Package.Elements;
694 SubObjectList = SubPackage->Package.Elements;
752 ACPI_OPERAND_OBJECT **Elements;
777 OuterElements = ReturnObject->Package.Elements;
    [all...]
  /src/sys/external/bsd/acpica/dist/debugger/
dbconvert.c 153 * of buffer elements, each separated by a space or comma.
243 ACPI_OBJECT *Elements;
247 Elements = ACPI_ALLOCATE_ZEROED (
249 if (!Elements)
263 Status = AcpiDbConvertToObject (Type, This, &Elements[i]);
266 AcpiDbDeleteObjects (i + 1, Elements);
267 ACPI_FREE (Elements);
276 Object->Package.Elements = Elements;
454 BufferDesc = &ObjDesc->Package.Elements[0]
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ComputeDependence.cpp 816 Expr **Elements = E->getElements();
818 D |= turnTypeToValueDependence(Elements[I]->getDependence());
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGParser.h 77 SmallVector<Init *, 16> Elements;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
JSON.cpp 94 Array::Array(std::initializer_list<Value> Elements) {
95 V.reserve(Elements.size());
96 for (const Value &V : Elements) {
102 Value::Value(std::initializer_list<Value> Elements)
103 : Value(json::Array(Elements)) {}
241 std::vector<const Object::value_type *> Elements;
243 Elements.push_back(&E);
244 llvm::sort(Elements,
248 return Elements;
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCLoopInstrFormPrep.cpp 137 Elements(1, BucketElement(I)) {}
140 SmallVector<BucketElement, 16> Elements;
214 /// update all other elements in \p BucketChain accordingly.
223 /// update all other elements in \p BucketChain accordingly.
319 B.Elements.push_back(BucketElement(CDiff, MemI));
387 for (unsigned j = 0, je = BucketChain.Elements.size(); j != je; ++j) {
388 if (!BucketChain.Elements[j].Offset)
392 BucketChain.Elements[j].Offset->getAPInt().urem(Form);
426 // elements as they are substracted the first value when collecting.
432 BucketChain.Elements[RemainderOffsetInfo[MaxCountRemainder].first].Offset
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFAbstractMemberAccess.cpp 257 DINodeArray Elements = CTy->getElements();
259 for (uint32_t I = StartDim; I < Elements.size(); ++I) {
260 if (auto *Element = dyn_cast_or_null<DINode>(Elements[I]))
654 // Signedness only checked when final array elements are accessed.
BTFDebug.cpp 168 DINodeArray Elements = ETy->getElements();
169 for (const auto Element : Elements) {
240 const DINodeArray Elements = STy->getElements();
241 for (const auto *Element : Elements) {
288 DITypeRefArray Elements = STy->getTypeArray();
289 auto RetType = Elements[0];
295 for (unsigned I = 1, N = Elements.size(); I < N; ++I) {
297 auto Element = Elements[I];
457 DITypeRefArray Elements = STy->getTypeArray();
458 uint32_t VLen = Elements.size() - 1
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
ValueMapper.cpp 1002 SmallVector<Constant *, 16> Elements;
1007 Elements.push_back(InitPrefix->getAggregateElement(I));
1032 Elements.push_back(NewV);
1036 cast<ArrayType>(GV.getType()->getElementType()), Elements));
  /src/sys/external/bsd/acpica/dist/include/
acobject.h 127 * pointer and length elements. There is code that depends on this.
161 union acpi_operand_object **Elements; /* Array of pointers to AcpiObjects */
164 UINT32 Count; /* # of elements in package */
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseObjc.cpp 1607 // Whether all of the elements we've parsed thus far are single
3411 ExprVector ElementExprs; // array elements.
3454 SmallVector<ObjCDictionaryElement, 4> Elements; // dictionary elements.
3504 Elements.push_back(Element);
3517 Elements);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
MetadataLoader.cpp 605 // copy more elements than we should.
625 // Continue with remaining elements.
820 // Read named metadata elements.
1208 // Read named metadata elements.
1483 Metadata *Elements = nullptr;
1509 Elements = getMDOrNull(Record[11]);
1528 SizeInBits, AlignInBits, OffsetInBits, Flags, Elements, RuntimeLang,
1537 Elements, RuntimeLang, VTableHolder, TemplateParams,
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 804 auto Elements = cast<DISubroutineType>(CTy)->getTypeArray();
805 if (Elements.size())
806 if (auto RTy = Elements[0])
810 if (Elements.size() == 2 && !Elements[1])
813 constructSubprogramArguments(Buffer, Elements);
872 // Add elements to structure type.
873 DINodeArray Elements = CTy->getElements();
874 for (const auto *Element : Elements) {
1306 // C/C++. The Count value is the number of elements. Values are 64 bit. I
    [all...]
CodeViewDebug.cpp 1613 DINodeArray Elements = Ty->getElements();
1614 for (int i = Elements.size() - 1; i >= 0; --i) {
1615 const DINode *Element = Elements[i];
2231 // Add elements to structure type.
2232 DINodeArray Elements = Ty->getElements();
2233 for (auto *Element : Elements) {
2257 // Skip other unrecognized kinds of elements.
  /src/external/apache2/llvm/dist/llvm/lib/IR/
LLVMContextImpl.h 84 : ETypes(ST->elements()), isPacked(ST->isPacked()) {}
562 Metadata *Elements;
576 Metadata *Elements, unsigned RuntimeLang,
583 AlignInBits(AlignInBits), Flags(Flags), Elements(Elements),
593 Flags(N->getFlags()), Elements(N->getRawElements()),
609 Elements == RHS->getRawElements() &&
625 return hash_combine(Name, File, Line, BaseType, Scope, Elements,
1088 ArrayRef<uint64_t> Elements;
1090 MDNodeKeyImpl(ArrayRef<uint64_t> Elements) : Elements(Elements) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Linker/
IRMover.cpp 200 SmallVector<Type *, 16> Elements;
206 Elements.resize(SrcSTy->getNumElements());
207 for (unsigned I = 0, E = Elements.size(); I != E; ++I)
208 Elements[I] = get(SrcSTy->getElementType(I));
210 DstSTy->setBody(Elements, SrcSTy->isPacked());
259 // If this is not a recursive type, then just map all of the elements and
268 // Remap all of the elements, keeping track of whether any of them change.
1211 // Add Src elements into Dest node.
1535 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {}
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceScriptStmt.h 564 MenuDefinitionList Elements;
569 Elements(std::move(Items)) {}
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenRegisters.cpp 752 const SetTheory::RecVec *Elements = RegBank.getSets().expand(R);
758 for (unsigned i = 0, e = Elements->size(); i != e; ++i) {
759 Orders[0].push_back((*Elements)[i]);
760 const CodeGenRegister *Reg = RegBank.getReg((*Elements)[i]);
1797 // Find a set in UniqueSets with the same elements as Set.
2139 // elements added by the getOrCreateSubClass call within it.
2253 // visit newly inserted elements.
2297 // Use one-before-the-end so it doesn't move forward when new elements are
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp 867 SmallVector<Metadata *, 16> Elements;
872 Elements.push_back(Builder.createMemberType(
879 Builder.replaceArrays(DIStruct, Builder.getOrCreateArray(Elements));
944 SmallVector<Metadata *, 16> Elements;
1042 Elements.push_back(DBuilder.createMemberType(
1047 DBuilder.replaceArrays(FrameDITy, DBuilder.getOrCreateArray(Elements));
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 1419 assert(NumElements == E->getNumElements() && "Wrong number of elements");
1420 Expr **Elements = E->getElements();
1422 Elements[I] = Record.readSubExpr();
1430 assert(NumElements == E->getNumElements() && "Wrong number of elements");
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
ItaniumDemangle.h 214 Node **Elements;
218 NodeArray() : Elements(nullptr), NumElements(0) {}
220 : Elements(Elements_), NumElements(NumElements_) {}
225 Node **begin() const { return Elements; }
226 Node **end() const { return Elements + NumElements; }
228 Node *operator[](size_t Idx) const { return Elements[Idx]; }
237 Elements[Idx]->print(S);
239 // Elements[Idx] is an empty parameter pack expansion, we should erase the
1134 /// one of it's Elements is. The parser inserts a ParameterPack into the
1138 NodeArray Elements;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
MachOObjectFile.cpp 237 // This is used to check for overlapping of Mach-O elements.
244 static Error checkOverlappingElement(std::list<MachOElement> &Elements,
250 for (auto it=Elements.begin() ; it != Elements.end(); ++it) {
261 if (nt != Elements.end()) {
264 Elements.insert(nt, {Offset, Size, Name});
269 Elements.push_back({Offset, Size, Name});
281 std::list<MachOElement> &Elements) {
358 if (Error Err = checkOverlappingElement(Elements, s.offset, s.size,
374 if (Error Err = checkOverlappingElement(Elements, s.reloff, s.nreloc
    [all...]

Completed in 89 milliseconds

1 2