Home | History | Annotate | Download | only in EbcDxe

Lines Matching refs:Index

222                                 maximum supported processor index is returned.

375 UINTN Index;
412 for (Index = 0; Index < NumHandles; Index++) {
414 HandleBuffer[Index],
420 HandleBuffer[Index],
516 for (Index = 0; Index < NumHandles; Index++) {
518 HandleBuffer[Index],
524 HandleBuffer[Index],
589 maximum supported processor index is returned.
819 INTN Index;
825 for (Index = 0; Index <= MAX_EBC_EXCEPTION; Index++) {
830 Index
1224 Returns the stack index and buffer assosicated with the Handle parameter.
1226 @param Handle The EFI handle as the index to the EBC stack.
1228 @param BufferIndex A pointer to hold the returned stack index.
1232 @retval EFI_SUCCESS The stack index and buffer were found and
1243 UINTN Index;
1246 for (Index = 0; Index < mStackNum; Index ++) {
1247 if (mStackBufferIndex[Index] == NULL) {
1248 mStackBufferIndex[Index] = Handle;
1253 if (Index == mStackNum) {
1256 *BufferIndex = Index;
1257 *StackBuffer = mStackBuffer[Index];
1262 Returns from the EBC stack by stack Index.
1264 @param Index Specifies which EBC stack to return from.
1271 IN UINTN Index
1274 mStackBufferIndex[Index] = NULL;
1291 UINTN Index;
1292 for (Index = 0; Index < mStackNum; Index ++) {
1293 if (mStackBufferIndex[Index] == Handle) {
1297 if (Index == mStackNum) {
1300 mStackBufferIndex[Index] = NULL;
1341 UINTN Index;
1342 for (Index = 0; Index < mStackNum; Index ++) {
1343 FreePool(mStackBuffer[Index]);