Searched refs:keyword (Results 1 - 25 of 69) sorted by relevance

123

/freebsd-9.3-release/usr.bin/csup/
H A Dkeyword.h41 struct keyword;
43 struct keyword *keyword_new(void);
46 int keyword_alias(struct keyword *, const char *, const char *);
47 int keyword_enable(struct keyword *, const char *);
48 int keyword_disable(struct keyword *, const char *);
49 void keyword_prepare(struct keyword *);
50 int keyword_expand(struct keyword *, struct diffinfo *, char *,
52 void keyword_free(struct keyword *);
H A Ddiff.h32 struct keyword;
48 struct keyword *, struct diffinfo *, int);
50 struct stream *, struct keyword *, struct diffinfo *);
H A Dkeyword.c38 #include "keyword.h"
44 * The keyword API is used to expand the CVS/RCS keywords in files,
78 struct keyword { struct
104 struct keyword *
107 struct keyword *new;
112 new = xmalloc(sizeof(struct keyword));
179 keyword_free(struct keyword *keyword) argument
183 if (keyword == NULL)
185 while (!STAILQ_EMPTY(&keyword
194 keyword_alias(struct keyword *keyword, const char *ident, const char *rcskey) argument
210 keyword_enable(struct keyword *keyword, const char *ident) argument
234 keyword_disable(struct keyword *keyword, const char *ident) argument
259 keyword_prepare(struct keyword *keyword) argument
280 keyword_expand(struct keyword *keyword, struct diffinfo *di, char *line, size_t size, char **buf, size_t *len) argument
[all...]
H A Drcstokenizer.l48 keyword head|access|symbols|locks|comment|expand|strict|date|author|state|branches|next|desc|log|text
56 {keyword} {
/freebsd-9.3-release/tools/tools/genericize/
H A Dgenericize.pl49 my ($keyword, $values) = split(' ', $_, 2);
51 if ($keyword eq 'machine') {
53 } elsif ($keyword eq 'ident') {
55 } elsif ($keyword eq 'options' && $value =~ m/(\w+)=(.+)/) {
56 $config{$keyword}->{$1} = $2;
58 $config{$keyword}->{$value} = \∅
87 my ($keyword, $value) = split(' ', $_);
88 if ($keyword eq 'machine') {
91 } elsif ($keyword eq 'ident') {
93 } elsif ($keyword e
[all...]
/freebsd-9.3-release/usr.sbin/eeprom/
H A Deeprom.c122 char *keyword, *arg; local
124 keyword = strdup(line);
125 if (keyword == NULL)
127 if ((arg = strrchr(keyword, '=')) != NULL)
129 switch (rv = ofwo_action(keyword, arg)) {
131 warnx("nothing available for '%s'.", keyword);
134 warnx("invalid value '%s' for '%s'.", arg, keyword);
137 free(keyword);
/freebsd-9.3-release/contrib/gperf/src/
H A Dmain.cc68 /* Initialize the keyword list. */
72 /* We can cast the keyword list to KeywordExt_List* because its list
133 KeywordExt *keyword = ptr->first(); local
136 KeywordExt *next_keyword = keyword->_duplicate_link;
137 delete[] const_cast<unsigned int *>(keyword->_selchars);
138 if (keyword->_rest != empty_string)
139 delete[] const_cast<char*>(keyword->_rest);
140 if (!(keyword->_allchars >= inputter._input
141 && keyword->_allchars < inputter._input_end))
142 delete[] const_cast<char*>(keyword
[all...]
H A Dsearch.cc63 hash (keyword) = sum (asso_values[keyword[i] + alpha_inc[i]] : i in Pos)
64 + len (keyword)
69 len (keyword) is the keyword's length if !option[NOLENGTH], or 0 otherwise.
72 all tuples (keyword[i] : i in Pos) are different.
74 Theorem 2: If all tuples (keyword[i] : i in Pos) are different, there
76 {keyword[i] + alpha_inc[i] : i in Pos} are different.
78 Define selchars[keyword] := {keyword[
144 KeywordExt *keyword = temp->first(); local
167 KeywordExt *keyword = temp->first(); local
246 KeywordExt *keyword = temp->first(); local
536 KeywordExt *keyword = temp->first(); local
598 KeywordExt *keyword = temp->first(); local
757 KeywordExt *keyword = temp->first(); local
822 KeywordExt *keyword = temp->first(); local
870 KeywordExt *keyword = temp->first(); local
881 KeywordExt *keyword = temp->first(); local
983 KeywordExt *keyword = temp->first(); local
1068 KeywordExt *keyword = temp->first(); local
1097 KeywordExt *keyword = temp->first(); local
1259 KeywordExt *keyword = temp->first(); local
1306 KeywordExt *keyword = ptr->first(); local
1528 KeywordExt *keyword = ptr->first(); local
[all...]
H A Doutput.cc69 Note about the keyword list starting at head:
74 duplicate equivalence class remains on the linear keyword list.
77 keyword list. Search::optimize would catch this mistake.
442 /* Outputs a keyword, as a string: enclosed in double quotes, escaping
738 proper encoding for each keyword.
925 /* Prints out a table of keyword lengths, for use with the
950 KeywordExt *keyword = temp->first(); local
955 if (option[SWITCH] && !option[TYPE] && !keyword->_duplicate_link)
958 if (index < keyword->_hash_value && !option[SWITCH] && !option[DUP])
961 for ( ; index < keyword
1012 KeywordExt *keyword = temp->first(); local
1053 KeywordExt *keyword = temp->first(); local
1190 KeywordExt *keyword = temp->first(); local
[all...]
H A Dsearch.h29 #include "keyword-list.h"
52 /* Initializes each keyword's _selchars array. */
54 /* Deletes each keyword's _selchars array. */
72 /* Initializes each keyword's _selchars array. */
94 /* Computes a keyword's hash value, relative to the current _asso_values[],
95 and stores it in keyword->_hash_value. */
96 int compute_hash (KeywordExt *keyword) const;
101 /* Sorts the keyword list by hash value. */
112 /* Maximum length of the longest keyword. */
115 /* Minimum length of the shortest keyword
[all...]
/freebsd-9.3-release/crypto/openssl/fips/dsa/
H A Dfips_dssvs.c46 char *keyword, *value; local
50 if (!parse_line(&keyword, &value, lbuf, buf))
52 if (!strcmp(keyword, "Prime")) {
67 char *keyword, *value; local
71 if (!parse_line(&keyword, &value, lbuf, buf)) {
75 if (!strcmp(keyword, "[mod"))
77 else if (!strcmp(keyword, "N")) {
111 char *keyword, *value; local
120 if (!parse_line(&keyword, &value, lbuf, buf)) {
125 if (!strcmp(keyword, "[mo
204 char *keyword, *value; local
283 char *keyword, *value; local
327 char *keyword, *value; local
396 char *keyword, *value; local
[all...]
/freebsd-9.3-release/crypto/openssl/fips/rsa/
H A Dfips_rsagtest.c145 char *keyword, *value; local
162 keyword = linebuf;
164 while (isspace((unsigned char)*keyword))
165 keyword++;
173 if (!p || *keyword == '[') {
198 if (!strcmp(keyword, "xp1")) {
201 } else if (!strcmp(keyword, "xp2")) {
204 } else if (!strcmp(keyword, "Xp")) {
207 } else if (!strcmp(keyword, "xq1")) {
210 } else if (!strcmp(keyword, "xq
[all...]
H A Dfips_rsavtest.c162 char *keyword, *value; local
179 keyword = linebuf;
181 while (isspace((unsigned char)*keyword))
182 keyword++;
190 if (!p || *keyword == '[') {
215 if (!strcmp(keyword, "n")) {
218 } else if (!strcmp(keyword, "e")) {
221 } else if (!strcmp(keyword, "SHAAlg")) {
237 } else if (!strcmp(keyword, "Msg")) {
245 } else if (!strcmp(keyword, "
[all...]
H A Dfips_rsastest.c157 char *keyword, *value; local
175 keyword = linebuf;
177 while (isspace((unsigned char)*keyword))
178 keyword++;
211 if (!strcmp(keyword, "[mod")) {
219 } else if (!strcmp(keyword, "SHAAlg")) {
235 } else if (!strcmp(keyword, "Msg")) {
/freebsd-9.3-release/contrib/ntp/ntpdc/
H A Dntpdc.h44 char *keyword; member in struct:parse
55 const char *keyword; /* command key word */ member in struct:xcmd
/freebsd-9.3-release/bin/ps/
H A DMakefile5 SRCS= fmt.c keyword.c nlist.c print.c ps.c
/freebsd-9.3-release/crypto/openssl/fips/rand/
H A Dfips_rngvs.c42 char *keyword, *value; local
55 if (!parse_line(&keyword, &value, lbuf, buf))
57 if (!strcmp(keyword, "Key")) {
64 } else if (!strcmp(keyword, "DT")) {
70 } else if (!strcmp(keyword, "V")) {
109 char *keyword, *value; local
123 if (!parse_line(&keyword, &value, lbuf, buf))
125 if (!strcmp(keyword, "Key")) {
132 } else if (!strcmp(keyword, "DT")) {
138 } else if (!strcmp(keyword, "
[all...]
/freebsd-9.3-release/contrib/cvs/doc/
H A Dmkman.pl58 my ($keyword, $file) = @_;
61 if $keyword =~ /^(|r|t)$/;
63 if $keyword =~ /^(strong|sc|code|file|samp)$/;
65 if $keyword =~ /^(emph|var|dfn)$/;
66 die "no handler for keyword \`$keyword', found at line $. of file \`$file'\n";
71 # Return replacement for \@$keyword{$content}.
74 my ($file, $parent, $keyword, $content) = @_;
77 if $keyword eq "ref";
79 if $keyword
[all...]
/freebsd-9.3-release/crypto/openssl/util/
H A Dmkdef.pl1096 # Param: one keyword
1099 my ($keyword,$platforms) = @_;
1103 if ($keyword eq "VMS" && $VMS) { return 1; }
1104 if ($keyword eq "VMSVAX" && $VMSVAX) { return 1; }
1105 if ($keyword eq "VMSNonVAX" && $VMSNonVAX) { return 1; }
1106 if ($keyword eq "WIN32" && $W32) { return 1; }
1107 if ($keyword eq "WIN16" && $W16) { return 1; }
1108 if ($keyword eq "WINNT" && $NT) { return 1; }
1109 if ($keyword eq "OS2" && $OS2) { return 1; }
1114 if ($keyword e
[all...]
/freebsd-9.3-release/crypto/openssl/fips/
H A Dfips_utl.h174 char *keyword, *value, *p, *q; local
176 keyword = linebuf;
178 while (isspace((unsigned char)*keyword))
179 keyword++;
207 *pkw = keyword;
254 * "keyword = value\n" no matter what white space present, all other lines
260 char *keyword, *value, *p, *q; local
262 keyword = linebuf;
264 while (isspace((unsigned char)*keyword))
265 keyword
[all...]
/freebsd-9.3-release/gnu/usr.bin/gperf/
H A DMakefile11 SRCS= bool-array.cc hash-table.cc input.cc keyword-list.cc keyword.cc \
/freebsd-9.3-release/crypto/openssl/fips/hmac/
H A Dfips_hmactest.c145 char *keyword, *value; local
165 keyword = linebuf;
167 while (isspace((unsigned char)*keyword))
168 keyword++;
199 if (!strcmp(keyword, "[L") && *p == ']') {
219 } else if (!strcmp(keyword, "Count")) {
225 } else if (!strcmp(keyword, "Klen")) {
231 } else if (!strcmp(keyword, "Tlen")) {
237 } else if (!strcmp(keyword, "Msg")) {
243 } else if (!strcmp(keyword, "Ke
[all...]
/freebsd-9.3-release/crypto/openssl/fips/sha/
H A Dfips_shatest.c145 char *keyword, *value; local
160 keyword = linebuf;
162 while (isspace((unsigned char)*keyword))
163 keyword++;
192 if (!strcmp(keyword, "[L") && *p == ']') {
212 } else if (!strcmp(keyword, "Len")) {
226 else if (!strcmp(keyword, "Msg")) {
235 } else if (!strcmp(keyword, "Seed")) {
243 } else if (!strcmp(keyword, "MD"))
/freebsd-9.3-release/contrib/tcsh/
H A Dgethost.c61 static const char *keyword[] = variable
109 for (i = 0; keyword[i] != NULL; i++)
110 if (strcmp(keyword[i], ptr) == 0)
349 explode(defs), keyword[token]);
352 keyword[token]);
359 (void) fprintf(stdout, "# define _%s_\n", keyword[token]);
360 (void) fprintf(stdout, " %s = %s;\n", keyword[token], stmt);
/freebsd-9.3-release/sys/dev/sfxge/
H A Dsfxge.c568 efx_vpd_tag_t tag, const char *keyword)
573 /* Check whether VPD tag/keyword is present */
575 value.evv_keyword = EFX_VPD_KEYWORD(keyword[0], keyword[1]);
580 ctx, list, OID_AUTO, keyword, CTLTYPE_STRING|CTLFLAG_RD,
581 sc, tag << 16 | EFX_VPD_KEYWORD(keyword[0], keyword[1]),
591 char keyword[3]; local
618 keyword[0] = 'V';
619 keyword[
567 sfxge_vpd_try_add(struct sfxge_softc *sc, struct sysctl_oid_list *list, efx_vpd_tag_t tag, const char *keyword) argument
[all...]

Completed in 195 milliseconds

123