| /src/usr.bin/make/ |
| lst.h | 14 * notice, this list of conditions and the following disclaimer. 16 * notice, this list of conditions and the following disclaimer in the 49 * notice, this list of conditions and the following disclaimer. 51 * notice, this list of conditions and the following disclaimer in the 85 /* A doubly-linked list of pointers. */ 86 typedef struct List List; 87 /* A single node in the doubly-linked list. */ 91 ListNode *prev; /* previous node in list, or NULL */ 92 ListNode *next; /* next node in list, or NULL * [all...] |
| lst.c | 14 * notice, this list of conditions and the following disclaimer. 16 * notice, this list of conditions and the following disclaimer in the 52 Lst_Done(List *list) 56 for (ln = list->first; ln != NULL; ln = next) { 63 Lst_DoneFree(List *list) 67 for (ln = list->first; ln != NULL; ln = next) { 76 Lst_InsertBefore(List *list, ListNode *ln, void *datum [all...] |
| make.h | 14 * notice, this list of conditions and the following disclaimer. 16 * notice, this list of conditions and the following disclaimer in the 48 * notice, this list of conditions and the following disclaimer. 50 * notice, this list of conditions and the following disclaimer in the 224 /* The node is on the toBeMade list. */ 407 typedef struct List StringList; 410 typedef struct List GNodeList; 414 List /* of CachedDir */ dirs; 458 * for file.c has the node for file.o in this list. 490 /* The number of unmade instances on the cohorts list */ [all...] |
| parse.c | 14 * notice, this list of conditions and the following disclaimer. 16 * notice, this list of conditions and the following disclaimer in the 46 * notice, this list of conditions and the following disclaimer. 48 * notice, this list of conditions and the following disclaimer in the 94 * Parse_MainName Populate the list of targets to create. 182 typedef List SearchPathList; 221 * with duplicate values. Kept in a separate list since the commands from 310 static List * 313 List *list = bmake_malloc(sizeof *list) local [all...] |
| arch.c | 14 * notice, this list of conditions and the following disclaimer. 16 * notice, this list of conditions and the following disclaimer in the 46 * notice, this list of conditions and the following disclaimer. 48 * notice, this list of conditions and the following disclaimer in the 76 * on a list which is searched each time an archive member is referenced. 131 typedef struct List ArchList; 466 case 0: /* List of files entry */
|
| suff.c | 14 * notice, this list of conditions and the following disclaimer. 16 * notice, this list of conditions and the following disclaimer in the 46 * notice, this list of conditions and the following disclaimer. 48 * notice, this list of conditions and the following disclaimer in the 120 typedef List SuffixList; 123 typedef List CandidateList; 179 /* Reference count of list membership and several other places */ 228 CandidateList list; member in struct:CandidateSearcher 358 SuffixList_Unref(SuffixList *list, Suffix *suff) 360 SuffixListNode *ln = Lst_FindDatum(list, suff) [all...] |
| dir.c | 14 * notice, this list of conditions and the following disclaimer. 16 * notice, this list of conditions and the following disclaimer in the 47 * notice, this list of conditions and the following disclaimer. 49 * notice, this list of conditions and the following disclaimer in the 117 * Resets a search path to the empty list. 138 * A search path is a list of CachedDir structures. A CachedDir has in it the 227 typedef List CachedDirList; 230 /* A list of cached directories, with fast lookup by directory name. */ 232 CachedDirList list; member in struct:OpenDirs 344 Lst_Init(&odirs->list); [all...] |
| /src/sys/external/bsd/acpica/dist/debugger/ |
| dbstats.c | 15 * notice, this list of conditions, and the following disclaimer, 74 ACPI_MEMORY_LIST *List); 107 * PARAMETERS: List - Memory list/cache to be displayed 111 * DESCRIPTION: Display information about the input memory list or cache. 117 ACPI_MEMORY_LIST *List) 123 AcpiOsPrintf ("\n%s\n", List->ListName); 127 if (List->MaxDepth > 0) 132 List->CurrentDepth, 133 List->MaxDepth [all...] |
| /src/sys/external/bsd/acpica/dist/compiler/ |
| dttable2.c | 15 * notice, this list of conditions, and the following disclaimer, 56 * PARAMETERS: List - Current field list pointer 66 void **List) 71 DT_FIELD **PFieldList = (DT_FIELD **) List; 132 * PARAMETERS: List - Current field list pointer 142 void **List) 147 DT_FIELD **PFieldList = (DT_FIELD **) List; 368 * PARAMETERS: List - Current field list pointe [all...] |
| dttable1.c | 15 * notice, this list of conditions, and the following disclaimer, 69 * PARAMETERS: List - Current field list pointer 80 * 4) A list (array) of Interrupt Structures, the count as specified 90 void **List) 100 DT_FIELD **PFieldList = (DT_FIELD **) List; 378 * PARAMETERS: List - Current field list pointer 388 void **List) 397 DT_FIELD **PFieldList = (DT_FIELD**)List; [all...] |
| dttable.c | 15 * notice, this list of conditions, and the following disclaimer, 56 * PARAMETERS: PFieldList - Current field list pointer 114 * PARAMETERS: List - Current field list pointer 126 void **List) 131 DT_FIELD **PFieldList = (DT_FIELD **) List; 181 * appears at field list offset 11 within AcpiDmTableInfoFadt3. 251 * PARAMETERS: PFieldList - Current field list pointer
|
| aslpld.c | 15 * notice, this list of conditions, and the following disclaimer, 60 const char **List, 113 /* Traverse the list of PLD Ops (one per PLD field) */ 690 * PARAMETERS: List - Array of char strings to be searched 703 const char **List, 713 for (i = 0, NameString = List[0]; 715 i++, NameString = List[i])
|
| dtcompile.c | 15 * notice, this list of conditions, and the following disclaimer, 233 * PARAMETERS: FieldList - Current field list pointer 280 * PARAMETERS: FieldList - Current field list pointer 404 /* Validate the signature via the ACPI table list */ 471 * PARAMETERS: Field - Current field list pointer 507 * The field list is empty, this means that we are out of fields to 709 * PARAMETERS: List - Current field list pointer 722 void **List, 729 DT_FIELD **PFieldList = (DT_FIELD **) List; [all...] |
| dtcompiler.h | 15 * notice, this list of conditions, and the following disclaimer, 142 /* List of all field names and values from the input source */ 146 /* List of all compiled tables and subtables */ 154 /* List for defined labels */ 189 void **List, 542 void **List);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
| sanitizer_list_test.cc | 22 typedef IntrusiveList<ListItem> List; 24 static List static_list; 26 static void SetList(List *l, ListItem *x = 0, 34 static void CheckList(List *l, ListItem *i1, ListItem *i2 = 0, ListItem *i3 = 0, 67 List l; 144 List l1, l2; 174 List l; 177 List l2;
|
| /src/sys/external/bsd/acpica/dist/resources/ |
| rsutils.c | 15 * notice, this list of conditions, and the following disclaimer, 59 * List - Where the converted list is returned 61 * RETURN: Count of bits set (length of list) 63 * DESCRIPTION: Convert a bit mask into a list of values 70 UINT8 *List) 85 List[BitCount] = i; 100 * PARAMETERS: List - List of values to encode 101 * Count - Length of list [all...] |
| /src/sys/external/bsd/acpica/dist/disassembler/ |
| dmbuffer.c | 15 * notice, this list of conditions, and the following disclaimer, 79 const char **List); 90 * ByteData - Pointer to the byte list 91 * ByteCount - Length of the byte list 188 * Op - Byte list op 192 * DESCRIPTION: Dump a buffer byte list, handling the various types of buffers. 210 * The byte list belongs to a buffer, and can be produced by either 211 * a ResourceTemplate, Unicode, quoted string, or a plain byte list. 300 /* Next, the initializer byte list to examine */ 308 /* Extract the byte list info * [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_quarantine.h | 166 // require some tuning). It saves us merge attempt when the batch list 265 // Remove the next batch from the list and account for its size. 268 // Add it to deallocation list. 282 for (List::ConstIterator it = list_.begin(); it != list_.end(); ++it) { 303 typedef IntrusiveList<QuarantineBatch> List; 305 List list_;
|
| /src/sys/external/bsd/acpica/dist/include/ |
| acresrc.h | 15 * notice, this list of conditions, and the following disclaimer, 325 UINT8 *List); 329 UINT8 *List,
|
| acmacros.h | 15 * notice, this list of conditions, and the following disclaimer, 450 #define GET_CURRENT_ARG_TYPE(List) (List & ((UINT32) 0x1F)) 451 #define INCREMENT_ARG_LIST(List) (List >>= ((UINT32) ARG_TYPE_WIDTH))
|
| aclocal.h | 15 * notice, this list of conditions, and the following disclaimer, 78 * The acquire/release ordering protocol is implied via this list. Mutexes 230 /* Internal ACPI table management - master table list */ 248 /* List to manage incoming ACPI tables */ 266 ACPI_HANDLE *List; 544 ACPI_GPE_NOTIFY_INFO *NotifyList; /* List of _PRW devices for implicit notifies */ 604 ACPI_GPE_BLOCK_INFO *GpeBlockListHead; /* List of GPE blocks for this xrupt */ 774 struct acpi_walk_state *WalkStateList; /* Head of list of WalkStates for this thread */ 775 union acpi_operand_object *AcquiredMutexList; /* List of all currently acquired mutexes */ 934 UINT8 ArgListLength; /* Number of elements in the arg list */\ [all...] |
| /src/share/mk/ |
| bsd.files.mk | 128 # UUDECODE_FILES - List of files which are stored in the source tree
|
| /src/sys/arch/ia64/stand/common/ |
| help.common | 13 Some commands may not be available. Use the '?' command to list 91 List all of the devices from which it may be possible to load modules. 99 List loaded modules. If [-v] is specified, print more details. 143 by setting the bootfile variable to a semicolon-separated list of 216 Sets the current console. If <value> is omitted, a list of valid 227 # Tset Sinit_path DSet the list of init candidates 231 Sets the list of binaries which the kernel will try to run as initial 240 Sets the list of directories which will be searched in for modules
|
| /src/sys/arch/acorn32/doc/ |
| majors+minors | 11 * notice, this list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer in the 35 * list of all allocated major numbers 40 List of allocated and reserved major and minor numbers
|
| /src/bin/sh/ |
| var.c | 14 * notice, this list of conditions and the following disclaimer. 16 * notice, this list of conditions and the following disclaimer in the 600 * Process a linked list of variable assignments. 604 listsetvar(struct strlist *list, int flags) 609 for (lp = list ; lp ; lp = lp->next) { 616 listmklocal(struct strlist *list, int flags) 620 for (lp = list ; lp ; lp = lp->next) 686 * Generate a list of exported variables. This routine is used to construct 767 * Command to list all variables which are set. Currently this command 878 static struct var **list; /* static in case we are interrupted * local [all...] |