/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/sys/dev/acpi/acpica/ |
OsdHardware.c | 69 * Read a value from an input port. 72 AcpiOsReadPort(ACPI_IO_ADDRESS Address, UINT32 *Value, UINT32 Width) 77 *Value = acpi_md_OsIn8(Address); 81 *Value = acpi_md_OsIn16(Address); 85 *Value = acpi_md_OsIn32(Address); 98 * Write a value to an output port. 101 AcpiOsWritePort(ACPI_IO_ADDRESS Address, UINT32 Value, UINT32 Width) 106 acpi_md_OsOut8(Address, Value); 110 acpi_md_OsOut16(Address, Value); 114 acpi_md_OsOut32(Address, Value); [all...] |
/src/sys/external/bsd/acpica/dist/compiler/ |
aslpld.c | 204 UINT32 Value; 229 Value = (UINT32) ThisOp->Asl.Child->Asl.Value.Integer; 241 if (Value > 127) 247 PldInfo.Revision = (UINT8) Value; 258 if (Value > 1) 264 PldInfo.IgnoreColor = (UINT8) Value; 277 if (Value > 255) 285 PldInfo.Red = (UINT8) Value; 289 PldInfo.Green = (UINT8) Value; [all...] |
dtfield.c | 195 * DESCRIPTION: Compile a field value to binary 234 DtCompileBuffer (Buffer, Field->Value, Field, ByteLength); 277 Length = strlen (Field->Value); 285 ByteLength, Length, Field->Value); 290 memcpy (Buffer, Field->Value, Length); 323 AsciiString = Field->Value; 360 InString = Field->Value; 365 snprintf (AslGbl_MsgBuffer, sizeof(AslGbl_MsgBuffer), "%s", Field->Value); 400 UINT64 Value; 414 /* Resolve integer expression to a single integer value */ [all...] |
prexpress.c | 282 * RETURN: 64-bit boolean integer value 292 UINT64 Value; 299 Value = 0; /* Default is "Not defined" -- FALSE */ 304 Value = ACPI_UINT64_MAX; /* TRUE */ 309 AslGbl_CurrentLineNumber, Identifier, ACPI_FORMAT_UINT64 (Value)); 311 return (Value); 321 * RETURN: A 64-bit boolean integer value 331 UINT64 Value; 338 Value = 0; /* Default is "Not defined" -- FALSE */ 343 Value = ACPI_UINT64_MAX; /* TRUE * [all...] |
asloperands.c | 229 if (Next->Asl.Value.Integer > 15) 273 NumArgs = (UINT8) Next->Asl.Value.Integer; 282 Serialized = (UINT8) Next->Asl.Value.Integer; 286 /* Concurrency value (valid values are 0-15) */ 295 if (Next->Asl.Value.Integer > 15) 300 Concurrency = (UINT8) Next->Asl.Value.Integer; 312 Next->Asl.Value.Integer = MethodFlags; 355 AccessType = (UINT8) Op->Asl.Value.Integer; 360 FieldOp->Asl.Value.Integer = AccessType; 365 LockRule = (UINT8) Next->Asl.Value.Integer [all...] |
/src/sys/external/bsd/acpica/dist/tools/examples/ |
exstubs.c | 174 UINT32 *Value, 183 UINT32 Value,
|
/src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
xray_arm.cc | 34 inline static uint32_t getMovwMask(const uint32_t Value) XRAY_NEVER_INSTRUMENT { 35 return (Value & 0xfff) | ((Value & 0xf000) << 4); 39 inline static uint32_t getMovtMask(const uint32_t Value) XRAY_NEVER_INSTRUMENT { 40 return getMovwMask(Value >> 16); 44 // MOVW R<regNo>, #<lower 16 bits of the |Value|> 45 // MOVT R<regNo>, #<higher 16 bits of the |Value|> 48 const uint32_t Value) XRAY_NEVER_INSTRUMENT { 52 *Address = (0xE3000000 | (uint32_t(regNo) << 12) | getMovwMask(Value)); 55 *Address = (0xE3400000 | (uint32_t(regNo) << 12) | getMovtMask(Value)); [all...] |
/src/sys/external/bsd/acpica/dist/os_specific/service_layers/ |
oszephyr.c | 353 * Value - Where Value is placed 356 * RETURN: Value read from physical memory Address. Always returned 366 UINT64 *Value, 373 *((UINT8 *) Value) = sys_read8 (Address); 378 *((UINT16 *) Value) = sys_read16 (Address); 383 *((UINT32 *) Value) = sys_read32 (Address); 388 *((UINT64 *) Value) = sys_read64 (Address); 405 * Value - Value to writ [all...] |
/src/sys/external/bsd/acpica/dist/hardware/ |
hwregs.c | 173 UINT32 *Value, 179 UINT32 Value, 353 * PARAMETERS: Value - Where the value is returned 368 UINT64 *Value, 393 * Initialize entire 64-bit return value to zero, convert AccessWidth 396 *Value = 0; 434 ACPI_SET_BITS (Value, Index * AccessWidth, 443 ACPI_FORMAT_UINT64 (*Value), AccessWidth, 454 * PARAMETERS: Value - Value to be writte [all...] |
/src/sys/external/bsd/acpica/dist/executer/ |
exregion.c | 168 * Value - Pointer to in or out value 184 UINT64 *Value, 356 *Value = 0; 361 *Value = (UINT64) ACPI_GET8 (LogicalAddrPtr); 366 *Value = (UINT64) ACPI_GET16 (LogicalAddrPtr); 371 *Value = (UINT64) ACPI_GET32 (LogicalAddrPtr); 376 *Value = (UINT64) ACPI_GET64 (LogicalAddrPtr); 393 ACPI_SET8 (LogicalAddrPtr, *Value); 398 ACPI_SET16 (LogicalAddrPtr, *Value); [all...] |
exoparg1.c | 170 * and whether or not a value is returned: 180 * zR - RETURN VALUE: Indicates whether this opcode type returns a value 195 * DESCRIPTION: Execute operator with no operands, one return value 246 /* Save the return value */ 301 Status = AcpiExSystemDoSleep (Operand[0]->Integer.Value); 306 Status = AcpiExSystemDoStall ((UINT32) Operand[0]->Integer.Value); 336 * return value. 387 * return value. 436 ReturnDesc->Integer.Value = ~Operand[0]->Integer.Value [all...] |
exoparg3.c | 169 * and whether or not a value is returned: 179 * zR - RETURN VALUE: Indicates whether this opcode type returns a value 219 (UINT32) Operand[0]->Integer.Value, 220 (UINT32) Operand[1]->Integer.Value, 221 (UINT32) Operand[2]->Integer.Value)); 226 Fatal->Type = (UINT32) Operand[0]->Integer.Value; 227 Fatal->Code = (UINT32) Operand[1]->Integer.Value; 228 Fatal->Argument = (UINT32) Operand[2]->Integer.Value; 314 Index = Operand[1]->Integer.Value; [all...] |
exdebug.c | 193 UINT32 Value; 230 * We will emit the current timer value (in microseconds) with each 299 (UINT32) SourceDesc->Integer.Value); 304 ACPI_FORMAT_UINT64 (SourceDesc->Integer.Value)); 345 AcpiOsPrintf ("0x%X\n", SourceDesc->Reference.Value); 352 AcpiOsPrintf ("Table Index 0x%X\n", SourceDesc->Reference.Value); 411 Value = SourceDesc->Reference.Value; 418 Value, *SourceDesc->Reference.IndexPointer); 424 Value, *SourceDesc->Reference.IndexPointer [all...] |
exutils.c | 180 UINT64 Value, 304 (ObjDesc->Integer.Value > (UINT64) ACPI_UINT32_MAX)) 308 * the value to 32 bits by zeroing out the upper 32-bit field 310 ObjDesc->Integer.Value &= (UINT64) ACPI_UINT32_MAX; 413 * PARAMETERS: Value - Value to be represented 418 * DESCRIPTION: Calculate the number of digits needed to represent the Value 425 UINT64 Value, 437 if (Value == 0) 442 CurrentValue = Value; [all...] |
/src/sys/external/bsd/acpica/dist/dispatcher/ |
dswscope.c | 192 AcpiUtGetTypeName (ScopeInfo->Common.Value))); 255 ScopeInfo->Common.Value = (UINT16) Type; 268 AcpiUtGetTypeName (OldScopeInfo->Common.Value))); 278 AcpiUtGetTypeName (ScopeInfo->Common.Value))); 325 AcpiUtGetTypeName (ScopeInfo->Common.Value))); 332 AcpiUtGetTypeName (NewScopeInfo->Common.Value)));
|
dsfield.c | 342 Arg->Common.Value.String, ACPI_TYPE_ANY, 352 Arg->Common.Value.String, Status); 471 (UINT64) Arg->Common.Value.Size; 489 * NOTE. These three bytes are encoded in the integer value 500 ((UINT8) ((UINT32) (Arg->Common.Value.Integer & 0x07)))); 505 ((Arg->Common.Value.Integer >> 8) & 0xFF); 510 ((Arg->Common.Value.Integer >> 16) & 0xFF); 526 Child = Arg->Common.Value.Arg; 530 Info->ResourceLength = (UINT16) Child->Named.Value.Integer; 537 Child->Common.Value.Name, ACPI_TYPE_ANY [all...] |
/src/sys/dev/acpi/ |
smbus_acpi.c | 231 if (e[0].Integer.Value != 0x10) { 285 arg[1].Integer.Value = addr; 295 arg[0].Integer.Value = (cmdlen != 0) ? 298 arg[2].Integer.Value = 0; 302 arg[0].Integer.Value = ACPI_SMBUS_RD_BYTE; 303 arg[2].Integer.Value = *c; 307 arg[0].Integer.Value = ACPI_SMBUS_RD_WORD; 308 arg[2].Integer.Value = *c; 312 arg[0].Integer.Value = ACPI_SMBUS_RD_BLOCK; 313 arg[2].Integer.Value = *c [all...] |
/src/sys/external/bsd/acpica/dist/tools/acpiexec/ |
aehandlers.c | 163 UINT32 Value, 169 UINT32 Value, 175 UINT32 Value, 181 UINT32 Value, 246 UINT32 Value, 249 AeCommonNotifyHandler (Device, Value, 1); 255 UINT32 Value, 258 AeCommonNotifyHandler (Device, Value, 2); 264 UINT32 Value, 271 if (Value <= ACPI_MAX_SYS_NOTIFY [all...] |
/src/sys/external/bsd/acpica/dist/disassembler/ |
dmresrc.c | 249 * PARAMETERS: Value - Value to emit 260 UINT8 Value, 263 AcpiOsPrintf ("0x%2.2X, // %s\n", Value, Name); 268 UINT16 Value, 271 AcpiOsPrintf ("0x%4.4X, // %s\n", Value, Name); 276 UINT32 Value, 279 AcpiOsPrintf ("0x%8.8X, // %s\n", Value, Name); 284 UINT64 Value, 287 AcpiOsPrintf ("0x%8.8X%8.8X, // %s\n", ACPI_FORMAT_UINT64 (Value), Name) [all...] |
/src/sys/external/bsd/acpica/dist/resources/ |
rsmisc.c | 162 #define INIT_TABLE_LENGTH(i) i->Value 166 #define COMPARE_VALUE(i) i->Value 261 ((ACPI_GET8 (Source) >> Info->Value) & 0x01)); 269 ((ACPI_GET8 (Source) >> Info->Value) & 0x03)); 277 ((ACPI_GET8 (Source) >> Info->Value) & 0x07)); 285 ((ACPI_GET8 (Source) >> Info->Value) & 0x3F)); 294 (Info->Value * (ItemCount - 1)); 303 (Info->Value * (ItemCount - 1)); 308 Target = ACPI_ADD_PTR (void, Aml, Info->Value); 321 Resource->Length = Resource->Length + (Info->Value * ItemCount) [all...] |
rsdump.c | 168 const char *Value); 173 UINT8 Value); 178 UINT16 Value); 183 UINT32 Value); 188 UINT64 Value); 695 * Value - Value of the resource field 707 const char *Value) 710 AcpiOsPrintf ("%27s : %s", Title, Value); 711 if (!*Value) [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
FuzzerValueBitMap.h | 30 // Computes a hash function of Value and sets the corresponding bit. 33 inline bool AddValue(uintptr_t Value) { 34 uintptr_t Idx = Value % kMapSizeInBits; 44 inline bool AddValueModPrime(uintptr_t Value) { 45 return AddValue(Value % kMapPrimeMod);
|
/src/sys/external/bsd/drm2/include/linux/ |
nbsd-namespace-acpi.h | 40 #define value Value macro
|
/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);
|