Searched refs:Integer (Results 1 - 25 of 61) sorted by relevance

123

/haiku/src/add-ons/kernel/bus_managers/acpi/arch/x86/
H A Darch_init.cpp43 arg.Integer.Type = ACPI_TYPE_INTEGER;
44 arg.Integer.Value = apic_available() ? APIC_MODE : PIC_MODE;
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/executer/
H A Dexoparg3.c219 (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;
312 /* Get the Integer values from the objects */
314 Index = Operand[1]->Integer.Value;
315 Length = (ACPI_SIZE) Operand[2]->Integer.Value;
H A Dexoparg1.c217 /* Create a return object of type Integer */
301 Status = AcpiExSystemDoSleep (Operand[0]->Integer.Value);
306 Status = AcpiExSystemDoStall ((UINT32) Operand[0]->Integer.Value);
423 /* Create a return object of type Integer for these opcodes */
436 ReturnDesc->Integer.Value = ~Operand[0]->Integer.Value;
441 ReturnDesc->Integer.Value = Operand[0]->Integer.Value;
444 * Acpi specification describes Integer type as a little
447 for (Temp32 = 0; ReturnDesc->Integer
[all...]
H A Dexoparg6.c207 * the match object (Integer/Buffer/String).
354 if ((Operand[1]->Integer.Value > MAX_MATCH_OPERATOR) ||
355 (Operand[3]->Integer.Value > MAX_MATCH_OPERATOR))
364 Index = Operand[5]->Integer.Value;
414 if (!AcpiExDoMatch ((UINT32) Operand[1]->Integer.Value,
420 if (!AcpiExDoMatch ((UINT32) Operand[3]->Integer.Value,
428 ReturnDesc->Integer.Value = Index;
H A Dexoparg2.c228 Value = (UINT32) Operand[1]->Integer.Value;
315 Operand[0]->Integer.Value,
316 Operand[1]->Integer.Value,
317 &ReturnDesc1->Integer.Value,
318 &ReturnDesc2->Integer.Value);
414 ReturnDesc->Integer.Value = AcpiExDoMathOp (
416 Operand[0]->Integer.Value,
417 Operand[1]->Integer.Value);
435 Operand[0]->Integer.Value,
436 Operand[1]->Integer
[all...]
H A Dexcreate.c344 ObjDesc->Mutex.SyncLevel = (UINT8) WalkState->Operands[1]->Integer.Value;
511 ObjDesc->Processor.ProcId = (UINT8) Operand[1]->Integer.Value;
512 ObjDesc->Processor.Length = (UINT8) Operand[3]->Integer.Value;
513 ObjDesc->Processor.Address = (ACPI_IO_ADDRESS) Operand[2]->Integer.Value;
563 ObjDesc->PowerResource.SystemLevel = (UINT8) Operand[1]->Integer.Value;
564 ObjDesc->PowerResource.ResourceOrder = (UINT16) Operand[2]->Integer.Value;
626 MethodFlags = (UINT8) Operand[1]->Integer.Value;
H A Dexconvrt.c165 UINT64 Integer,
176 * Integer, Buffer, or String
177 * ResultDesc - Where the new Integer object is returned
322 * Integer, Buffer, or String
367 memcpy (NewBuf, &ObjDesc->Integer.Value, AcpiGbl_IntegerByteWidth);
411 * PARAMETERS: Integer - Value to be converted
418 * DESCRIPTION: Convert an ACPI Integer to a hex or decimal string
424 UINT64 Integer,
474 Digit = Integer;
505 AcpiUtHexToAsciiChar (Integer, ACPI_MUL_
423 AcpiExConvertToAscii( UINT64 Integer, UINT16 Base, UINT8 *String, UINT8 DataWidth) argument
[all...]
H A Dexstoren.c207 * Stores into a Field/Region or into a Integer/Buffer/String
209 * "interchangeable" types Integer, String, and Buffer.
229 /* Must have a Integer, Buffer, or String */
369 DestDesc->Integer.Value = ActualSrcDesc->Integer.Value;
H A Dexdebug.c299 (UINT32) SourceDesc->Integer.Value);
304 ACPI_FORMAT_UINT64 (SourceDesc->Integer.Value));
H A Dexutils.c279 * DESCRIPTION: Truncate an ACPI Integer to 32 bits if the execution mode is
304 (ObjDesc->Integer.Value > (UINT64) ACPI_UINT32_MAX))
310 ObjDesc->Integer.Value &= (UINT64) ACPI_UINT32_MAX;
H A Dexserial.c217 * an Integer object.
257 SourceDesc->Common.Type, (UINT32) SourceDesc->Integer.Value,
260 Buffer = &SourceDesc->Integer.Value;
H A Dexmisc.c264 * Integer0 - Integer operand #0
265 * Integer1 - Integer operand #1
267 * RETURN: Integer result of the operation
355 * Integer0 - Integer operand #0
356 * Integer1 - Integer operand #1
433 * operands can be any combination of Integer/String/Buffer. The
467 * guaranteed to be either Integer/String/Buffer by the operand
512 Integer0 = Operand0->Integer.Value;
513 Integer1 = LocalOperand1->Integer.Value;
H A Dexsystem.c420 (UINT16) TimeDesc->Integer.Value);
H A Dexconfig.c280 /* Table not found, return an Integer=0 and AE_OK */
378 ReturnObj->Integer.Value = 0xFFFFFFFFFFFFFFFF;
478 Target->Integer.Value = 0;
656 Target->Integer.Value = 0xFFFFFFFFFFFFFFFF;
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/utilities/
H A Duthex.c171 * PARAMETERS: Integer - Contains the hex digit
183 UINT64 Integer,
188 AcpiUtShortShiftRight (Integer, Position, &Index);
182 AcpiUtHexToAsciiChar( UINT64 Integer, UINT32 Position) argument
H A Dutids.c172 * Integer or a String. A string is always returned. An EISAID
229 AcpiExEisaIdToString (Hid->String, ObjDesc->Integer.Value);
259 * ID of the device. The UID is either a 64-bit Integer (NOT an
313 /* Convert an Integer to string, or just copy an existing string */
317 AcpiExIntegerToString (Uid->String, ObjDesc->Integer.Value);
353 * 1) Integer (32 bit compressed EISA ID) or
356 * The Integer CIDs are converted to string format by this function.
392 * a Package of Integers/Strings or a single Integer or String.
394 * correct type (Integer or String).
401 else /* Single Integer o
[all...]
H A Duteval.c348 /* Get the returned Integer */
350 *Value = ObjDesc->Integer.Value;
412 *Flags = (UINT32) ObjDesc->Integer.Value;
459 * return type is an Integer.
466 OutValues[i] = (UINT8) ObjDesc->Integer.Value;
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/dispatcher/
H A Ddsobject.c349 ByteListLength = (UINT32) ByteList->Common.Value.Integer;
557 ObjDesc->Integer.Value = 0;
562 ObjDesc->Integer.Value = 1;
567 ObjDesc->Integer.Value = ACPI_UINT64_MAX;
576 ObjDesc->Integer.Value = ACPI_CA_VERSION;
590 ObjDesc->Integer.Value = Op->Common.Value.Integer;
598 ACPI_FORMAT_UINT64 (Op->Common.Value.Integer),
599 (UINT32) ObjDesc->Integer.Value));
605 ACPI_ERROR ((AE_INFO, "Unknown Integer typ
[all...]
H A Ddsfield.c500 ((UINT8) ((UINT32) (Arg->Common.Value.Integer & 0x07))));
505 ((Arg->Common.Value.Integer >> 8) & 0xFF);
510 ((Arg->Common.Value.Integer >> 16) & 0xFF);
530 Info->ResourceLength = (UINT16) Child->Named.Value.Integer;
681 Info.FieldFlags = (UINT8) Arg->Common.Value.Integer;
912 Info.FieldFlags = (UINT8) Arg->Common.Value.Integer;
992 Info.FieldFlags = (UINT8) Arg->Common.Value.Integer;
H A Ddsopcode.c270 Offset = (UINT32) OffsetDesc->Integer.Value;
283 BitCount = (UINT32) LengthDesc->Integer.Value;
540 SpaceId = (ACPI_ADR_SPACE_TYPE) NextOp->Common.Value.Integer;
575 ObjDesc->Region.Length = (UINT32) OperandDesc->Integer.Value;
594 OperandDesc->Integer.Value;
793 Length = (UINT32) ArgDesc->Integer.Value;
940 ObjDesc->BankField.Value = (UINT32) OperandDesc->Integer.Value;
H A Ddswload.c528 Op->Named.Name = Node->Name.Integer;
629 ((Op->Common.Value.Arg)->Common.Value.Integer),
676 * Op->Common.Value.Arg->Common.Next->Common.Value.Integer == 0
679 ParamCount = (UINT8) Op->Common.Value.Arg->Common.Next->Common.Value.Integer;
680 ObjectType = (UINT8) Op->Common.Value.Arg->Common.Value.Integer;
/haiku/src/preferences/time/
H A Dntp.cpp44 int16 Integer() { return htons(integer); } function in struct:fixed32
59 uint32 Integer() { return htonl(integer); } function in struct:ufixed64
200 if (message.transmit_timestamp.Integer() == 0) {
205 time_t now = message.transmit_timestamp.Integer() - kSecondsBetween1900And1970;
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/namespace/
H A Dnsrepair2.c632 if ((UINT32) ObjDesc->Integer.Value == 0)
652 /* Update top-level package count, Type "Integer" checked elsewhere */
655 ObjDesc->Integer.Value = OuterElementCount;
893 if ((UINT32) ObjDesc->Integer.Value > PreviousValue)
901 PreviousValue = (UINT32) ObjDesc->Integer.Value;
1055 (ObjDesc->Integer.Value < PreviousValue)) ||
1057 (ObjDesc->Integer.Value > PreviousValue)))
1070 PreviousValue = (UINT32) ObjDesc->Integer.Value;
1092 * and that all elements have been verified to be of type Integer.
1120 (ObjDesc1->Integer
[all...]
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/hardware/
H A Dhwxface.c513 * Integer 0 - Value for the PM1A SLP_TYP register
514 * Integer 1 - Value for the PM1A SLP_TYP register
609 *SleepTypeA = (UINT8) Elements[0]->Integer.Value;
610 *SleepTypeB = (UINT8) (Elements[0]->Integer.Value >> 8);
625 *SleepTypeA = (UINT8) Elements[0]->Integer.Value;
626 *SleepTypeB = (UINT8) Elements[1]->Integer.Value;
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/parser/
H A Dpsargs.c556 Arg->Common.Value.Integer = (UINT64) *Aml;
565 ACPI_MOVE_16_TO_64 (&Arg->Common.Value.Integer, Aml);
574 ACPI_MOVE_32_TO_64 (&Arg->Common.Value.Integer, Aml);
583 ACPI_MOVE_64_TO_64 (&Arg->Common.Value.Integer, Aml);
760 Field->Common.Value.Integer = (UINT8) AccessType;
761 Field->Common.Value.Integer |= (UINT16) (AccessAttribute << 8);
770 Field->Common.Value.Integer |= (UINT32) (AccessLength << 16);

Completed in 91 milliseconds

123