Searched defs:List (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/include/
H A Dlist.h43 typedef struct list List; typedef in typeref:struct:list
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dmalloc.c118 static TREE *List[MINSIZE/WORDSIZE-1]; /* lists of small blocks */ variable
134 if (List[i] == NULL) {
142 if ((List[i] = _malloc_unlocked((size + WORDSIZE) * NPS)) == 0)
146 for (n = 0, np = List[i]; n < NPS; ++n) {
156 tp = List[i];
157 List[i] = AFTER(tp);
506 AFTER(tp) = List[ts];
507 List[ts] = tp;
/illumos-gate/usr/src/cmd/sgs/link_audit/common/
H A Dperfcnt.c50 } List; typedef in typeref:struct:list
65 static List *list_head = NULL;
74 List *new_list;
75 List *cur;
76 List *prev;
78 if ((new_list = malloc(sizeof (List))) == NULL) {
254 List *cur;
/illumos-gate/usr/src/uts/intel/io/acpica/disassembler/
H A Ddmbuffer.c79 const char **List);
337 * PARAMETERS: Op - Byte List op containing a UUID
609 * List - Array to reference
611 * RETURN: String from List or empty string
614 * position in List.
621 const char **List)
629 NameString = List[0];
635 NameString = List[i];
645 return (List[Index]);
763 * PARAMETERS: Op - Byte List o
619 AcpiDmFindNameByIndex( UINT64 Index, const char **List) argument
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/resources/
H A Drsutils.c59 * List - Where the converted list is returned
70 UINT8 *List)
85 List[BitCount] = i;
100 * PARAMETERS: List - List of values to encode
111 UINT8 *List,
125 Mask |= (0x1 << List[i]);
68 AcpiRsDecodeBitmask( UINT16 Mask, UINT8 *List) argument
110 AcpiRsEncodeBitmask( UINT8 *List, UINT8 Count) argument
/illumos-gate/usr/src/lib/watchmalloc/common/
H A Dmalloc.c106 static TREE *List[MINSIZE/WORDSIZE-1]; variable
126 if (List[i] == NULL) {
136 for (n = 0, List[i] = np; n < NPS; ++n) {
153 tp = List[i];
155 if ((List[i] = AFTER(tp)) == NULL)
506 if (List[ts] == NULL) {
507 List[ts] = tp;
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceStoreInMemory.java239 * The List class implements a linked list for storing records
245 private class List extends Object { class in class:ServiceStoreInMemory
248 List next = null;
249 List prev = null;
253 List(ServiceRecordInMemory record) { method in class:ServiceStoreInMemory.List
261 synchronized List insertAfter(ServiceRecordInMemory record) {
262 List newRec = new List(record);
306 List head = new List(nul
[all...]
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Daclocal.h247 /* List to manage incoming ACPI tables */
265 ACPI_HANDLE *List; member in struct:acpi_find_context
543 ACPI_GPE_NOTIFY_INFO *NotifyList; /* List of _PRW devices for implicit notifies */
601 ACPI_GPE_BLOCK_INFO *GpeBlockListHead; /* List of GPE blocks for this xrupt */
763 union acpi_operand_object *AcquiredMutexList; /* List of all currently acquired mutexes */

Completed in 87 milliseconds