HomeSort by: relevance | last modified time | path
    Searched defs:LIST (Results 1 - 9 of 9) sorted by relevancy

  /src/usr.bin/make/unit-tests/
varparse-undef-partial.mk 8 LIST= ${DEF} ${UNDEF} ${VAR.${PARAM}} end
20 EVAL:= ${LIST}
36 # In contrast to the previous line, evaluating the original LIST again now
40 EVAL:= ${LIST}
dollar.mk 7 LIST= plain 'single' "double" 'mix'"ed" back\ slashed
varmod-select-words.mk 14 LIST= one two three four five six
54 @echo 'LIST:[]="${LIST:[]}" is an error'
57 @echo 'LIST:[0]="${LIST:[0]}"'
58 @echo 'LIST:[0x0]="${LIST:[0x0]}"'
59 @echo 'LIST:[000]="${LIST:[000]}"'
60 @echo 'LIST:[*]="${LIST:[*]}"
    [all...]
  /src/lib/libc/include/isc/
list.h 1 /* $NetBSD: list.h,v 1.6 2022/04/19 20:32:15 rillig Exp $ */
24 #define LIST(type) struct { type *head, *tail; }
25 #define INIT_LIST(list) \
26 do { (list).head = NULL; (list).tail = NULL; } while (0)
39 #define HEAD(list) ((list).head)
40 #define TAIL(list) ((list).tail)
41 #define EMPTY(list) ((list).head == NULL
    [all...]
  /src/usr.bin/tee/
tee.c 11 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
61 } LIST;
62 LIST *head;
69 LIST *p;
141 LIST *p;
143 if ((p = malloc(sizeof(LIST))) == NULL)
  /src/games/atc/
struct.h 14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
104 } LIST;
  /src/bin/pax/
pax.h 15 * notice, this list of conditions and the following disclaimer.
17 * notice, this list of conditions and the following disclaimer in the
61 #define LIST 0 /* List the file in an archive */
228 * Format Specific Options List
  /src/bin/csh/
file.c 11 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
81 LIST, RECOGNIZE
477 * Perform a RECOGNIZE or LIST command on string "word".
519 if (command == LIST) {
563 else { /* LIST */
662 command = (last_Char == ESC) ? RECOGNIZE : LIST;
663 if (command == LIST)
696 if (command == LIST) /* Always retype after a LIST */
    [all...]
  /src/games/rogue/
rogue.h 14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
417 #define LIST '*'

Completed in 14 milliseconds