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

1 2

  /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.
324 /* Create a new field object only if we have a valid value field */
328 Field = UtFieldCacheCalloc ();
329 Field->Name = Name;
330 Field->Value = Value;
331 Field->Line = Line;
332 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);
336 if (!Field)
341 Field = Field->Next;
348 if (!Field)
350 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
280 * PARAMETERS: FieldList - Current field list pointer
348 * If the first field is named "CDAT Table Length" (not "Signature"),
350 * a signature). Instead, the TableLength field is where the
358 * Signature field, (At least the high-order byte should be zero).
471 * PARAMETERS: Field - Current field list pointer
483 DT_FIELD **Field,
500 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...]
dtutils.c 84 /* Field object could be NULL */
243 * PARAMETERS: Field - Current field list pointer
245 * RETURN: Field value
247 * DESCRIPTION: Get field value
253 DT_FIELD *Field)
255 if (!Field)
260 return (Field->Value);
270 * RETURN: Field type
272 * DESCRIPTION: Get field typ
    [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/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/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);
move_robs.c 67 Field[rp->y][rp->x]--;
78 Field[rp->y][rp->x]++;
90 else if (Field[rp->y][rp->x] > 1) {
move.c 238 if (Field[newpos.y][newpos.x] > 0)
260 Field[newpos.y][newpos.x] > 0 || eaten(&newpos)) {
298 if (Field[y][x] == 1)
play_level.c 81 if (Field[My_pos.y][My_pos.x] != 0)
robots.h 96 extern char Cnt_move, Field[Y_FIELDSIZE][X_FIELDSIZE], Run_ch;
  /src/sys/external/bsd/acpica/dist/parser/
psargs.c 79 * DESCRIPTION: Decode and return a package length field.
137 * the package. Consumes the package length field
525 * RETURN: A newly allocated FIELD op
527 * DESCRIPTION: Get next field (NamedField, ReservedField, or AccessField)
536 ACPI_PARSE_OBJECT *Field;
554 /* Determine field type */
588 /* Allocate a new field op */
590 Field = AcpiPsAllocOp (Opcode, Aml);
591 if (!Field)
596 /* Decode the field type *
    [all...]
  /src/sys/external/bsd/acpica/dist/tests/misc/
converterSample.asl 73 Field(GNVS,AnyAcc,Lock,Preserve)
badcode.asl 43 // Field access beyond region bounds
46 Field (OPR1, DWordAcc, NoLock, Preserve)
55 Field (OPR2, DWordAcc, NoLock, Preserve)
60 Field (OPR3, WordAcc, NoLock, Preserve)
386 // Tagged resource field larger than field being created
392 // Tagged resource field smaller than field being created
  /src/lib/libc/compat/net/
compat_ns_addr.c 53 static void Field(char *, uint8_t *, int);
69 * First, figure out what he intends as a field separator.
89 Field(buf, addr.x_net.c_net, 4);
96 Field(socketname, (uint8_t *)(void *)&addr.x_port, 2);
99 Field(hostname, addr.x_host.c_host, 6);
105 Field(char *buf, uint8_t *out, int len)
  /src/sys/external/bsd/acpica/dist/events/
evregion.c 129 * FieldObj - Corresponding field. Can be NULL.
132 * BitWidth - Field width in bits (8, 16, 32, or 64)
219 Ctx->InternalBuffer = FieldObj->Field.InternalPccBuffer;
310 * 1) Address is the pin number index of the field (bit offset from
312 * 2) BitWidth is the actual bit length of the field (number of pins)
330 Context->Connection = FieldObj->Field.ResourceBuffer;
331 Context->Length = FieldObj->Field.ResourceLength;
332 Context->AccessLength = FieldObj->Field.AccessLength;
336 Address = FieldObj->Field.PinNumberIndex;
337 BitWidth = FieldObj->Field.BitLength
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpihelp/
acpihelp.h 241 const char *Field);

Completed in 25 milliseconds

1 2