Home
last modified time | relevance | path

Searched refs:Index (Results 1 – 25 of 111) sorted by relevance

12345

/dragonfly/sys/contrib/dev/acpica/source/components/dispatcher/
HDdsmthdat.c167 UINT32 Index,
173 UINT32 Index,
181 UINT32 Index,
264 UINT32 Index; in AcpiDsMethodDataDeleteAll() local
272 for (Index = 0; Index < ACPI_METHOD_NUM_LOCALS; Index++) in AcpiDsMethodDataDeleteAll()
274 if (WalkState->LocalVariables[Index].Object) in AcpiDsMethodDataDeleteAll()
277 Index, WalkState->LocalVariables[Index].Object)); in AcpiDsMethodDataDeleteAll()
281 AcpiNsDetachObject (&WalkState->LocalVariables[Index]); in AcpiDsMethodDataDeleteAll()
287 for (Index = 0; Index < ACPI_METHOD_NUM_ARGS; Index++) in AcpiDsMethodDataDeleteAll()
289 if (WalkState->Arguments[Index].Object) in AcpiDsMethodDataDeleteAll()
[all …]
HDdsutils.c869 UINT32 Index = WalkState->NumOperands; in AcpiDsCreateOperands() local
881 if (Index >= ACPI_OBJ_NUM_OPERANDS) in AcpiDsCreateOperands()
886 Arguments[Index] = Arg; in AcpiDsCreateOperands()
887 WalkState->Operands [Index] = NULL; in AcpiDsCreateOperands()
893 Index++; in AcpiDsCreateOperands()
898 WalkState->NumOperands, ArgCount, Index)); in AcpiDsCreateOperands()
902 Index--; in AcpiDsCreateOperands()
905 Arg = Arguments[Index]; in AcpiDsCreateOperands()
906 WalkState->OperandIndex = (UINT8) Index; in AcpiDsCreateOperands()
908 Status = AcpiDsCreateOperand (WalkState, Arg, Index); in AcpiDsCreateOperands()
[all …]
HDdswstate.c190 UINT32 Index; in AcpiDsResultPop() local
225 Index = (UINT32) WalkState->ResultCount % ACPI_RESULTS_FRAME_OBJ_NUM; in AcpiDsResultPop()
227 *Object = State->Results.ObjDesc [Index]; in AcpiDsResultPop()
235 State->Results.ObjDesc [Index] = NULL; in AcpiDsResultPop()
236 if (Index == 0) in AcpiDsResultPop()
248 Index, WalkState, WalkState->ResultCount)); in AcpiDsResultPop()
274 UINT32 Index; in AcpiDsResultPush() local
320 Index = (UINT32) WalkState->ResultCount % ACPI_RESULTS_FRAME_OBJ_NUM; in AcpiDsResultPush()
321 State->Results.ObjDesc [Index] = Object; in AcpiDsResultPush()
/dragonfly/sys/contrib/dev/acpica/source/compiler/
HDaslmessages.c453 UINT32 Index; in AeDecodeMessageId() local
462 Index = MessageId; in AeDecodeMessageId()
464 if (Index >= ACPI_ARRAY_LENGTH (AslCompilerMsgs)) in AeDecodeMessageId()
475 Index = MessageId - ASL_MSG_TABLE_COMPILER; in AeDecodeMessageId()
477 if (Index >= ACPI_ARRAY_LENGTH (AslTableCompilerMsgs)) in AeDecodeMessageId()
488 Index = MessageId - ASL_MSG_PREPROCESSOR; in AeDecodeMessageId()
490 if (Index >= ACPI_ARRAY_LENGTH (AslPreprocessorMsgs)) in AeDecodeMessageId()
503 return (MessageTable[Index]); in AeDecodeMessageId()
600 UINT32 Index = 1; in AhDecodeAslException() local
616 for (i = 1; Index < ACPI_ARRAY_LENGTH (AslCompilerMsgs); i++, Index++) in AhDecodeAslException()
[all …]
HDaslpredef.c198 UINT32 Index; in ApCheckForPredefinedMethod() local
205 Index = ApCheckForPredefinedName (Op, Op->Asl.NameSeg); in ApCheckForPredefinedMethod()
207 switch (Index) in ApCheckForPredefinedMethod()
242 ThisName = &AcpiGbl_PredefinedMethods[Index]; in ApCheckForPredefinedMethod()
357 UINT32 Index; in ApCheckPredefinedReturnValue() local
369 Index = ApCheckForPredefinedName (MethodInfo->Op, in ApCheckPredefinedReturnValue()
373 switch (Index) in ApCheckPredefinedReturnValue()
391 ThisName = &AcpiGbl_PredefinedMethods[Index]; in ApCheckPredefinedReturnValue()
463 UINT32 Index; in ApCheckForPredefinedObject() local
472 Index = ApCheckForPredefinedName (Op, Name); in ApCheckForPredefinedObject()
[all …]
HDaslopt.c325 UINT32 Index; in OptBuildShortestPath() local
364 Index = (NumCommonSegments * ACPI_PATH_SEGMENT_LENGTH) + 1; in OptBuildShortestPath()
367 &(ACPI_CAST_PTR (char, TargetPath->Pointer)) [Index], in OptBuildShortestPath()
368 &(ACPI_CAST_PTR (char, CurrentPath->Pointer)) [Index])) in OptBuildShortestPath()
422 Index = (NumCommonSegments * ACPI_PATH_SEGMENT_LENGTH) + 1; in OptBuildShortestPath()
434 Index -= ACPI_PATH_SEGMENT_LENGTH; in OptBuildShortestPath()
448 if (Index > TargetPath->Length) in OptBuildShortestPath()
450 Index = TargetPath->Length; in OptBuildShortestPath()
454 &(ACPI_CAST_PTR (char, TargetPath->Pointer))[Index]); in OptBuildShortestPath()
HDasllistsup.c480 UINT32 Index = 16; in LsWriteOneSourceLine() local
563 FlPrintFile (FileId, "\n%*s{\n", Index, " "); in LsWriteOneSourceLine()
565 Index += 4; in LsWriteOneSourceLine()
577 Index -= 4; in LsWriteOneSourceLine()
578 FlPrintFile (FileId, "%*s}\n", Index, " "); in LsWriteOneSourceLine()
592 FlPrintFile (FileId, "%*s", Index, " "); in LsWriteOneSourceLine()
HDaslstubs.c212 UINT32 Index, in AcpiDsMethodDataGetValue() argument
222 UINT32 Index, in AcpiDsMethodDataGetNode() argument
232 UINT32 Index, in AcpiDsStoreObjectToLocal() argument
344 UINT32 Index) in AcpiExDoDebugObject() argument
/dragonfly/sys/contrib/dev/acpica/source/os_specific/service_layers/
HDoswinxf.c957 UINT32 Index = (UINT32) Handle; in AcpiOsDeleteSemaphore() local
960 if ((Index >= ACPI_OS_MAX_SEMAPHORES) || in AcpiOsDeleteSemaphore()
961 !AcpiGbl_Semaphores[Index].OsHandle) in AcpiOsDeleteSemaphore()
966 CloseHandle (AcpiGbl_Semaphores[Index].OsHandle); in AcpiOsDeleteSemaphore()
967 AcpiGbl_Semaphores[Index].OsHandle = NULL; in AcpiOsDeleteSemaphore()
992 UINT32 Index = (UINT32) Handle; in AcpiOsWaitSemaphore() local
1000 if ((Index >= ACPI_OS_MAX_SEMAPHORES) || in AcpiOsWaitSemaphore()
1001 !AcpiGbl_Semaphores[Index].OsHandle) in AcpiOsWaitSemaphore()
1030 AcpiGbl_Semaphores[Index].OsHandle, OsTimeout); in AcpiOsWaitSemaphore()
1037 Index, ACPI_OS_DEBUG_TIMEOUT)); in AcpiOsWaitSemaphore()
[all …]
/dragonfly/lib/libefivar/
HDefivar-dp-format.c233 UINTN Index; in DevPathToTextVendor() local
332 for (Index = 0; Index < DataLength; Index++) { in DevPathToTextVendor()
333 …PathLibCatPrint (Str, "%02x", ((VENDOR_DEVICE_PATH_WITH_DATA *) Vendor)->VendorDefinedData[Index]); in DevPathToTextVendor()
588 UINT16 Index; in DevPathToTextAcpiAdr() local
598 for (Index = 0; Index < AdditionalAdrCount; Index++) { in DevPathToTextAcpiAdr()
599 UefiDevicePathLibCatPrint (Str, ",0x%x", Addr[Index]); in DevPathToTextAcpiAdr()
718 UINTN Index; in DevPathToTextFibreEx() local
722 for (Index = 0; Index < sizeof (FibreEx->WWN) / sizeof (FibreEx->WWN[0]); Index++) { in DevPathToTextFibreEx()
723 UefiDevicePathLibCatPrint (Str, "%02x", FibreEx->WWN[Index]); in DevPathToTextFibreEx()
726 for (Index = 0; Index < sizeof (FibreEx->Lun) / sizeof (FibreEx->Lun[0]); Index++) { in DevPathToTextFibreEx()
[all …]
/dragonfly/sys/contrib/dev/acpica/source/components/executer/
HDexoparg6.c336 UINT64 Index; in AcpiExOpcode_6A_0T_1R() local
364 Index = Operand[5]->Integer.Value; in AcpiExOpcode_6A_0T_1R()
365 if (Index >= Operand[0]->Package.Count) in AcpiExOpcode_6A_0T_1R()
369 ACPI_FORMAT_UINT64 (Index), Operand[0]->Package.Count)); in AcpiExOpcode_6A_0T_1R()
396 for ( ; Index < Operand[0]->Package.Count; Index++) in AcpiExOpcode_6A_0T_1R()
400 ThisElement = Operand[0]->Package.Elements[Index]; in AcpiExOpcode_6A_0T_1R()
428 ReturnDesc->Integer.Value = Index; in AcpiExOpcode_6A_0T_1R()
HDexoparg2.c392 UINT64 Index; in AcpiExOpcode_2A_1T_1R() local
508 Index = Operand[1]->Integer.Value; in AcpiExOpcode_2A_1T_1R()
509 ReturnDesc->Reference.Value = (UINT32) Index; in AcpiExOpcode_2A_1T_1R()
520 if (Index >= Operand[0]->String.Length) in AcpiExOpcode_2A_1T_1R()
528 &(Operand[0]->Buffer.Pointer [Index]); in AcpiExOpcode_2A_1T_1R()
533 if (Index >= Operand[0]->Buffer.Length) in AcpiExOpcode_2A_1T_1R()
541 &(Operand[0]->Buffer.Pointer [Index]); in AcpiExOpcode_2A_1T_1R()
546 if (Index >= Operand[0]->Package.Count) in AcpiExOpcode_2A_1T_1R()
554 &Operand[0]->Package.Elements [Index]; in AcpiExOpcode_2A_1T_1R()
571 ACPI_FORMAT_UINT64 (Index), (UINT32) Length)); in AcpiExOpcode_2A_1T_1R()
HDexnames.c293 UINT32 Index; in AcpiExNameSegment() local
312 for (Index = 0; in AcpiExNameSegment()
313 (Index < ACPI_NAMESEG_SIZE) && (AcpiUtValidNameChar (*AmlAddress, 0)); in AcpiExNameSegment()
314 Index++) in AcpiExNameSegment()
316 CharBuf[Index] = *AmlAddress++; in AcpiExNameSegment()
322 if (Index == 4) in AcpiExNameSegment()
340 else if (Index == 0) in AcpiExNameSegment()
HDexoparg3.c289 UINT64 Index; in AcpiExOpcode_3A_1T_1R() local
314 Index = Operand[1]->Integer.Value; in AcpiExOpcode_3A_1T_1R()
321 if (Index >= Operand[0]->String.Length) in AcpiExOpcode_3A_1T_1R()
328 else if ((Index + Length) > Operand[0]->String.Length) in AcpiExOpcode_3A_1T_1R()
331 (ACPI_SIZE) Operand[0]->String.Length - (ACPI_SIZE) Index; in AcpiExOpcode_3A_1T_1R()
378 Operand[0]->String.Pointer + Index, Length); in AcpiExOpcode_3A_1T_1R()
HDexdebug.c188 UINT32 Index) in AcpiExDoDebugObject() argument
225 if (!((Level > 0) && Index == 0)) in AcpiExDoDebugObject()
249 if (Index > 0) in AcpiExDoDebugObject()
251 AcpiOsPrintf ("(%.2u) ", Index - 1); in AcpiExDoDebugObject()
/dragonfly/sys/contrib/dev/acpica/source/components/debugger/
HDdbmethod.c280 UINT32 Index; in AcpiDbSetMethodData() local
322 Index = strtoul (IndexArg, NULL, 16); in AcpiDbSetMethodData()
348 if (Index > ACPI_METHOD_MAX_ARG) in AcpiDbSetMethodData()
351 Index); in AcpiDbSetMethodData()
356 Index, ObjDesc, WalkState); in AcpiDbSetMethodData()
362 ObjDesc = WalkState->Arguments[Index].Object; in AcpiDbSetMethodData()
364 AcpiOsPrintf ("Arg%u: ", Index); in AcpiDbSetMethodData()
372 if (Index > ACPI_METHOD_MAX_LOCAL) in AcpiDbSetMethodData()
375 Index); in AcpiDbSetMethodData()
380 Index, ObjDesc, WalkState); in AcpiDbSetMethodData()
[all …]
/dragonfly/sys/contrib/dev/acpica/source/components/resources/
HDrscreate.c352 UINT32 Index; in AcpiRsCreatePciRoutingTable() local
394 for (Index = 0; Index < NumberOfElements; Index++) in AcpiRsCreatePciRoutingTable()
418 Index, (*TopObjectList)->Package.Count)); in AcpiRsCreatePciRoutingTable()
436 Index, AcpiUtGetObjectTypeName (ObjDesc))); in AcpiRsCreatePciRoutingTable()
448 Index, AcpiUtGetObjectTypeName (ObjDesc))); in AcpiRsCreatePciRoutingTable()
469 Index, ObjDesc->Reference.Class)); in AcpiRsCreatePciRoutingTable()
519 Index, AcpiUtGetObjectTypeName (ObjDesc))); in AcpiRsCreatePciRoutingTable()
535 Index, AcpiUtGetObjectTypeName (ObjDesc))); in AcpiRsCreatePciRoutingTable()
/dragonfly/sys/contrib/dev/acpica/source/components/hardware/
HDhwregs.c377 UINT8 Index; in AcpiHwRead() local
405 Index = 0; in AcpiHwRead()
418 Address + Index * ACPI_DIV_8 (AccessWidth), in AcpiHwRead()
424 Address + Index * ACPI_DIV_8 (AccessWidth), in AcpiHwRead()
434 ACPI_SET_BITS (Value, Index * AccessWidth, in AcpiHwRead()
438 Index++; in AcpiHwRead()
474 UINT8 Index; in AcpiHwWrite() local
499 Index = 0; in AcpiHwWrite()
506 Value64 = ACPI_GET_BITS (&Value, Index * AccessWidth, in AcpiHwWrite()
518 Address + Index * ACPI_DIV_8 (AccessWidth), in AcpiHwWrite()
[all …]
/dragonfly/sys/contrib/dev/acpica/source/components/namespace/
HDnsrepair2.c242 UINT32 Index);
248 UINT32 Index,
796 UINT32 Index; in AcpiNsRepair_PRT() local
806 for (Index = 0; Index < ElementCount; Index++, TopObjectList++) in AcpiNsRepair_PRT()
834 Index)); in AcpiNsRepair_PRT()
1107 UINT32 Index, in AcpiNsSortList() argument
1123 ObjDesc1 = Elements[j-1]->Package.Elements[Index]; in AcpiNsSortList()
1124 ObjDesc2 = Elements[j]->Package.Elements[Index]; in AcpiNsSortList()
1157 UINT32 Index) in AcpiNsRemoveElement() argument
1179 if (i == Index) in AcpiNsRemoveElement()
/dragonfly/sys/contrib/dev/acpica/source/components/utilities/
HDutownerid.c303 UINT32 Index; in AcpiUtReleaseOwnerId() local
336 Index = ACPI_DIV_32 (OwnerId); in AcpiUtReleaseOwnerId()
341 if (AcpiGbl_OwnerIdMask[Index] & Bit) in AcpiUtReleaseOwnerId()
343 AcpiGbl_OwnerIdMask[Index] ^= Bit; in AcpiUtReleaseOwnerId()
HDuthex.c186 UINT64 Index; in AcpiUtHexToAsciiChar() local
188 AcpiUtShortShiftRight (Integer, Position, &Index); in AcpiUtHexToAsciiChar()
189 return (AcpiGbl_HexToAscii[Index & 0xF]); in AcpiUtHexToAsciiChar()
HDutmisc.c398 ThisIndex = State->Pkg.Index; in AcpiUtWalkPackageTree()
424 State->Pkg.Index++; in AcpiUtWalkPackageTree()
425 while (State->Pkg.Index >= in AcpiUtWalkPackageTree()
454 State->Pkg.Index++; in AcpiUtWalkPackageTree()
/dragonfly/sys/contrib/dev/acpica/tests/misc/
HDgrammar.asl866 Store(B1DC,Index(RBIF,1))
867 Store(B1LF,Index(RBIF,2))
868 Store("CA54200-5003/5",Index(RBIF,9))
869 Store("1",Index(RBIF,10))
898 Store(Local0,Index(STAT,0))
899 Store(Local1,Index(STAT,1))
900 Store(Local2,Index(STAT,2))
901 Store(Local3,Index(STAT,3))
1339 Store (DerefOf (Index (BUF2, 0)), Local0)
1946 Store (DeRefOf (Index (BBUF, 3)), Local6)
[all …]
/dragonfly/stand/contrib/edk2/MdePkg/Include/Library/
HDBaseLib.h5459 IN UINT32 Index,
5501 IN UINT32 Index,
5552 IN UINT32 Index
5575 IN UINT32 Index,
5601 IN UINT32 Index,
5627 IN UINT32 Index,
5656 IN UINT32 Index,
5686 IN UINT32 Index,
5719 IN UINT32 Index,
5755 IN UINT32 Index,
[all …]
/dragonfly/contrib/gcc-4.7/gcc/doc/
HDgccint.texi136 * Option Index:: Index to command line options.
137 * Concept Index:: Index of concepts and symbol names.
180 @node Option Index
181 @unnumbered Option Index
191 @node Concept Index
192 @unnumbered Concept Index

12345