Searched refs:word (Results 176 - 200 of 427) sorted by relevance

1234567891011>>

/freebsd-11-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-11-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-11-stable/contrib/tcsh/
H A Dsh.glob.c656 struct Strbuf word = Strbuf_INIT; local
661 cleanup_push(&word, Strbuf_cleanup);
665 Strbuf_appendn(&word, cp, lp - cp);
682 backeval(&bb, &word, ep, literal);
686 if (word.len != 0)
687 pword(&bb, &word);
695 backeval(struct blk_buf *bb, struct Strbuf *word, Char *cp, int literal) argument
841 * the last newline without terminating this word.
851 Strbuf_append1(word, c);
854 * Unless at end-of-file, we will form a new word her
870 pword(struct blk_buf *bb, struct Strbuf *word) argument
[all...]
H A Dtw.comp.c215 * Return the next word from string, unquoteing it.
447 * c/<pattern>/<completion>/[<suffix>/] current word ignore pattern
448 * C/<pattern>/<completion>/[<suffix>/] current word with pattern
449 * n/<pattern>/<completion>/[<suffix>/] next word
450 * N/<pattern>/<completion>/[<suffix>/] next-next word
453 tw_complete(const Char *line, Char **word, Char **pat, int looking, eChar *suf) argument
463 /* Single-character words, empty current word, terminating NULL */
501 /* if the current word is empty move the last word to the next */
502 if (**word
[all...]
H A Dtc.func.c110 for (s = sp->word; *s; s++) {
203 struct Strbuf word = Strbuf_INIT; local
205 Strbuf_terminate(&word);
206 cleanup_push(&word, Strbuf_cleanup);
207 (void) t_search(&word, LIST, TW_ZERO, 0, STRNULL, 0);
208 cleanup_until(&word);
260 cmd.word = STRNULL;
263 nextword->word = Strsave(lspath);
268 nextword->word = Strsave(STRmCF);
275 nextword->word
[all...]
/freebsd-11-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-11-stable/contrib/one-true-awk/
H A Dlex.c41 const char *word; member in struct:Keyword
164 int word(char *);
191 return word(buf);
445 if ((cond = strcmp(w, kp[mid].word)) < 0)
455 int word(char *w) function
/freebsd-11-stable/usr.sbin/ppp/
H A Dchap_ms.c84 register unsigned int word; local
86 word = (unsigned)input[startBit / 8] << 8;
87 word |= (unsigned)input[startBit / 8 + 1];
89 word >>= 15 - (startBit % 8 + 7);
91 return word & 0xFE;
/freebsd-11-stable/crypto/openssl/crypto/sha/asm/
H A Dsha1-armv4-large.pl263 .LK_00_19: .word 0x5a827999
264 .LK_20_39: .word 0x6ed9eba1
265 .LK_40_59: .word 0x8f1bbcdc
266 .LK_60_79: .word 0xca62c1d6
269 .word OPENSSL_armcap_P-sha1_block_data_order
657 my $word = $opcode{$mnemonic}|(($1&7)<<13)|(($1&8)<<19)
664 $word&0xff,($word>>8)&0xff,
665 ($word>>16)&0xff,($word>>2
[all...]
/freebsd-11-stable/sys/dev/alpm/
H A Dalpm.c97 #define SMBWRWORD 0x30 /* write/read word */
483 alpm_writew(device_t dev, u_char slave, char cmd, short word) argument
497 ALPM_SMBOUTB(sc, SMBHDATA, word & 0x00ff);
498 ALPM_SMBOUTB(sc, SMBHDATB, (word & 0xff00) >> 8);
504 ALPM_DEBUG(printf("alpm: WRITEW to 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, word, error));
511 alpm_readw(device_t dev, u_char slave, char cmd, short *word) argument
533 *word = ((high & 0xff) << 8) | (low & 0xff);
536 ALPM_DEBUG(printf("alpm: READW from 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, *word, erro
[all...]
/freebsd-11-stable/sys/dev/amdsmb/
H A Damdsmb.c446 amdsmb_writew(device_t dev, u_char slave, char cmd, short word) argument
453 amdsmb_ec_write(sc, SMB_DATA, word);
454 amdsmb_ec_write(sc, SMB_DATA + 1, word >> 8);
460 AMDSMB_DEBUG(printf("amdsmb: WRITEW to 0x%x, cmd=0x%x, word=0x%x, "
461 "error=0x%x\n", slave, cmd, word, error));
468 amdsmb_readw(device_t dev, u_char slave, char cmd, short *word) argument
482 *word = temp[0] | (temp[1] << 8);
485 AMDSMB_DEBUG(printf("amdsmb: READW from 0x%x, cmd=0x%x, word=0x%x, "
486 "error=0x%x\n", slave, cmd, (unsigned short)*word, error));
/freebsd-11-stable/sys/dev/nfsmb/
H A Dnfsmb.c497 nfsmb_writew(device_t dev, u_char slave, char cmd, short word) argument
504 NFSMB_SMBOUTB(sc, SMB_DATA, word);
505 NFSMB_SMBOUTB(sc, SMB_DATA + 1, word >> 8);
511 NFSMB_DEBUG(printf("nfsmb: WRITEW to 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, word, error));
518 nfsmb_readw(device_t dev, u_char slave, char cmd, short *word) argument
529 *word = NFSMB_SMBINB(sc, SMB_DATA) |
532 NFSMB_DEBUG(printf("nfsmb: READW from 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, (unsigned short)*word, error));
/freebsd-11-stable/sys/dev/ichsmb/
H A Dichsmb.c268 ichsmb_writew(device_t dev, u_char slave, char cmd, short word) argument
273 DBG("slave=0x%02x cmd=0x%02x word=0x%04x\n",
274 slave, (u_char)cmd, (u_int16_t)word);
282 bus_write_1(sc->io_res, ICH_D0, word & 0xff);
283 bus_write_1(sc->io_res, ICH_D1, word >> 8);
316 ichsmb_readw(device_t dev, u_char slave, char cmd, short *word) argument
332 *word = (bus_read_1(sc->io_res,
338 DBG("smb_error=%d word=0x%04x\n", smb_error, (u_int16_t)*word);
481 /* word dat
[all...]
/freebsd-11-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_eeprom.c3440 u_int16_t word;
3446 word = SWAP16(eep->base_eep_header.length);
3447 eep->base_eep_header.length = word;
3449 word = SWAP16(eep->base_eep_header.checksum);
3450 eep->base_eep_header.checksum = word;
3452 word = SWAP16(eep->base_eep_header.version);
3453 eep->base_eep_header.version = word;
3455 word = SWAP16(eep->base_eep_header.reg_dmn[0]);
3456 eep->base_eep_header.reg_dmn[0] = word;
3458 word
3920 u_int8_t word[MOUTPUT]; local
4318 u_int16_t word; local
[all...]
/freebsd-11-stable/sys/dev/sfxge/common/
H A Defx_vpd.c352 efx_word_t word; local
383 EFX_POPULATE_WORD_2(word,
386 length = EFX_WORD_FIELD(word, EFX_WORD_0);
794 efx_word_t word; local
924 EFX_POPULATE_WORD_1(word, EFX_WORD_0,
927 EFX_WORD_FIELD(word, EFX_BYTE_0);
929 EFX_WORD_FIELD(word, EFX_BYTE_1);
935 EFX_POPULATE_WORD_1(word, EFX_WORD_0, taglen);
936 data[offset - 2] = EFX_WORD_FIELD(word, EFX_BYTE_0);
937 data[offset - 1] = EFX_WORD_FIELD(word, EFX_BYTE_
[all...]
/freebsd-11-stable/sys/dev/amdpm/
H A Damdpm.c488 amdpm_writew(device_t dev, u_char slave, char cmd, short word) argument
502 AMDPM_SMBOUTW(sc, AMDSMB_HSTDATA, word);
509 AMDPM_DEBUG(printf("amdpm: WRITEW to 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, word, error));
516 amdpm_readw(device_t dev, u_char slave, char cmd, short *word) argument
535 *word = AMDPM_SMBINW(sc, AMDSMB_HSTDATA);
537 AMDPM_DEBUG(printf("amdpm: READW from 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, *word, error));
/freebsd-11-stable/crypto/openssl/crypto/modes/asm/
H A Dghashv8-armx.pl376 my $word = 0xf2a00e00|(($1&7)<<13)|(($1&8)<<19)
379 $word |= 0x00010001 if ($mnemonic =~ "2");
384 $word&0xff,($word>>8)&0xff,
385 ($word>>16)&0xff,($word>>24)&0xff,
/freebsd-11-stable/sys/arm/arm/
H A Dswtch-v6.S111 .word _C_LABEL(__pcpu)
112 .word PCPU_SIZE
114 .word _C_LABEL(blocked_lock)
/freebsd-11-stable/secure/lib/libcrypto/arm/
H A Darmv4-mont.S11 .word OPENSSL_armcap_P-bn_mul_mont
171 bx lr @ .word 0xe12fff1e
175 .word 0xe12fff1e @ interoperable with Thumb ISA:-)
578 bx lr @ .word 0xe12fff1e
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dbitops.h97 ror32(uint32_t word, unsigned int shift) argument
99 return ((word >> shift) | (word << (32 - shift)));
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/atomic/sparc64/
H A Dopensolaris_atomic.S87 andn %o0, 0x3, %o0 ! %o0 = word address
/freebsd-11-stable/sys/dev/nand/
H A Dnandsim_ctrl.c320 nandsim_write_word(device_t dev, uint16_t word) argument
325 uint8_t *byte_ptr = (uint8_t *)&word;
336 *data_ptr &= word;
340 nandsim_log(chip, NANDSIM_LOG_DATA, "write %04x\n", word);
/freebsd-11-stable/sys/mips/mips/
H A Dstack_machdep.c114 if (insn.word == 0x42000018)
/freebsd-11-stable/sys/dev/e1000/
H A De1000_nvm.h39 u16 word[2]; member in struct:e1000_pba
/freebsd-11-stable/sys/sys/
H A Dsystm.h289 int suword(volatile void *base, long word);
290 int suword16(volatile void *base, int word);
291 int suword32(volatile void *base, int32_t word);
292 int suword64(volatile void *base, int64_t word);

Completed in 404 milliseconds

1234567891011>>