HomeSort by: relevance | last modified time | path
    Searched refs:DEFINED (Results 1 - 18 of 18) sorted by relevancy

  /src/usr.bin/make/unit-tests/
directive-ifdef.mk 4 # 'defined(word)'.
6 DEFINED= defined
14 # There is a variable named 'DEFINED', so the condition evaluates to true.
15 .ifdef DEFINED
20 # Since a bare word is an abbreviation for 'defined(word)', these can be
22 .ifdef UNDEF && DEFINED
25 .ifdef UNDEF || DEFINED
30 # It looks redundant to have a call to defined() in an .ifdef, but it's
32 .ifdef defined(DEFINED
    [all...]
directive-ifndef.mk 6 # common to use .if !defined(GUARD) instead.
12 GUARD= # defined
18 GUARD= # defined
22 .if !defined(GUARD)
23 GUARD= # defined
31 DEFINED=
36 .ifndef UNDEFINED && DEFINED
39 .ifndef DEFINED && DEFINED
45 .ifndef !UNDEFINED && !DEFINED
    [all...]
var-eval-short.mk 27 .elif defined(VAR)
57 # Before var.c 1.867 from 2021-03-14, the modifier ':_' defined the variable
61 .elif defined(VAR)
76 DEFINED= # defined
77 .if 0 && ${DEFINED:D${FAIL}}
166 DEFINED= defined
167 .if 0 && ${DEFINED:L:?${FAIL}then:${FAIL}else}
var-eval-short.exp 11 Result of ${0:?${FAIL}then:${FAIL}else} is "" (parse, defined)
12 Parsing var-eval-short.mk:166: DEFINED= defined
13 Global: DEFINED = defined
14 Parsing var-eval-short.mk:167: .if 0 && ${DEFINED:L:?${FAIL}then:${FAIL}else}
15 CondParser_Eval: 0 && ${DEFINED:L:?${FAIL}then:${FAIL}else}
16 Var_Parse: ${DEFINED:L:?${FAIL}then:${FAIL}else} (parse)
17 Parsing modifier ${DEFINED:L}
18 Result of ${DEFINED:L} is "defined" (parse, regular
    [all...]
  /src/usr.sbin/gspa/gspa/
gsp_sym.c 88 perr("Multiply defined label %s", id);
105 define_sym(id, pc, lineno, DEFINED);
118 flags |= DEFINED;
136 bp->flags = NUMERIC_LABEL | DEFINED;
169 fp->flags &= ~DEFINED;
182 Backward references become undefined, forward references are defined
194 if( (p->flags & DEFINED) != 0 ) {
196 p->flags &= ~DEFINED;
199 p->flags |= DEFINED;
gsp_ass.h 58 #define DEFINED 1
62 #define NOT_YET 65535U /* line no. for `not defined yet' */
174 #if defined(sparc) && !defined(__NetBSD__)
gsp_eval.c 127 if( (s->flags & DEFINED) != 0 )
  /src/bin/ksh/
table.c 65 if ((tblp->flag&DEFINED)) {
95 && (p->flag&DEFINED))
168 if (p != NULL && (p->flag&DEFINED))
192 if ((*dp = *sp++) != NULL && (((*dp)->flag&DEFINED) ||
230 && (p->flag&DEFINED))
table.h 38 #define DEFINED BIT(1) /* is defined in block */
64 #define FKSH BIT(11) /* function defined with function x (vs x()) */
var.c 129 tp->flag = DEFINED|ISSET;
192 vp->flag = DEFINED;
247 vp->flag |= DEFINED;
270 vp->flag = DEFINED|RDONLY;
276 if (copy && !(vp->flag & DEFINED)) {
293 vp->flag |= DEFINED;
788 vp->flag &= SPECIAL | (array_ref ? ARRAY|DEFINED : 0);
1160 vp->flag |= ARRAY|DEFINED;
1182 new->flag = vp->flag & ~(ALLOC|DEFINED|ISSET|SPECIAL);
exec.c 624 "%s: function not defined by %s",
803 tp->flag = DEFINED;
834 tp->flag &= ~DEFINED; /* ensure it won't be found */
882 tp->flag = DEFINED | flag;
961 tp->flag = DEFINED; /* make ~ISSET */
985 tp->flag = DEFINED; /* make ~ISSET */
c_ksh.c 982 ap->flag |= DEFINED;
1029 ap->flag &= ~(DEFINED|ISSET|EXPORT);
1040 ap->flag &= ~(DEFINED|ISSET|EXPORT);
expr.c 159 v.flag = DEFINED|INTEGER;
eval.c 269 v.flag = DEFINED|ISSET|INTEGER;
1301 ap->flag |= DEFINED|ISSET|ALLOC;
syn.c 699 p->flag |= DEFINED|ISSET;
  /src/usr.sbin/sysinst/
msg.pm.en 98 message vnd_err_menufmt {PATH NOT DEFINED!}
115 message cgd_err_menufmt {DISK NOT DEFINED!}
  /src/usr.bin/config/
mkheaders.c 77 /* Value for defined options with value UNDEFINED */
78 #define DEFINED (0xdef1U << 16 | 'n' << 8 | 0xed)
158 return (unsigned int)(h != UNDEFINED ? h : DEFINED);
227 * the options defined for this file.
258 fprintf(fp, "/* %s `%s' not defined */\n",
  /src/sys/external/isc/libsodium/dist/contrib/
Findsodium.cmake 18 # Once done the following variables will be defined:
35 if (NOT DEFINED sodium_USE_STATIC_LIBS)
105 #if defined _M_IX86
107 #elif defined _M_X64

Completed in 19 milliseconds