Home
last modified time | relevance | path

Searched refs:word (Results 1 – 25 of 640) sorted by relevance

12345678910>>...26

/freebsd/crypto/openssl/crypto/
H A Dsparccpuid.S54 .word 0x91408000 !rd %ccr,%o0
60 .word 0xbfa00040 !fmovd %f0,%f62
61 .word 0xbba00040 !...
62 .word 0xb7a00040
63 .word 0xb3a00040
64 .word 0xafa00040
65 .word 0xaba00040
66 .word 0xa7a00040
67 .word 0xa3a00040
68 .word 0x9fa00040
[all …]
/freebsd/contrib/tnftp/src/
H A Dcomplete.c86 complete_ambiguous(char *word, int list, StringList *words) in complete_ambiguous() argument
93 wordlen = strlen(word); in complete_ambiguous()
139 complete_command(char *word, int list) in complete_command() argument
147 wordlen = strlen(word); in complete_command()
152 if (strncmp(word, c->c_name, wordlen) == 0) in complete_command()
156 rv = complete_ambiguous(word, list, words); in complete_command()
169 complete_local(char *word, int list) in complete_local() argument
179 if ((file = strrchr(word, '/')) == NULL) { in complete_local()
182 file = word; in complete_local()
184 if (file == word) { in complete_local()
[all …]
/freebsd/contrib/dma/
H A Dconf.c151 char *word; in parse_conf() local
178 word = strsep(&data, EQS); in parse_conf()
181 if (word == NULL || *word == 0) in parse_conf()
189 if (strcmp(word, "SMARTHOST") == 0 && data != NULL) in parse_conf()
191 else if (strcmp(word, "PORT") == 0 && data != NULL) in parse_conf()
193 else if (strcmp(word, "ALIASES") == 0 && data != NULL) in parse_conf()
195 else if (strcmp(word, "SPOOLDIR") == 0 && data != NULL) in parse_conf()
197 else if (strcmp(word, "AUTHPATH") == 0 && data != NULL) in parse_conf()
199 else if (strcmp(word, "CERTFILE") == 0 && data != NULL) in parse_conf()
201 else if (strcmp(word, "MAILNAME") == 0 && data != NULL) in parse_conf()
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Dvarmod.mk107 .if ${:Uword:@word@${word}$@} != "word"
125 .if ${word:L:[99333000222000111000]}
128 .if ${word:L:[2147483648]}
134 .if ${word:L:range=99333000222000111000}
172 .if ${word:L:@w@$w$@} != "word"
176 .if ${word:[$]}
182 .if ${word:L:_=VAR$} != "word" || ${${VAR_DOLLAR}} != "word"
185 .if ${word:L:C,d$,m,} != "worm"
188 .if ${word:L:C,d,$,} != "wor\$"
213 .if ${word:L:Mw*$} != "word"
[all …]
H A Dvarmod-loop.mk43 @echo $@:${:U1:@word@${word}$@:Q}:
44 @echo $@:${:U2:@word@$${word}$$@:Q}:
45 @echo $@:${:U3:@word@$$${word}$$$@:Q}:
46 @echo $@:${:U4:@word@$$$${word}$$$$@:Q}:
47 @echo $@:${:U5:@word@$$$$${word}$$$$$@:Q}:
48 @echo $@:${:U6:@word@$$$$$${word}$$$$$$@:Q}:
H A Dvar-op-expand.mk143 REF.word= 1:$$ 2:$$$$ 4:$$$$$$$$
145 VAR:= ${:Uword undef:@word@${REF.${word}}@}, direct: ${REF.word} ${REF.undef}
146 REF.word= word.after
157 REF.word= 1:$$ 2:$$$$ 4:$$$$$$$$
159 VAR= ${:Uword undef:@word@${REF.${word}}@}, direct: ${REF.word} ${REF.undef}
160 REF.word= word.after
H A Dvarmod.exp4 while evaluating "${:Uword:@word@${word}$@} != "word"" with value "word"
23 while evaluating variable "word" with value "word"
25 while evaluating variable "word" with value ""
37 while evaluating variable "word" with value "word"
39 while evaluating variable "word" with value "word"
/freebsd/contrib/tcsh/
H A Dsh.parse.c74 if (!any(";&\n", p1->word[0])) in asyntax()
88 switch (p->word[0]) { in asyn0()
101 if (p->next != p2 && eq(p->next->word, STRand)) in asyn0()
141 if (p1->word[0] == '(') { in asyn3()
142 for (p2 = p2->prev; p2->word[0] != ')'; p2 = p2->prev) in asyn3()
149 ap = adrof1(p1->word, &aliases); in asyn3()
162 if (p1->word[0] && eq(p1->word, alout.next->word)) { in asyn3()
163 Char *cp = alout.next->word; in asyn3()
165 alout.next->word = Strspl(STRQNULL, cp); in asyn3()
174 xfree(alout.prev->word); in asyn3()
[all …]
/freebsd/sys/libkern/
H A Dmemcchr.c45 #error Unsupported word size
62 unsigned long word; in memcchr() local
65 word = (unsigned char)c; in memcchr()
66 word |= word << 8; in memcchr()
67 word |= word << 16; in memcchr()
69 word |= word << 32; in memcchr()
83 if (*lp++ != word) in memcchr()
89 if (*lp != word) { in memcchr()
/freebsd/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_IN '(' words ')' { $$ = _hx509_make_expr(comp_IN, $1, $4); }
92 | word kw_IN variable { $$ = _hx509_make_expr(comp_IN, $1, $3); }
95 word : number { $$ = $1; }
H A Dsel.c52 eval_word(hx509_context context, hx509_env env, struct hx_expr *word) in eval_word() argument
54 switch (word->op) { in eval_word()
56 return word->arg1; in eval_word()
58 if (word->arg2 == NULL) in eval_word()
59 return hx509_env_find(context, env, word->arg1); in eval_word()
61 env = hx509_env_find_binding(context, env, word->arg1); in eval_word()
65 return eval_word(context, env, word->arg2); in eval_word()
72 find_variable(hx509_context context, hx509_env env, struct hx_expr *word) in find_variable() argument
74 assert(word->op == expr_VAR); in find_variable()
76 if (word->arg2 == NULL) in find_variable()
[all …]
/freebsd/crypto/openssl/crypto/des/asm/
H A Ddes_enc.m4912 .word 0
913 .word $7.1-$7.0
914 .word $7.2-$7.0
915 .word $7.3-$7.0
916 .word $7.4-$7.0
917 .word $7.5-$7.0
918 .word $7.6-$7.0
919 .word $7.7-$7.0
1035 .word 0
1036 .word $7.1-$7.0
[all …]
/freebsd/sys/dev/cxgbe/common/
H A Dt4vf_hw.c263 u32 word = be32_to_cpu( in t4vf_get_rss_glb_config() local
267 ((word & F_FW_RSS_GLB_CONFIG_CMD_SYNMAPEN) != 0); in t4vf_get_rss_glb_config()
269 ((word & F_FW_RSS_GLB_CONFIG_CMD_SYN4TUPENIPV6) != 0); in t4vf_get_rss_glb_config()
271 ((word & F_FW_RSS_GLB_CONFIG_CMD_SYN2TUPENIPV6) != 0); in t4vf_get_rss_glb_config()
273 ((word & F_FW_RSS_GLB_CONFIG_CMD_SYN4TUPENIPV4) != 0); in t4vf_get_rss_glb_config()
275 ((word & F_FW_RSS_GLB_CONFIG_CMD_SYN2TUPENIPV4) != 0); in t4vf_get_rss_glb_config()
278 ((word & F_FW_RSS_GLB_CONFIG_CMD_OFDMAPEN) != 0); in t4vf_get_rss_glb_config()
281 ((word & F_FW_RSS_GLB_CONFIG_CMD_TNLMAPEN) != 0); in t4vf_get_rss_glb_config()
283 ((word & F_FW_RSS_GLB_CONFIG_CMD_TNLALLLKP) != 0); in t4vf_get_rss_glb_config()
286 ((word & F_FW_RSS_GLB_CONFIG_CMD_HASHTOEPLITZ) != 0); in t4vf_get_rss_glb_config()
[all …]
/freebsd/crypto/openssl/crypto/bn/asm/
H A Dx86-mont.pl310 $word="edi";
315 &mov ($word,$_bp);
319 &sub ("edx",$word); # see if ap==bp
320 &lea ("eax",&DWP(4,$word,$num,4)); # &bp[num]
322 &mov ($word,&DWP(0,$word)); # bp[0]
330 &mul ($word); # ap[j]*bp[0]
340 &mul ($word); # ap[num-1]*bp[0]
341 &mov ($word,$_n0);
345 &imul ($word,&DWP($frame,"esp")); # n0*tp[0]
353 &mul ($word); # np[0]*m
[all …]
/freebsd/contrib/openpam/lib/libpam/
H A Dopenpam_readword.c54 char *word; in openpam_readword() local
92 word = NULL; in openpam_readword()
102 if (openpam_straddch(&word, &size, &len, 0) != 0) in openpam_readword()
112 openpam_straddch(&word, &size, &len, '\\') != 0) { in openpam_readword()
113 free(word); in openpam_readword()
117 if (openpam_straddch(&word, &size, &len, ch) != 0) { in openpam_readword()
118 free(word); in openpam_readword()
129 free(word); in openpam_readword()
135 free(word); in openpam_readword()
142 return (word); in openpam_readword()
/freebsd/lib/libc/string/
H A Dstrtok.c109 char *brkb, *brkt, *phrase, *sep, *word; in main() local
116 for (word = strtok(test, sep); word; word = strtok(NULL, sep)) in main()
117 printf("Next word is \"%s\".\n", word); in main()
120 for (word = strtok_r(test, sep, &brkt); word; in main()
121 word = strtok_r(NULL, sep, &brkt)) { in main()
126 printf("So far we're at %s:%s\n", word, phrase); in main()
/freebsd/contrib/tcpdump/
H A Dprint-decnet.c46 typedef nd_uint16_t word; /* 2 byte field */ typedef
72 word sh_dst; /* destination node address */
73 word sh_src; /* source node address */
161 word in_src; /* source node address */
163 word in_blksize; /* maximum data link block size */
167 word in_hello; /* hello timer */
174 word ve_src; /* source node address */
181 word te_src; /* source node address */
188 word r1_src; /* source node address */
195 word r2_src; /* source node address */
[all …]
/freebsd/tools/ifnet/
H A Dconvert_ifapi.sh69 word=`echo $line | awk -F "if_" ' { print $2 }' | awk -F" =" '{ print $1 }'`
71 new=`echo if_set$word"\($__ifp__,"$value");"`
83 word=`echo $line | awk -F"if_" '{ print $2 }'|awk -F"\+" '{ print $1}'`
86 new=`echo if_inc$word"\($__ifp__,"$value");"`
97 word=`echo $line | awk -F"if_" '{ print $2 }'|awk '{ print $1}'`
99 new=`echo if_inc$word"\($__ifp__,$value);"`
112 word=`echo $line | awk -F"if_" '{ print $2 }'|awk '{ print $1}'`
114 new=`echo if_set${word}bit"($__ifp__,$value, 0);"`
128 word=`echo $line | awk -F"if_" '{ print $2 }'|awk '{ print $1}'`
131 new=`echo if_set${word}bit"\($__ifp__, 0,$value);"`
[all …]
/freebsd/crypto/openssl/crypto/bn/
H A DREADME.pod87 least significant word first. A B<BN_ULONG> can be either 16, 32 or 64 bits
113 bn_mul_words(B<rp>, B<ap>, B<num>, B<w>) operates on the B<num> word
115 in B<rp>, and returns the high word (carry).
118 word arrays B<rp> and B<ap>. It computes B<ap> * B<w> + B<rp>, places
119 the result in B<rp>, and returns the high word (carry).
121 bn_sqr_words(B<rp>, B<ap>, B<n>) operates on the B<num> word array
122 B<ap> and the 2*B<num> word array B<ap>. It computes B<ap> * B<ap>
123 word-wise, and places the low and high bytes of the result in B<rp>.
125 bn_div_words(B<h>, B<l>, B<d>) divides the two word number (B<h>, B<l>)
128 bn_add_words(B<rp>, B<ap>, B<bp>, B<num>) operates on the B<num> word
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersHelpers.h65 InferiorSizedWord(const InferiorSizedWord &word) : ptr_size(word.ptr_size) { in InferiorSizedWord()
67 thirty_two = word.thirty_two; in InferiorSizedWord()
69 sixty_four = word.sixty_four; in InferiorSizedWord()
72 InferiorSizedWord operator=(const InferiorSizedWord &word) {
73 ptr_size = word.ptr_size;
75 thirty_two = word.thirty_two;
77 sixty_four = word.sixty_four;
124 InferiorSizedWord operator&(const InferiorSizedWord &word) const {
125 if (ptr_size != word.ptr_size)
128 return InferiorSizedWord(thirty_two & word.thirty_two, 4);
[all …]
/freebsd/tools/tools/notescheck/
H A Dnotescheck.py239 for word in group.split():
240 words.append(word)
264 for word in words[2:]:
270 if word == 'no-obj' or word == 'no-implicit-rule' or \
271 word == 'before-depend' or word == 'local' or \
272 word == 'no-depend' or word == 'profiling-routine' or \
273 word == 'nowerror':
277 if word == 'dependency' or word == 'clean' or \
278 word == 'compile-with' or word == 'warning':
283 if word == '|':
[all …]
/freebsd/sys/arm/arm/
H A Dhypervisor-stub.S75 .word 0 /* Reset */
76 .word 0 /* undev */
77 .word 0 /* SMC */
78 .word 0 /* PABT */
79 .word 0 /* DABT */
81 .word 0 /* FIQ */
82 .word 0 /* IRQ */
/freebsd/sys/dev/ath/ath_hal/
H A Dah_eeprom_v14.c195 uint16_t word; in eepromSwap() local
199 word = __bswap16(ee->baseEepHeader.length); in eepromSwap()
200 ee->baseEepHeader.length = word; in eepromSwap()
202 word = __bswap16(ee->baseEepHeader.checksum); in eepromSwap()
203 ee->baseEepHeader.checksum = word; in eepromSwap()
205 word = __bswap16(ee->baseEepHeader.version); in eepromSwap()
206 ee->baseEepHeader.version = word; in eepromSwap()
208 word = __bswap16(ee->baseEepHeader.regDmn[0]); in eepromSwap()
209 ee->baseEepHeader.regDmn[0] = word; in eepromSwap()
211 word = __bswap16(ee->baseEepHeader.regDmn[1]); in eepromSwap()
[all …]
H A Dah_eeprom_9287.c157 uint16_t word; in eepromSwap() local
161 word = __bswap16(ee->ee_base.baseEepHeader.length); in eepromSwap()
162 ee->ee_base.baseEepHeader.length = word; in eepromSwap()
164 word = __bswap16(ee->ee_base.baseEepHeader.checksum); in eepromSwap()
165 ee->ee_base.baseEepHeader.checksum = word; in eepromSwap()
167 word = __bswap16(ee->ee_base.baseEepHeader.version); in eepromSwap()
168 ee->ee_base.baseEepHeader.version = word; in eepromSwap()
170 word = __bswap16(ee->ee_base.baseEepHeader.regDmn[0]); in eepromSwap()
171 ee->ee_base.baseEepHeader.regDmn[0] = word; in eepromSwap()
173 word = __bswap16(ee->ee_base.baseEepHeader.regDmn[1]); in eepromSwap()
[all …]
H A Dah_eeprom_v4k.c151 uint16_t word; in eepromSwap() local
155 word = __bswap16(ee->baseEepHeader.length); in eepromSwap()
156 ee->baseEepHeader.length = word; in eepromSwap()
158 word = __bswap16(ee->baseEepHeader.checksum); in eepromSwap()
159 ee->baseEepHeader.checksum = word; in eepromSwap()
161 word = __bswap16(ee->baseEepHeader.version); in eepromSwap()
162 ee->baseEepHeader.version = word; in eepromSwap()
164 word = __bswap16(ee->baseEepHeader.regDmn[0]); in eepromSwap()
165 ee->baseEepHeader.regDmn[0] = word; in eepromSwap()
167 word = __bswap16(ee->baseEepHeader.regDmn[1]); in eepromSwap()
[all …]

12345678910>>...26