HomeSort by: relevance | last modified time | path
    Searched refs:Field (Results 1 - 25 of 198) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/sys/external/bsd/acpica/dist/compiler/
dtfield.c 55 DT_FIELD *Field,
61 DT_FIELD *Field,
67 DT_FIELD *Field,
81 * Field - Field to be compiled
82 * ByteLength - Byte length of the field
83 * Type - Field type
87 * DESCRIPTION: Compile a field value to binary
94 DT_FIELD *Field,
106 DtCompileInteger (Buffer, Field, ByteLength, Flags)
    [all...]
dtio.c 216 DT_FIELD *Field;
263 * There are two column values. One for the field name,
264 * and one for the field value.
330 /* Create a new field object only if we have a valid value field */
334 Field = UtFieldCacheCalloc ();
335 Field->Name = Name;
336 Field->Value = Value;
337 Field->Line = Line;
338 Field->ByteOffset = Offset
    [all...]
dtsubtable.c 276 * PARAMETERS: Field - Current field list pointer
287 DT_FIELD *Field,
304 if (!Field)
309 ByteLength += DtGetFieldLength (Field, Info);
341 if (!Field)
346 Field = Field->Next;
353 if (!Field)
355 snprintf (AslGbl_MsgBuffer, sizeof(AslGbl_MsgBuffer), "Found NULL field - Field name \"%s\" needed"
    [all...]
dtexpress.c 55 DT_FIELD *Field);
70 * PARAMETERS: Field - Field object with Integer expression
82 DT_FIELD *Field,
89 Field->Value);
91 AslGbl_CurrentField = Field;
93 Result = DtEvaluateExpression (Field->Value);
308 * PARAMETERS: FieldList - Field object at start of generic list
333 * tree and get/set all field lengths of all operators in order to
363 * PARAMETERS: Field - Field object with Label to be inserte
    [all...]
