| /src/sys/external/bsd/acpica/dist/executer/ |
| exdebug.c | 85 UINT32 Value; 122 * We will emit the current timer value (in microseconds) with each 191 (UINT32) SourceDesc->Integer.Value); 196 ACPI_FORMAT_UINT64 (SourceDesc->Integer.Value)); 237 AcpiOsPrintf ("0x%X\n", SourceDesc->Reference.Value); 244 AcpiOsPrintf ("Table Index 0x%X\n", SourceDesc->Reference.Value); 303 Value = SourceDesc->Reference.Value; 310 Value, *SourceDesc->Reference.IndexPointer); 316 Value, *SourceDesc->Reference.IndexPointer [all...] |
| exoparg2.c | 61 * and whether or not a value is returned: 71 * zR - RETURN VALUE: Indicates whether this opcode type returns a value 88 * value. 100 UINT32 Value; 118 /* Second value is the notify value */ 120 Value = (UINT32) Operand[1]->Integer.Value; 141 Status = AcpiEvQueueNotifyRequest (Node, Value); [all...] |
| exstore.c | 74 * PARAMETERS: *SourceDesc - Value to be stored 82 * DESCRIPTION: Store the value described by SourceDesc into the location 188 RefDesc->Reference.Value, SourceDesc, WalkState); 193 * Storing to the Debug object causes the value stored to be 221 * PARAMETERS: *SourceDesc - Value to be stored 222 * *DestDesc - Named object to receive the value 240 UINT8 Value = 0; 344 Value = (UINT8) (SourceDesc->Integer.Value); 352 Value = SourceDesc->Buffer.Pointer[0] [all...] |
| exoparg1.c | 62 * and whether or not a value is returned: 72 * zR - RETURN VALUE: Indicates whether this opcode type returns a value 87 * DESCRIPTION: Execute operator with no operands, one return value 138 /* Save the return value */ 193 Status = AcpiExSystemDoSleep (Operand[0]->Integer.Value); 198 Status = AcpiExSystemDoStall ((UINT32) Operand[0]->Integer.Value); 228 * return value. 279 * return value. 328 ReturnDesc->Integer.Value = ~Operand[0]->Integer.Value [all...] |
| exconfig.c | 109 ObjDesc->Reference.Value = TableIndex; 269 ReturnObj->Integer.Value = 0xFFFFFFFFFFFFFFFF; 296 UINT64 Value; 306 RegionOffset, 8, &Value); 312 *Buffer = (UINT8) Value; 369 Target->Integer.Value = 0; 547 Target->Integer.Value = 0xFFFFFFFFFFFFFFFF; 615 TableIndex = TableDesc->Reference.Value;
|
| /src/sys/external/bsd/acpica/dist/hardware/ |
| hwacpi.c | 183 UINT32 Value; 205 Status = AcpiReadBitRegister (ACPI_BITREG_SCI_ENABLE, &Value); 211 if (Value)
|
| hwxface.c | 98 * hardcode it here and ignore the FADT value. This maintains 107 /* Write the reset value to the reset register */ 122 * PARAMETERS: Value - Where the value is returned 159 * PARAMETERS: Value - Value to be written 170 UINT64 Value, 179 Status = AcpiHwWrite (Value, Reg); 192 * ReturnValue - Value that was read from the register, 195 * RETURN: Status and the value read from the specified Register. Valu [all...] |
| hwregs.c | 65 UINT32 *Value, 71 UINT32 Value, 245 * PARAMETERS: Value - Where the value is returned 260 UINT64 *Value, 285 * Initialize entire 64-bit return value to zero, convert AccessWidth 288 *Value = 0; 326 ACPI_SET_BITS (Value, Index * AccessWidth, 335 ACPI_FORMAT_UINT64 (*Value), AccessWidth, 346 * PARAMETERS: Value - Value to be writte [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/ |
| ubsan_value.cc | 10 // Representation of a runtime value, as marshaled from the generated code to 23 SIntMax Value::getSIntValue() const { 44 UIntMax Value::getUIntValue() const { 60 UIntMax Value::getPositiveIntValue() const { 68 /// Get the floating-point value of this object, extended to a long double. 71 FloatMax Value::getFloatValue() const { 79 __fp16 Value; 80 internal_memcpy(&Value, &Val, 4); 81 return Value; 85 float Value; [all...] |
| /src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
| ChecksumImpl.cs | 23 /// The value of the current checksum
37 /// Initializes a new instance of the checksum generator base with a specified value
39 /// <param name="initialValue">The value to set the current checksum to</param>
51 /// Gets the current checksum value
53 public uint Value { get { return _current; } }
119 /// Initializes a new instance of the CRC32 checksum generator with a specified value
121 /// <param name="initialValue">The value to set the current checksum to</param>
170 /// Initializes a new instance of the Adler checksum generator with a specified value
172 /// <param name="initialValue">The value to set the current checksum to</param>
|
| /src/sys/external/bsd/acpica/dist/events/ |
| evxfevnt.c | 195 UINT32 Value; 230 AcpiGbl_FixedEventInfo[Event].EnableRegisterId, &Value); 236 if (Value != 1) 268 UINT32 Value; 301 AcpiGbl_FixedEventInfo[Event].EnableRegisterId, &Value); 307 if (Value != 0)
|
| /src/sys/external/bsd/acpica/dist/compiler/ |
| aslpld.c | 96 UINT32 Value; 121 Value = (UINT32) ThisOp->Asl.Child->Asl.Value.Integer; 133 if (Value > 127) 139 PldInfo.Revision = (UINT8) Value; 150 if (Value > 1) 156 PldInfo.IgnoreColor = (UINT8) Value; 169 if (Value > 255) 177 PldInfo.Red = (UINT8) Value; 181 PldInfo.Green = (UINT8) Value; [all...] |
| prexpress.c | 174 * RETURN: 64-bit boolean integer value 184 UINT64 Value; 191 Value = 0; /* Default is "Not defined" -- FALSE */ 196 Value = ACPI_UINT64_MAX; /* TRUE */ 201 AslGbl_CurrentLineNumber, Identifier, ACPI_FORMAT_UINT64 (Value)); 203 return (Value); 213 * RETURN: A 64-bit boolean integer value 223 UINT64 Value; 230 Value = 0; /* Default is "Not defined" -- FALSE */ 235 Value = ACPI_UINT64_MAX; /* TRUE * [all...] |
| aslresource.c | 57 * PARAMETERS: Minimum - Address Min value 58 * Maximum - Address Max value 59 * Length - Address range value 60 * Alignment - Address alignment value 65 * NULL, means "zero value for alignment is 72 * DESCRIPTION: Perform common value checks for "small" address descriptors. 163 /* Addresses must be an exact multiple of the alignment value */ 180 * PARAMETERS: Minimum - Address Min value 181 * Maximum - Address Max value 182 * Length - Address range value [all...] |
| dtutils.c | 245 * RETURN: Field value 247 * DESCRIPTION: Get field value 260 return (Field->Value); 444 char *Value; 573 Value = DtGetFieldValue (Field); 574 if (Value) 576 ByteLength = strlen (Value) + 1; 589 Value = DtGetFieldValue (Field); 590 if (Value) 592 ByteLength = strlen (Value); [all...] |
| dtfield.c | 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 */ [all...] |
| /src/usr.sbin/ypserv/yptest/ |
| yptest.c | 51 char *Domain, *Value, *Key2; 71 Status = yp_match(Domain, Map, Key, KeyLen, &Value, &ValLen); 73 printf("%*.*s\n", ValLen, ValLen, Value); 78 Status = yp_first(Domain, Map, &Key2, &KeyLen, &Value, &ValLen); 81 Value); 88 &KeyLen, &Value, &ValLen); 91 ValLen, ValLen, Value);
|
| /src/sys/external/bsd/acpica/dist/utilities/ |
| utmisc.c | 127 * PARAMETERS: Value - Value to be converted 131 * DESCRIPTION: Convert a 32-bit value to big-endian (swap the bytes) 137 UINT32 Value) 141 UINT32 Value; 146 UINT32 Value; 154 In.Value = Value; 161 return (Out.Value);
|
| /src/sys/external/bsd/acpica/dist/debugger/ |
| dbconvert.c | 61 * ReturnValue - Where the converted value is returned 74 UINT8 Value; 86 Value = (UINT8) (HexChar - 0x30); 90 Value = (UINT8) (toupper (HexChar) - 0x37); 93 *ReturnValue = Value; 104 * ReturnValue - Where the converted value is returned 330 Status = AcpiUtStrtoul64 (String, &Object->Integer.Value); 344 * RETURN: Encode _PLD buffer suitable for return value from _PLD
|
| /src/sys/external/bsd/acpica/dist/namespace/ |
| nsconvert.c | 76 UINT64 Value = 0; 86 Status = AcpiUtStrtoul64 (OriginalObject->String.Pointer, &Value); 106 Value |= ((UINT64) 116 NewObject = AcpiUtCreateIntegerObject (Value); 155 * an integer of value 0 to a NULL string. The last element of 158 if (OriginalObject->Integer.Value == 0) 314 *DwordBuffer = (UINT32) (*Elements)->Integer.Value; 431 * 1. No return value (interpreter slack mode is disabled) 446 if (OriginalObject->Integer.Value)
|
| /src/sys/external/bsd/acpica/dist/tools/acpiexec/ |
| aecommon.h | 90 char *Value; 196 UINT64 *Value,
|
| aeexec.c | 79 Arg[0].Integer.Value = ACPI_TO_INTEGER (RegionAddr); 241 PkgElements[0].Integer.Value = 0x22228888; 258 Pkg2Elements[0].Integer.Value = 0xAAAABBBB; 346 "Return value from _OSI method too small, %.8X\n", 359 if (Obj->Integer.Value != ExpectedResult) 362 "Invalid return value from _OSI, expected %8.8X%8.8X found %8.8X%8.8X\n", 364 ACPI_FORMAT_UINT64 (Obj->Integer.Value)); 398 UINT64 Value; 406 Status = AcpiRead (&Value, &GenericRegister); 409 Status = AcpiWrite (Value, &GenericRegister) [all...] |
| aetests.c | 420 UINT32 Value; 443 Status = AcpiReadBitRegister (ACPI_BITREG_WAKE_STATUS, &Value); 446 Status = AcpiReadBitRegister (ACPI_BITREG_GLOBAL_LOCK_ENABLE, &Value); 449 Status = AcpiReadBitRegister (ACPI_BITREG_SLEEP_ENABLE, &Value); 452 Status = AcpiReadBitRegister (ACPI_BITREG_ARB_DISABLE, &Value);
|
| /src/games/mille/ |
| extern.c | 81 End, /* End value for current hand */ 88 const int Value[NUM_MILES] = { /* Value of mileage cards */
|
| /src/sys/dev/acpi/ |
| apei_erst.c | 335 if (header->Value > ninst) { 339 header->Value, 386 const uint64_t Value = header->Value; 393 " BitOffset=%"PRIu8" Mask=0x%"PRIx64" Value=0x%"PRIx64 400 BitOffset, Mask, Value, 419 M->y = (v == Value ? 1 : 0); 426 apei_write_register(reg, map, Mask, preserve_register, Value); 463 v += Value; 471 v -= Value; [all...] |