/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. */ 405 typedef struct List StringList; 408 typedef struct List GNodeList; 412 List /* of CachedDir */ dirs; 456 * for file.c has the node for file.o in this list. 488 /* 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 in function:Lst_New [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 | 45 * the above Copyright Notice, the above License, this list of Conditions, 123 * notice, this list of conditions, and the following disclaimer, 182 ACPI_MEMORY_LIST *List); 215 * PARAMETERS: List - Memory list/cache to be displayed 219 * DESCRIPTION: Display information about the input memory list or cache. 225 ACPI_MEMORY_LIST *List) 231 AcpiOsPrintf ("\n%s\n", List->ListName); 235 if (List->MaxDepth > 0) 240 List->CurrentDepth [all...] |
/src/sys/external/bsd/acpica/dist/compiler/ |
dttable2.c | 45 * the above Copyright Notice, the above License, this list of Conditions, 123 * notice, this list of conditions, and the following disclaimer, 164 * PARAMETERS: List - Current field list pointer 174 void **List) 179 DT_FIELD **PFieldList = (DT_FIELD **) List; 240 * PARAMETERS: List - Current field list pointer 250 void **List) 255 DT_FIELD **PFieldList = (DT_FIELD **) List; [all...] |
dttable1.c | 45 * the above Copyright Notice, the above License, this list of Conditions, 123 * notice, this list of conditions, and the following disclaimer, 177 * PARAMETERS: List - Current field list pointer 188 * 4) A list (array) of Interrupt Structures, the count as specified 198 void **List) 208 DT_FIELD **PFieldList = (DT_FIELD **) List; 486 * PARAMETERS: List - Current field list pointer 496 void **List) [all...] |
dttable.c | 45 * the above Copyright Notice, the above License, this list of Conditions, 123 * notice, this list of conditions, and the following disclaimer, 164 * PARAMETERS: PFieldList - Current field list pointer 222 * PARAMETERS: List - Current field list pointer 234 void **List) 239 DT_FIELD **PFieldList = (DT_FIELD **) List; 289 * appears at field list offset 11 within AcpiDmTableInfoFadt3. 359 * PARAMETERS: PFieldList - Current field list pointer
|
aslpld.c | 45 * the above Copyright Notice, the above License, this list of Conditions, 123 * notice, this list of conditions, and the following disclaimer, 168 const char **List, 221 /* Traverse the list of PLD Ops (one per PLD field) */ 798 * PARAMETERS: List - Array of char strings to be searched 811 const char **List, 821 for (i = 0, NameString = List[0]; 823 i++, NameString = List[i])
|
dtcompile.c | 45 * the above Copyright Notice, the above License, this list of Conditions, 123 * notice, this list of conditions, and the following disclaimer, 341 * PARAMETERS: FieldList - Current field list pointer 388 * PARAMETERS: FieldList - Current field list pointer 512 /* Validate the signature via the ACPI table list */ 579 * PARAMETERS: Field - Current field list pointer 615 * The field list is empty, this means that we are out of fields to 817 * PARAMETERS: List - Current field list pointer 830 void **List, [all...] |
dtcompiler.h | 45 * the above Copyright Notice, the above License, this list of Conditions, 123 * notice, this list of conditions, and the following disclaimer, 250 /* List of all field names and values from the input source */ 254 /* List of all compiled tables and subtables */ 262 /* List for defined labels */ 297 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 | 45 * the above Copyright Notice, the above License, this list of Conditions, 123 * notice, this list of conditions, and the following disclaimer, 167 * List - Where the converted list is returned 169 * RETURN: Count of bits set (length of list) 171 * DESCRIPTION: Convert a bit mask into a list of values 178 UINT8 *List) 193 List[BitCount] = i; 208 * PARAMETERS: List - List of values to encod [all...] |
/src/sys/external/bsd/acpica/dist/disassembler/ |
dmbuffer.c | 45 * the above Copyright Notice, the above License, this list of Conditions, 123 * notice, this list of conditions, and the following disclaimer, 187 const char **List); 198 * ByteData - Pointer to the byte list 199 * ByteCount - Length of the byte list 296 * Op - Byte list op 300 * DESCRIPTION: Dump a buffer byte list, handling the various types of buffers. 318 * The byte list belongs to a buffer, and can be produced by either 319 * a ResourceTemplate, Unicode, quoted string, or a plain byte list. 408 /* Next, the initializer byte list to examine * [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 | 46 * the above Copyright Notice, the above License, this list of Conditions, 124 * notice, this list of conditions, and the following disclaimer, 434 UINT8 *List); 438 UINT8 *List,
|
acmacros.h | 45 * the above Copyright Notice, the above License, this list of Conditions, 123 * notice, this list of conditions, and the following disclaimer, 558 #define GET_CURRENT_ARG_TYPE(List) (List & ((UINT32) 0x1F)) 559 #define INCREMENT_ARG_LIST(List) (List >>= ((UINT32) ARG_TYPE_WIDTH))
|
/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/sys/arch/hpcmips/stand/pbsdboot/ |
pbsdboot.rc | 295 AFX_IDS_SCTASKLIST "Activate Task List"
|
/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 in function:showvars [all...] |