dtcompile.c 62 DT_FIELD **Field);
233 * PARAMETERS: FieldList - Current field list pointer
304 * PARAMETERS: FieldList - Current field list pointer
372 * If the first field is named "CDAT Table Length" (not "Signature"),
374 * a signature). Instead, the TableLength field is where the
382 * Signature field, (At least the high-order byte should be zero).
495 * PARAMETERS: Field - Current field list pointer
507 DT_FIELD **Field,
524 if (!Field || !Info
    [all...]
dtcompilerparser.y 118 : Field FieldList
119 | Field
122 Field
dtcompiler.h 83 * Structure used for each individual field within an ACPI table
87 char *Name; /* Field name (from name : value) */
88 char *Value; /* Field value (from name : value) */
90 struct dt_field *Next; /* Next field */
91 struct dt_field *NextLabel; /* If field is a label, next label */
92 UINT32 Line; /* Line number for this field */
93 UINT32 ByteOffset; /* Offset in source file for field */
94 UINT32 NameColumn; /* Start column for field name */
95 UINT32 Column; /* Start column for field value */
110 char *Value; /* Field value (from name : value) *
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
SearchableTableEmitter.cpp 40 int getInt(Record *R, StringRef Field) {
41 return getAsInt(R->getValueInit(Field));
67 SMLoc Loc; // Source location of PrimaryKey or Key field definition.
84 for (const auto &Field : Fields) {
85 if (Name == Field.Name)
86 return &Field;
113 std::string primaryRepresentation(SMLoc Loc, const GenericField &Field,
116 if (Field.IsCode || SI->hasCodeFormat())
124 else if (Field.IsIntrinsic)
126 else if (Field.IsInstruction
    [all...]
  /src/sys/external/bsd/acpica/dist/executer/
exfield.c 85 * The following macros determine a given offset is a COMD field.
87 * 2-byte COMD field at offset 4 and master subspaces (type 3) contains a 4-byte
88 * COMD field starting at offset 12.
99 * field access attributes
120 "Invalid Field/AccessAs protocol ID: 0x%4.4X", ProtocolId));
135 * ObjDesc - The named field
140 * DESCRIPTION: Read from a named field. Returns either an Integer or a
141 * Buffer, depending on the size of the field and whether if a
142 * field is created by the CreateField() operator.
188 (ObjDesc->Field.RegionObj->Region.SpaceId == ACPI_ADR_SPACE_SMBUS |
    [all...]
exserial.c 59 * PARAMETERS: ObjDesc - The named field to read
64 * DESCRIPTION: Read from a named field that references a Generic Serial Bus
65 * field
83 * pin number index. The BitLength is the length of the field, which
88 ObjDesc->Field.PinNumberIndex, ObjDesc->Field.BitLength));
110 * ObjDesc - The named field
115 * DESCRIPTION: Write to a named field that references a General Purpose I/O
116 * field.
134 * For GPIO (GeneralPurposeIo), we will bypass the entire field
    [all...]
exprep.c 3 * Module Name: exprep - ACPI AML field prep utilities
77 * PARAMETERS: FieldBitOffset - Start of field within parent region/buffer
78 * FieldBitLength - Length of field in bits
81 * RETURN: Field granularity (8, 16, 32 or 64) and
115 /* Round Field start offset and length to "minimal" byte boundaries */
165 "Field Start %u, Field End %u -- requires %u accesses\n",
173 "Entire field can be accessed "
197 "Field goes beyond end-of-region!\n"));
199 /* Field does not fit in the region at all *
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ArchiveEmitter.cpp 31 auto WriteField = [&](StringRef Field, uint8_t Size) {
32 Out.write(Field.data(), Field.size());
33 for (size_t I = Field.size(); I != Size; ++I)
  /src/sys/external/bsd/gnu-efi/dist/inc/
efilink.h 144 // EFI_FIELD_OFFSET - returns the byte offset to a field within a structure
147 #define EFI_FIELD_OFFSET(TYPE,Field) ((UINTN)(intptr_t)(&(((TYPE *) 0)->Field)))
154 #define _CR(Record, TYPE, Field) \
155 ((TYPE *) ( (CHAR8 *)(Record) - (CHAR8 *) &(((TYPE *) 0)->Field)))
163 #define CR(Record, TYPE, Field, Sig) \
164 _CR(Record, TYPE, Field)->Signature != Sig ? \
165 (TYPE *) ASSERT_STRUCT(_CR(Record, TYPE, Field), Record) : \
166 _CR(Record, TYPE, Field)
168 #define CR(Record, TYPE, Field, Signature)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
OptimizedStructLayout.cpp 17 using Field = OptimizedStructLayoutField;
20 static void checkValidLayout(ArrayRef<Field> Fields, uint64_t Size,
24 for (auto &Field : Fields) {
25 assert(Field.hasFixedOffset() &&
26 "didn't assign a fixed offset to field");
27 assert(isAligned(Field.Alignment, Field.Offset) &&
28 "didn't assign a correctly-aligned offset to field");
29 assert(Field.Offset >= LastEnd &&
31 LastEnd = Field.getEndOffset()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/Disassembler/
SystemZDisassembler.cpp 291 static DecodeStatus decodeBDAddr12Operand(MCInst &Inst, uint64_t Field,
293 uint64_t Base = Field >> 12;
294 uint64_t Disp = Field & 0xfff;
301 static DecodeStatus decodeBDAddr20Operand(MCInst &Inst, uint64_t Field,
303 uint64_t Base = Field >> 20;
304 uint64_t Disp = ((Field << 12) & 0xff000) | ((Field >> 8) & 0xfff);
311 static DecodeStatus decodeBDXAddr12Operand(MCInst &Inst, uint64_t Field,
313 uint64_t Index = Field >> 16;
314 uint64_t Base = (Field >> 12) & 0xf
    [all...]
  /src/games/robots/
make_level.c 59 if (Field[i][x] != 0)
71 memset(Field, 0, sizeof Field);
84 Field[cp->y][cp->x]++;
extern.c 63 char Field[Y_FIELDSIZE][X_FIELDSIZE]; /* the playing field itself */
rnd_pos.c 61 } while (Field[pos.y][pos.x] != 0);
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm_ocaml.h 28 #define Some_val(v) Field(v, 0)
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
ArchiveYAML.h 26 struct Field {
27 Field() = default;
28 Field(StringRef Default, unsigned Length)
45 MapVector<StringRef, Field> Fields;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 37 /// llvm::Type with correct size. We choose a field via a specific heuristic
53 /// fields. The existing asserts suggest that LLVM assumes that *every* field
79 enum InfoKind { VFPtr, VBPtr, Field, Base, VBase, Scissor } Kind;
99 return MemberInfo(Offset, MemberInfo::Field, Data);
103 /// units of the field's formal type and only combines adjacent
145 /// Gets the storage type for a field decl and handles storage
187 void accumulateBitFields(RecordDecl::field_iterator Field,
266 // used by another field or base. The clipping process uses the capstone
317 // storage type isn't necessary, the first (non-0-length-bitfield) field's
320 for (const auto *Field : D->fields())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Record.h 25 /// Describes a record field.
26 struct Field {
40 /// Mapping from identifiers to field descriptors.
41 using FieldList = llvm::SmallVector<Field, 8>;
56 /// Returns a field.
57 const Field *getField(const FieldDecl *FD) const;
69 Field *getField(unsigned I) { return &Fields[I]; }
107 /// Mapping from field identifiers to descriptors.
108 llvm::DenseMap<const FieldDecl *, Field *> FieldMap;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DebugContainerModeling.cpp 91 SymbolRef Field = get(Data);
92 if (Field) {
94 nonloc::SymbolVal(Field));
101 [Cont, Field](PathSensitiveBugReport &BR) -> std::string {
102 if (BR.isInteresting(Field)) {
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 49 OptRecord = Field(OptRecordOpt, 0);
50 Options.OptLevel = Int_val(Field(OptRecord, 0));
51 Options.CodeModel = Int_val(Field(OptRecord, 1));
52 Options.NoFramePointerElim = Int_val(Field(OptRecord, 2));
53 Options.EnableFastISel = Int_val(Field(OptRecord, 3));
  /src/sys/external/bsd/acpica/dist/parser/
psargs.c 79 * DESCRIPTION: Decode and return a package length field.
155 * the package. Consumes the package length field
619 * RETURN: A newly allocated FIELD op
621 * DESCRIPTION: Get next field (NamedField, ReservedField, or AccessField)
630 ACPI_PARSE_OBJECT *Field;
653 /* Determine field type */
687 /* Allocate a new field op */
689 Field = AcpiPsAllocOp (Opcode, Aml);
690 if (!Field)
695 /* Decode the field type *
    [all...]

Completed in 31 milliseconds

1 2 3 4 5 6 7 8