Searched refs:word (Results 151 - 175 of 415) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/bmake/
H A Dvar.c242 VAR_SUB_ONE = 0x02, /* Apply substitution to one word */
244 VAR_MATCH_START = 0x08, /* Match at start of word */
245 VAR_MATCH_END = 0x10, /* Match at end of word */
261 * single big word, even if it contains
300 int start; /* first word to select */
301 int end; /* last word to select */
1122 /* This callback for VarModify gets a single word from an expression and
1123 * typically adds a modification of this word to the buffer. It may also do
1132 const char *word, Boolean addSpace, Buffer *buf, void *data);
1136 * Add the dirname of the given word t
1138 VarHead(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, const char *word, Boolean addSpace, Buffer *buf, void *dummy MAKE_ATTR_UNUSED) argument
1157 VarTail(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, const char *word, Boolean addSpace, Buffer *buf, void *dummy MAKE_ATTR_UNUSED) argument
1173 VarSuffix(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, const char *word, Boolean addSpace, Buffer *buf, void *dummy MAKE_ATTR_UNUSED) argument
1190 VarRoot(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, const char *word, Boolean addSpace, Buffer *buf, void *dummy MAKE_ATTR_UNUSED) argument
1206 VarMatch(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, const char *word, Boolean addSpace, Buffer *buf, void *data) argument
1224 VarSYSVMatch(GNode *ctx, Var_Parse_State *vpstate, const char *word, Boolean addSpace, Buffer *buf, void *data) argument
1251 VarNoMatch(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, const char *word, Boolean addSpace, Buffer *buf, void *data) argument
1267 VarSubstitute(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, const char *word, Boolean addSpace, Buffer *buf, void *data) argument
1446 VarRESubstitute(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate MAKE_ATTR_UNUSED, const char *word, Boolean addSpace, Buffer *buf, void *data) argument
1562 VarLoopExpand(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate MAKE_ATTR_UNUSED, const char *word, Boolean addSpace, Buffer *buf, void *data) argument
1684 VarRealpath(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, const char *word, Boolean addSpace, Buffer *buf, void *patternp MAKE_ATTR_UNUSED) argument
[all...]
/freebsd-12-stable/sys/dev/e1000/
H A De1000_nvm.c435 * @offset: offset of word in the EEPROM to read
437 * @data: word read from the EEPROM
439 * Reads a 16 bit word from the EEPROM.
495 * @offset: offset of word in the EEPROM to read
497 * @data: word read from the EEPROM
499 * Reads a 16 bit word from the EEPROM.
534 /* Read the data. For microwire, each word requires the
550 * @offset: offset of word in the EEPROM to read
552 * @data: word read from the EEPROM
554 * Reads a 16 bit word fro
[all...]
/freebsd-12-stable/sbin/ggate/ggated/
H A Dggated.c155 char *word, *path, *sflags; local
163 for (i = 0, word = strtok(line, " \t"); word != NULL;
164 i++, word = strtok(NULL, " \t")) {
167 ip = g_gate_str2ip(strsep(&word, "/"));
173 if (word == NULL)
177 vmask = strtoul(word, NULL, 10);
190 if (strcasecmp("rd", word) == 0 ||
191 strcasecmp("ro", word) == 0) {
193 } else if (strcasecmp("wo", word)
[all...]
/freebsd-12-stable/contrib/gcc/
H A Dbitmap.c492 /* If we cleared the entire word, free up the element. */
600 BITMAP_WORD word;
607 word = elt->bits[ix];
608 if (word)
616 gcc_assert (sizeof(long) == sizeof (word));
617 bit_no += __builtin_ctzl (word);
624 if (!(word & 0xffffffff))
625 word >>= 32, bit_no += 32;
627 if (!(word & 0xffff))
628 word >>
591 BITMAP_WORD word; local
[all...]
/freebsd-12-stable/contrib/ipfilter/iplang/
H A Diplang_l.l42 char *word;
234 for (wt = words; wt->word; wt++)
235 if (!strcasecmp(wt->word, (char *)yytext))
/freebsd-12-stable/contrib/tcsh/
H A Dtw.parse.c134 * If we find a set command, then we break a=b to a= and word becomes
160 size_t wp, word, wordp, cmd_start, oword = 0, ocmd_start = 0; local
173 word = cmd_start = 0;
186 oword = word;
188 word = cmd_start = qline.len + 1;
193 word = oword;
215 word = qline.len, word_start = cp + 1;
224 * first word of command -> TW_COMMAND
228 looking = starting_a_command(qline.s + word - 1, qline.s) ?
231 wordp = word;
591 insert_meta(const Char *cp, const Char *cpend, const Char *word, int closequotes) argument
1236 tw_suffix(int looking, struct Strbuf *word, const Char *exp_dir, Char *exp_name) argument
1300 tw_fixword(int looking, struct Strbuf *word, Char *dir, Char *exp_name) argument
1510 t_search(struct Strbuf *word, COMMAND command, int looking, int list_max, Char *pat, eChar suf) argument
[all...]
H A Dsh.file.c495 * Perform a RECOGNIZE or LIST command on string "word".
498 tsearch(Char *word, COMMAND command, size_t max_word_length) argument
510 looking_for_lognames = (*word == '~') && (Strchr(word, '/') == NULL);
515 name = word + 1; /* name sans ~ */
520 extract_dir_and_name(word, &dir, &name);
572 copyn(word, STRtilde, 2);/*FIXBUF, sort of */
575 copyn(word, dir, max_word_length);/*FIXBUF*/
577 catn(word, extended_name, max_word_length);/*FIXBUF*/
715 * Find LAST occurence of a delimiter in the inputline. The word star
[all...]
H A Dsh.glob.c663 struct Strbuf word = Strbuf_INIT; local
668 cleanup_push(&word, Strbuf_cleanup);
672 Strbuf_appendn(&word, cp, lp - cp);
689 backeval(&bb, &word, ep, literal);
693 if (word.len != 0)
694 pword(&bb, &word);
702 backeval(struct blk_buf *bb, struct Strbuf *word, Char *cp, int literal) argument
848 * the last newline without terminating this word.
858 Strbuf_append1(word, c);
861 * Unless at end-of-file, we will form a new word her
877 pword(struct blk_buf *bb, struct Strbuf *word) argument
[all...]
/freebsd-12-stable/crypto/openssl/crypto/sha/asm/
H A Dsha1-armv4-large.pl308 .LK_00_19: .word 0x5a827999
309 .LK_20_39: .word 0x6ed9eba1
310 .LK_40_59: .word 0x8f1bbcdc
311 .LK_60_79: .word 0xca62c1d6
314 .word OPENSSL_armcap_P-.Lsha1_block
713 my $word = $opcode{$mnemonic}|(($1&7)<<13)|(($1&8)<<19)
721 $word &= ~0x10000000 if (($word & 0x0f000000) == 0x02000000);
723 $word&0xff,($word>>
[all...]
H A Dsha1-thumb.pl257 .LK_00_19: .word 0x5a827999
258 .LK_20_39: .word 0x6ed9eba1
259 .LK_40_59: .word 0x8f1bbcdc
260 .LK_60_79: .word 0xca62c1d6
/freebsd-12-stable/contrib/libstdc++/libmath/
H A Dmathconf.h181 U_int32_t word; member in union:__anon2357
188 (i) = gf_u.word; \
/freebsd-12-stable/lib/libc/mips/string/
H A Dbcmp.S61 PTR_SUBU a3, zero, a1 # compute # bytes to word align address
92 lbu v0, 0(a0) # compare bytes until a1 word aligned
/freebsd-12-stable/sys/mips/nlm/
H A Dmpreset.S48 #define MFCR(rt,rs) .word ((0x1c<<26)|((rs)<<21)|((rt)<<16)|(0x18))
49 #define MTCR(rt,rs) .word ((0x1c<<26)|((rs)<<21)|((rt)<<16)|(0x19))
/freebsd-12-stable/release/picobsd/tinyware/msh/
H A Dsh2.c71 _PROTOTYPE(static void word, (char *cp ));
207 word(yylval.cp);
413 word(yylval.cp);
417 word(NOWORD);
432 word(yylval.cp);
433 word(NOWORD);
539 word(NOWORD);
555 word(cp) function
707 err("word too long");
/freebsd-12-stable/sys/arm/arm/
H A Dcpufunc_asm_pj4b.S38 .word 0xf1021820
45 bic r0, r0, #(1 << 12) /* LDSTM first issue is single word */
73 orr r0, r0, #(1 << 27) /* Critical word first sequencing disable */
H A Dswtch-v4.S100 .word _C_LABEL(__pcpu)
102 .word _C_LABEL(blocked_lock)
108 .word _C_LABEL(cpufuncs)
/freebsd-12-stable/stand/i386/boot2/
H A Dboot1.S65 bpb: .word 512 # sector size (T)
67 .word 0 # reserved sectors
69 .word 0 # root entries
70 .word 0 # small sectors
72 .word 0 # sectors/fat
73 .word 18 # sectors per track (T)
74 .word 2 # number of heads (T)
373 .word 0xaa55 # Magic number
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_lib.h127 uint64_t word; local
131 word = uu.s.high;
134 word = uu.s.low;
137 return __builtin_clzll(word) + add;
/freebsd-12-stable/contrib/googletest/googletest/scripts/
H A Dgen_gtest_pred_impl.py174 def Title(word):
175 """Returns the given word in title case. The difference between
179 return word[0].upper() + word[1:]
/freebsd-12-stable/contrib/dtc/
H A Ddata.c210 struct data data_append_cell(struct data d, cell_t word) argument
212 return data_append_integer(d, word, sizeof(word) * 8);
/freebsd-12-stable/contrib/binutils/ld/emultempl/
H A Dspu_ovl.S84 .word 0x00010203, 0x1c1d1e1f, 0x00010203, 0x10111213
88 .word 0x04050607, 0x80808080, 0x80808080, 0x80808080
103 .word 0
/freebsd-12-stable/sys/dev/bktr/
H A Dbktr_i2c.c304 * byte1 becomes low byte of word
305 * byte2 becomes high byte of word
308 bti2c_smb_writew(device_t dev, u_char slave, char cmd, short word) argument
314 low = (char)(word & 0xff);
315 high = (char)((word & 0xff00) >> 8);
/freebsd-12-stable/sys/opencrypto/
H A Dgfmult.c132 * (x*2^4 + word[3,0]*h) *
133 * 2^4 + word[7,4]*h) *
135 * 2^4 + word[63,60]*h
138 gfmultword(uint64_t word, struct gf128 x, struct gf128table *tbl) argument
146 bits = word % 16;
157 word >>= 4;
/freebsd-12-stable/contrib/subversion/subversion/include/
H A Dsvn_types.h321 /** Return a constant string expressing @a kind as an English word, e.g.,
331 /** Return the appropriate node_kind for @a word. @a word is as
332 * returned from svn_node_kind_to_word(). If @a word does not
338 svn_node_kind_from_word(const char *word);
352 /** Return the appropriate tristate for @a word. If @a word is "true", returns
353 * #svn_tristate_true; if @a word is "false", returns #svn_tristate_false,
359 svn_tristate__from_word(const char * word);
476 /** Return a constant string expressing @a depth as an English word,
[all...]
/freebsd-12-stable/contrib/one-true-awk/
H A Dlex.c41 const char *word; member in struct:Keyword
170 int word(char *);
197 return word(buf);
451 if ((cond = strcmp(w, kp[mid].word)) < 0)
461 int word(char *w) function

Completed in 416 milliseconds

1234567891011>>