Searched refs:STR (Results 1 - 25 of 98) sorted by relevance

1234

/freebsd-11-stable/contrib/gcc/
H A Dgcc.h45 #define DEFAULT_WORD_SWITCH_TAKES_ARG(STR) \
46 (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \
47 || !strcmp (STR, "Tbss") || !strcmp (STR, "include") \
48 || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
49 || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
50 || !strcmp (STR, "iwithprefi
[all...]
H A Dscan.h27 #define INIT_SSTRING(STR) ((STR)->base = 0, (STR)->ptr = 0, (STR)->limit = 0)
28 #define FREE_SSTRING(STR) do { if ((STR)->base) free (STR)->base; } while(0)
29 #define SSTRING_PUT(STR, C) do {\
30 if ((STR)->limit <= (STR)
[all...]
/freebsd-11-stable/contrib/gdb/include/
H A Dprogress.h26 #define START_PROGRESS(STR,N)
34 #define END_PROGRESS(STR)
H A Ddyn-string.h30 /* The length STR, in bytes, not including the terminating NUL. */
31 #define dyn_string_length(STR) \
32 ((STR)->length)
34 /* The NTBS in which the contents of STR are stored. */
35 #define dyn_string_buf(STR) \
36 ((STR)->s)
/freebsd-11-stable/contrib/binutils/include/
H A Dprogress.h26 #define START_PROGRESS(STR,N)
34 #define END_PROGRESS(STR)
H A Ddyn-string.h30 /* The length STR, in bytes, not including the terminating NUL. */
31 #define dyn_string_length(STR) \
32 ((STR)->length)
34 /* The NTBS in which the contents of STR are stored. */
35 #define dyn_string_buf(STR) \
36 ((STR)->s)
/freebsd-11-stable/contrib/gcc/config/
H A Dfreebsd-spec.h47 #define FBSD_WORD_SWITCH_TAKES_ARG(STR) \
48 (DEFAULT_WORD_SWITCH_TAKES_ARG (STR) \
49 || !strcmp ((STR), "rpath") || !strcmp ((STR), "rpath-link") \
50 || !strcmp ((STR), "soname") || !strcmp ((STR), "defsym") \
51 || !strcmp ((STR), "assert") || !strcmp ((STR), "dynamic-linker"))
H A Dinterix.h62 #define WORD_SWITCH_TAKES_ARG(STR) \
63 ((DEFAULT_WORD_SWITCH_TAKES_ARG (STR) \
64 || !strcmp(STR, "rpath")) \
65 && strcmp (STR, "Tdata") && strcmp (STR, "Ttext") \
66 && strcmp (STR, "Tbss"))
H A Dsvr4.h54 #define WORD_SWITCH_TAKES_ARG(STR) \
55 (DEFAULT_WORD_SWITCH_TAKES_ARG (STR) \
56 && strcmp (STR, "Tdata") && strcmp (STR, "Ttext") \
57 && strcmp (STR, "Tbss"))
H A Ddarwin.h158 #define WORD_SWITCH_TAKES_ARG(STR) \
159 (DEFAULT_WORD_SWITCH_TAKES_ARG (STR) ? 1 : \
160 !strcmp (STR, "Zallowable_client") ? 1 : \
161 !strcmp (STR, "arch") ? 1 : \
162 !strcmp (STR, "arch_only") ? 1 : \
163 !strcmp (STR, "Zbundle_loader") ? 1 : \
164 !strcmp (STR, "client_name") ? 1 : \
165 !strcmp (STR, "compatibility_version") ? 1 : \
166 !strcmp (STR, "current_version") ? 1 : \
167 !strcmp (STR, "Zdylib_fil
[all...]
H A Dptx4.h62 #define WORD_SWITCH_TAKES_ARG(STR) \
63 (DEFAULT_WORD_SWITCH_TAKES_ARG (STR) \
64 && strcmp (STR, "Tdata") && strcmp (STR, "Ttext") \
65 && strcmp (STR, "Tbss"))
H A Dfreebsd.h43 #define WORD_SWITCH_TAKES_ARG(STR) (FBSD_WORD_SWITCH_TAKES_ARG(STR))
/freebsd-11-stable/contrib/gcclibs/include/
H A Ddyn-string.h30 /* The length STR, in bytes, not including the terminating NUL. */
31 #define dyn_string_length(STR) \
32 ((STR)->length)
34 /* The NTBS in which the contents of STR are stored. */
35 #define dyn_string_buf(STR) \
36 ((STR)->s)
/freebsd-11-stable/usr.bin/tr/
H A Dextern.h48 } STR; typedef in typeref:struct:__anon13836
50 wint_t next(STR *);
H A Dstr.c52 static int backslash(STR *, int *);
53 static int bracket(STR *);
54 static void genclass(STR *);
55 static void genequiv(STR *);
56 static int genrange(STR *, int);
57 static void genseq(STR *);
60 next(STR *s)
137 bracket(STR *s)
174 genclass(STR *s)
190 genequiv(STR *
[all...]
/freebsd-11-stable/usr.sbin/ctld/
H A Dparse.y66 %token PATH PIDFILE PORT PORTAL_GROUP REDIRECT SEMICOLON SERIAL SIZE STR
74 %token <str> STR
109 debug: DEBUG STR
123 timeout: TIMEOUT STR
137 maxproc: MAXPROC STR
151 pidfile: PIDFILE STR
162 isns_server: ISNS_SERVER STR
173 isns_period: ISNS_PERIOD STR
187 isns_timeout: ISNS_TIMEOUT STR
208 auth_group_name: STR
[all...]
/freebsd-11-stable/contrib/pjdfstest/
H A Dpjdfstest.c628 #define STR(n) (args[(n)].str) macro
631 flags = str2flags(open_flags, STR(1));
637 rval = open(STR(0), (int)flags, (mode_t)NUM(2));
643 rval = open(STR(0), (int)flags);
649 flags = str2flags(open_flags, STR(2));
655 rval = openat(NUM(0), STR(1), (int)flags,
662 rval = openat(NUM(0), STR(1), (int)flags);
668 rval = open(STR(0), O_CREAT | O_EXCL, (mode_t)NUM(1));
673 rval = unlink(STR(0));
676 rval = unlinkat(NUM(0), STR(
982 #undef STR macro
[all...]
/freebsd-11-stable/usr.bin/iscsictl/
H A Dparse.y71 %token <str> STR
80 target: STR OPENING_BRACKET target_entries CLOSING_BRACKET
132 target_name: TARGET_NAME EQUALS STR
140 target_address: TARGET_ADDRESS EQUALS STR
148 initiator_name: INITIATOR_NAME EQUALS STR
156 initiator_address: INITIATOR_ADDRESS EQUALS STR
164 initiator_alias: INITIATOR_ALIAS EQUALS STR
172 user: USER EQUALS STR
180 secret: SECRET EQUALS STR
188 mutual_user: MUTUAL_USER EQUALS STR
[all...]
/freebsd-11-stable/sys/contrib/ngatm/netnatm/sig/
H A Dsig_uni.c48 #define STR(S) [S] = #S macro
50 STR(CU_STAT0),
51 STR(CU_STAT1),
52 STR(CU_STAT2),
53 STR(CU_STAT3),
56 STR(UNI_CALLSTATE_REST0),
57 STR(UNI_CALLSTATE_REST1),
58 STR(UNI_CALLSTATE_REST2),
62 STR(UNIAPI_ERROR),
63 STR(UNIAPI_CALL_CREATE
[all...]
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dptx4-i.h57 #define ASM_OUTPUT_ASCII(FILE, STR, LENGTH) \
61 (const unsigned char *) (STR); \
H A Dsco5.h83 #define WORD_SWITCH_TAKES_ARG(STR) \
84 (DEFAULT_WORD_SWITCH_TAKES_ARG (STR) \
85 && strcmp (STR, "Tdata") && strcmp (STR, "Ttext") \
86 && strcmp (STR, "Tbss"))
/freebsd-11-stable/contrib/ntp/sntp/libopts/autoopts/
H A Dproject.h61 #ifndef STR
63 # define STR(s) __STR(s) macro
/freebsd-11-stable/lib/libedit/
H A Dparse.c69 { STR("bind"), map_bind },
70 { STR("echotc"), terminal_echotc },
71 { STR("edit"), el_editmode },
72 { STR("history"), hist_command },
73 { STR("telltc"), terminal_telltc },
74 { STR("settc"), terminal_settc },
75 { STR("setty"), tty_stty },
184 const Char hex[] = STR("0123456789ABCDEF");
/freebsd-11-stable/contrib/gcc/config/mips/
H A Diris.h89 #define WORD_SWITCH_TAKES_ARG(STR) \
90 (DEFAULT_WORD_SWITCH_TAKES_ARG (STR) \
91 || strcmp (STR, "rpath") == 0)
/freebsd-11-stable/usr.sbin/jail/
H A Djailparse.y53 %token <cs> STR STR1 VAR VAR1
84 jail : STR '{' param_l '}'
142 name : STR
175 string : STR

Completed in 223 milliseconds

1234