Searched refs:word (Results 1 - 25 of 427) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/mips/include/
H A Drunq.h46 #define RQB_FFS(word) (ffsl(word) - 1)
48 #define RQB_FFS(word) (ffs(word) - 1)
52 * Type of run queue status word.
/freebsd-11-stable/sys/arm/include/
H A Drunq.h39 #define RQB_FFS(word) (ffs(word) - 1)
42 * Type of run queue status word.
/freebsd-11-stable/sys/arm64/include/
H A Drunq.h39 #define RQB_FFS(word) (ffsl(word) - 1)
42 * Type of run queue status word.
/freebsd-11-stable/sys/riscv/include/
H A Drunq.h39 #define RQB_FFS(word) (ffsl(word) - 1)
42 * Type of run queue status word.
/freebsd-11-stable/sys/i386/include/
H A Drunq.h39 #define RQB_FFS(word) (ffs(word) - 1)
42 * Type of run queue status word.
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_token.h68 const char *word);
76 const char *word);
83 const char *word);
90 const char *word,
/freebsd-11-stable/sys/libkern/
H A Dmemcchr.c38 * performance, this function compares data from the buffer one word at
45 #error Unsupported word size
62 unsigned long word; local
65 word = (unsigned char)c;
66 word |= word << 8;
67 word |= word << 16;
69 word |= word << 3
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dtoken.c46 const char *word)
48 int value = svn_token__from_word(map, word);
60 const char *word)
62 *value = svn_token__from_word(map, word);
67 word);
75 const char *word)
77 if (word == NULL)
81 if (strcmp(map->str, word) == 0)
90 const char *word,
94 if (strncmp(map->str, word, le
45 svn_token__from_word_strict(const svn_token_map_t *map, const char *word) argument
58 svn_token__from_word_err(int *value, const svn_token_map_t *map, const char *word) argument
74 svn_token__from_word(const svn_token_map_t *map, const char *word) argument
89 svn_token__from_mem(const svn_token_map_t *map, const char *word, apr_size_t len) argument
[all...]
H A Dtypes.c115 svn_depth_from_word(const char *word) argument
117 if (strcmp(word, "exclude") == 0)
119 if (strcmp(word, "unknown") == 0)
121 if (strcmp(word, "empty") == 0)
123 if (strcmp(word, "files") == 0)
125 if (strcmp(word, "immediates") == 0)
127 if (strcmp(word, "infinity") == 0)
158 svn_node_kind_from_word(const char *word) argument
160 if (word == NULL)
163 if (strcmp(word, "non
192 svn_tristate__from_word(const char *word) argument
[all...]
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A Dsel-gram.y59 %type <expr> word words
84 words : word { $$ = _hx509_make_expr(expr_WORDS, $1, NULL); }
85 | word ',' words { $$ = _hx509_make_expr(expr_WORDS, $1, $3); }
88 comp : word '=' '=' word { $$ = _hx509_make_expr(comp_EQ, $1, $4); }
89 | word '!' '=' word { $$ = _hx509_make_expr(comp_NE, $1, $4); }
90 | word kw_TAILMATCH word { $$ = _hx509_make_expr(comp_TAILEQ, $1, $3); }
91 | word kw_I
95 word : number { $$ = $1; } label
[all...]
/freebsd-11-stable/lib/libc/string/
H A Dstrtok.c113 char *brkb, *brkt, *phrase, *sep, *word; local
120 for (word = strtok(test, sep); word; word = strtok(NULL, sep))
121 printf("Next word is \"%s\".\n", word);
124 for (word = strtok_r(test, sep, &brkt); word;
125 word = strtok_r(NULL, sep, &brkt)) {
130 printf("So far we're at %s:%s\n", word, phras
[all...]
/freebsd-11-stable/sys/mips/mips/
H A Dfp.S120 .word add_s # 0
121 .word add_d # 0
122 .word ill # 0
123 .word ill # 0
124 .word ill # 0
125 .word ill # 0
126 .word ill # 0
127 .word ill # 0
128 .word sub_s # 1
129 .word sub_
[all...]
/freebsd-11-stable/sys/amd64/include/
H A Drunq.h39 #define RQB_FFS(word) (bsfq(word))
42 * Type of run queue status word.
/freebsd-11-stable/sys/powerpc/include/
H A Drunq.h44 #define RQB_FFS(word) (ffsl(word) - 1)
47 * Type of run queue status word.
/freebsd-11-stable/contrib/openpam/lib/libpam/
H A Dopenpam_readword.c50 * Read a word from a file, respecting shell quoting rules.
56 char *word; local
94 word = NULL;
104 if (openpam_straddch(&word, &size, &len, 0) != 0)
114 openpam_straddch(&word, &size, &len, '\\') != 0) {
115 free(word);
119 if (openpam_straddch(&word, &size, &len, ch) != 0) {
120 free(word);
131 free(word);
138 free(word);
[all...]
H A Dopenpam_readlinev.c55 char *word, **wordv, **tmp; local
67 while ((word = openpam_readword(f, lineno, &wordlen)) != NULL) {
79 /* insert our word */
80 wordv[wordvlen++] = word;
82 word = NULL;
90 free(word);
125 * allocated NUL-terminated strings, each containing a single word, in the
/freebsd-11-stable/contrib/dma/
H A Dconf.c151 char *word; local
178 word = strsep(&data, EQS);
181 if (word == NULL || *word == 0)
189 if (strcmp(word, "SMARTHOST") == 0 && data != NULL)
191 else if (strcmp(word, "PORT") == 0 && data != NULL)
193 else if (strcmp(word, "ALIASES") == 0 && data != NULL)
195 else if (strcmp(word, "SPOOLDIR") == 0 && data != NULL)
197 else if (strcmp(word, "AUTHPATH") == 0 && data != NULL)
199 else if (strcmp(word, "CERTFIL
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dcompleter.c48 /* readline uses the word breaks for two things:
51 it doesn't matter a lot what the word breaks are for this purpose, but
53 (2) If one of the matches contains a word break character, readline
62 word break characters, since we use it in command names. If the
69 /* When completing on file names, we remove from the list of word
117 filename_completer (char *text, char *word)
158 if (word == text)
161 else if (word > text)
165 strcpy (q, p + (word - text));
172 q = xmalloc (strlen (p) + (text - word)
116 filename_completer(char *text, char *word) argument
199 location_completer(char *text, char *word) argument
340 command_completer(char *text, char *word) argument
384 char *word; local
[all...]
/freebsd-11-stable/contrib/tnftp/src/
H A Dcomplete.c80 * word word which started the match
86 complete_ambiguous(char *word, int list, StringList *words) argument
93 wordlen = strlen(word);
99 if (*p == '\0') /* at end of word? */
139 complete_command(char *word, int list) argument
147 wordlen = strlen(word);
152 if (strncmp(word, c->c_name, wordlen) == 0)
156 rv = complete_ambiguous(word, list, words);
169 complete_local(char *word, in argument
251 complete_option(char *word, int list) argument
281 complete_remote(char *word, int list) argument
362 static char word[FTPBUFLEN]; local
[all...]
/freebsd-11-stable/sys/sparc64/include/
H A Drunq.h39 #define RQB_FFS(word) (ffs64(word) - 1)
42 * Type of run queue status word.
/freebsd-11-stable/contrib/groff/src/devices/grohtml/
H A Dhtml.h28 struct word { struct
30 word *next;
32 word (const char *w, int n);
33 ~word ();
45 word *head;
46 word *tail;
/freebsd-11-stable/crypto/openssl/crypto/
H A Dsparccpuid.S47 .word 0x91408000 !rd %ccr,%o0
53 .word 0xbfa00040 !fmovd %f0,%f62
54 .word 0xbba00040 !...
55 .word 0xb7a00040
56 .word 0xb3a00040
57 .word 0xafa00040
58 .word 0xaba00040
59 .word 0xa7a00040
60 .word 0xa3a00040
61 .word
[all...]
/freebsd-11-stable/sys/dev/cxgbe/common/
H A Dt4vf_hw.c262 u32 word = be32_to_cpu( local
266 ((word & F_FW_RSS_GLB_CONFIG_CMD_SYNMAPEN) != 0);
268 ((word & F_FW_RSS_GLB_CONFIG_CMD_SYN4TUPENIPV6) != 0);
270 ((word & F_FW_RSS_GLB_CONFIG_CMD_SYN2TUPENIPV6) != 0);
272 ((word & F_FW_RSS_GLB_CONFIG_CMD_SYN4TUPENIPV4) != 0);
274 ((word & F_FW_RSS_GLB_CONFIG_CMD_SYN2TUPENIPV4) != 0);
277 ((word & F_FW_RSS_GLB_CONFIG_CMD_OFDMAPEN) != 0);
280 ((word & F_FW_RSS_GLB_CONFIG_CMD_TNLMAPEN) != 0);
282 ((word & F_FW_RSS_GLB_CONFIG_CMD_TNLALLLKP) != 0);
285 ((word
313 u32 word; local
[all...]
/freebsd-11-stable/bin/sh/tests/
H A Dfunctional_test.sh48 local tc_escaped word
53 for word in ${tc%.*}; do
54 tc_escaped="${tc_escaped:+${tc_escaped}_}${word}"
/freebsd-11-stable/usr.bin/indent/tests/
H A Dfunctional_test.sh66 local tc_escaped word
71 for word in ${tc%.*}; do
72 tc_escaped="${tc_escaped:+${tc_escaped}_}${word}"

Completed in 150 milliseconds

1234567891011>>