Home | History | Annotate | Download | only in compiler

Lines Matching defs:Value

87  * DESCRIPTION: Compile a field value to binary
126 DtCompileBuffer (Buffer, Field->Value, Field, ByteLength);
169 Length = strlen (Field->Value);
177 ByteLength, Length, Field->Value);
182 memcpy (Buffer, Field->Value, Length);
215 AsciiString = Field->Value;
252 InString = Field->Value;
257 snprintf (AslGbl_MsgBuffer, sizeof(AslGbl_MsgBuffer), "%s", Field->Value);
292 UINT64 Value;
306 /* Resolve integer expression to a single integer value */
308 Status = DtResolveIntegerExpression (Field, &Value);
316 * the DT_NON_ZERO flag to indicate that the reserved value
317 * must be exactly one. Otherwise, the value must be zero.
327 if (Value != 1)
331 Value = 1;
334 else if (Value != 0)
338 Value = 0;
342 /* Check if the value must be non-zero */
344 else if ((Flags & DT_NON_ZERO) && (Value == 0))
350 * Generate the maximum value for the data type (ByteLength)
355 /* Validate that the input value is within range of the target */
357 if (Value > MaxValue)
360 ACPI_FORMAT_UINT64 (Value), ByteLength);
364 memcpy (Buffer, &Value, ByteLength);
467 /* Allow several different types of value separators */
484 /* Check for byte value too long */
529 UINT64 Value = 0;
534 Value = AcpiUtImplicitStrtoul64 (Field->Value);
619 value */
621 if (Value >= ((UINT64) 1 << BitLength))
625 Value = 0;
628 *Buffer |= (UINT8) (Value << BitPosition);
637 * Value
659 if (FieldKey->Value)
662 strcpy (UtLocalCacheCalloc (strlen (FieldKey->Value) + 1), FieldKey->Value);
665 if (FieldValue->Value)
667 Field->StringLength = strlen (FieldValue->Value);
668 Field->Value =
669 strcpy (UtLocalCacheCalloc (Field->StringLength + 1), FieldValue->Value);
705 Unit->Value = Data;
720 * DESCRIPTION: Link one field name and value to the list