Searched refs:word (Results 201 - 225 of 415) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/diff/src/
H A Dsystem.h246 #ifndef word macro
247 # define word uintmax_t
/freebsd-12-stable/contrib/bmake/mk/
H A Drst2htm.mk27 # the following will run RST2S5 if the target name contains the word 'slides'
/freebsd-12-stable/contrib/bmake/
H A Dstr.c165 * quotes and build the word list.
430 * Check word against pattern for a match (% is wild),
433 * word Word to examine
447 Str_SYSVMatch(const char *word, const char *pattern, size_t *len, argument
451 const char *w = word;
464 /* empty word does not match pattern */
/freebsd-12-stable/lib/libc/arm/gen/
H A Dsetjmp.S89 .word _JB_MAGIC_SETJMP
/freebsd-12-stable/sys/dev/intpm/
H A Dintpm.c79 static int intsmb_writew(device_t dev, u_char slave, char cmd, short word);
81 static int intsmb_readw(device_t dev, u_char slave, char cmd, short *word);
734 intsmb_writew(device_t dev, u_char slave, char cmd, short word) argument
747 bus_write_1(sc->io_res, PIIX4_SMBHSTDAT0, word & 0xff);
748 bus_write_1(sc->io_res, PIIX4_SMBHSTDAT1, (word >> 8) & 0xff);
778 intsmb_readw(device_t dev, u_char slave, char cmd, short *word) argument
794 *word = bus_read_1(sc->io_res, PIIX4_SMBHSTDAT0);
795 *word |= bus_read_1(sc->io_res, PIIX4_SMBHSTDAT1) << 8;
/freebsd-12-stable/sys/dev/mps/
H A Dmps_sas_lsi.c102 } word; member in union:_sata_sas_address
897 hash_address.word.low = 0;
898 hash_address.word.high = 0;
900 hash_address.word.low += *bufferptr;
902 hash_address.word.high += *bufferptr;
906 hash_address.word.low += *bufferptr;
910 if ((hash_address.word.high & 0x000000F0) == (0x00000050))
911 hash_address.word.high |= 0x00000080;
/freebsd-12-stable/sys/mips/mips/
H A Ddb_disasm.c160 i.word = ins;
164 if (i.word == 0) {
/freebsd-12-stable/sys/arm64/arm64/
H A Dcpufunc_asm.S46 .word PAGE_MASK
/freebsd-12-stable/sys/amd64/amd64/
H A Dxen-locore.S210 .word gdtend - gdt
224 .word gdt32end - gdt32
/freebsd-12-stable/crypto/openssl/crypto/bn/asm/
H A Dsparcv9-gf2m.pl67 .word 0x95b262ab ! xmulx %o1, %o3, %o2
68 .word 0x99b262cb ! xmulxhi %o1, %o3, %o4
/freebsd-12-stable/contrib/subversion/subversion/include/
H A Dsvn_ra_svn.h168 const char *word; member in union:svn_ra_svn_item_t::__anon7026
442 /** Write a word over the net.
453 const char *word);
/freebsd-12-stable/usr.bin/wc/
H A Dwc.c214 goto word;
237 * lines than to get words, since the word count requires locale
272 word: gotsp = 1;
/freebsd-12-stable/usr.sbin/makefs/
H A Dmtree.c403 mtree_warning("quoted word straddles "
419 mtree_error("word too long to fit buffer (max %zu characters)",
/freebsd-12-stable/crypto/openssl/crypto/poly1305/asm/
H A Dpoly1305-sparcv9.pl1028 .word 0x43300000,0x00000000 ! 2^(52+0)
1029 .word 0x45300000,0x00000000 ! 2^(52+32)
1030 .word 0x47300000,0x00000000 ! 2^(52+64)
1031 .word 0x49300000,0x00000000 ! 2^(52+96)
1032 .word 0x4b500000,0x00000000 ! 2^(52+130)
1034 .word 0x37f40000,0x00000000 ! 5/2^130
1035 .word 0,1<<30 ! fsr: truncate, no exceptions
1037 .word 0x44300000,0x00000000 ! 2^(52+16+0)
1038 .word 0x46300000,0x00000000 ! 2^(52+16+32)
1039 .word
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
H A DIdentifierTable.cpp500 /// given "word", which is assumed to end in a lowercase letter.
501 static bool startsWithWord(StringRef name, StringRef word) { argument
502 if (name.size() < word.size()) return false;
503 return ((name.size() == word.size() || !isLowercase(name[word.size()])) &&
504 name.startswith(word));
/freebsd-12-stable/sys/dev/ismt/
H A Dismt.c381 ismt_writew(device_t dev, u_char slave, char cmd, short word) argument
392 sc->dma_buffer[1] = word & 0xFF;
393 sc->dma_buffer[2] = word >> 8;
424 ismt_readw(device_t dev, u_char slave, char cmd, short *word) argument
443 *word = sc->dma_buffer[0] | (sc->dma_buffer[1] << 8);
/freebsd-12-stable/usr.sbin/kldxref/
H A Dkldxref.c339 char *word, *ctx; local
341 for (word = strtok_r(key, "/", &ctx);
342 word; word = strtok_r(NULL, "/", &ctx)) {
344 word);
/freebsd-12-stable/sys/dev/pms/RefTisa/sat/src/
H A Dsmsat.c2102 /* Removable Media feature set enabled, word 85, bit 2 */
2500 * If the ATA device returns word 87 bit 8 set to one in its IDENTIFY DEVICE
2604 pInquiry[16] = (bit8)((pSimpleData->word[27]) >> 8);
2605 pInquiry[17] = (bit8)((pSimpleData->word[27]) & 0x00ff);
2606 pInquiry[18] = (bit8)((pSimpleData->word[28]) >> 8);
2607 pInquiry[19] = (bit8)((pSimpleData->word[28]) & 0x00ff);
2608 pInquiry[20] = (bit8)((pSimpleData->word[29]) >> 8);
2609 pInquiry[21] = (bit8)((pSimpleData->word[29]) & 0x00ff);
2610 pInquiry[22] = (bit8)((pSimpleData->word[30]) >> 8);
2611 pInquiry[23] = (bit8)((pSimpleData->word[3
[all...]
/freebsd-12-stable/contrib/subversion/subversion/libsvn_ra_svn/
H A Dmarshal.c62 /* We don't use "words" longer than this in our protocol. The longest word
105 target->u.word = source->u.word.data;
148 target->u.word.data = source->u.word;
149 target->u.word.len = strlen(source->u.word);
255 const char *word;
262 _("Capability entry is not a word"));
263 word
254 const char *word; local
775 svn_ra_svn__write_word(svn_ra_svn_conn_t *conn, apr_pool_t *pool, const char *word) argument
[all...]
/freebsd-12-stable/contrib/subversion/subversion/libsvn_subr/
H A Dsqlite.c505 const char *word = svn_token__to_word(map, value); local
507 SQLITE_ERR(sqlite3_bind_text(stmt->s3stmt, slot, word, -1, SQLITE_STATIC),
642 const char *word = (const char *)sqlite3_column_text(stmt->s3stmt, column); local
644 return svn_token__from_word_strict(map, word);
654 const char *word = (const char *)sqlite3_column_text(stmt->s3stmt, column); local
656 if (!word)
659 return svn_token__from_word_strict(map, word);
/freebsd-12-stable/sys/dev/viapm/
H A Dviapm.c801 viasmb_writew(device_t dev, u_char slave, char cmd, short word) argument
815 VIAPM_OUTB(SMBHDATA0, word & 0x00ff);
816 VIAPM_OUTB(SMBHDATA1, (word & 0xff00) >> 8);
822 VIAPM_DEBUG(printf("viapm: WRITEW to 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, word, error));
829 viasmb_readw(device_t dev, u_char slave, char cmd, short *word) argument
851 *word = ((high & 0xff) << 8) | (low & 0xff);
854 VIAPM_DEBUG(printf("viapm: READW from 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, *word, error));
/freebsd-12-stable/contrib/ntp/ntpdc/
H A Dntpdc.c1519 size_t word, words; local
1535 for (word = 0; word < words; word++) {
1536 length = strlen(list[word]);
1546 for (word = row; word < words; word += rows)
1548 (int)col - 1, list[word]);
/freebsd-12-stable/contrib/gcc/
H A Dlibgcc2.c47 /* Work out the largest "word" size that we can deal with on this target. */
57 /* Work out what word size we are using for this compilation.
553 UWtype word, count, add;
556 word = uu.s.low, add = 0;
558 word = uu.s.high, add = BITS_PER_UNIT * sizeof (Wtype);
562 count_trailing_zeros (count, word);
747 UWtype word;
751 word = uu.s.high, add = 0;
753 word = uu.s.low, add = W_TYPE_SIZE;
755 count_leading_zeros (ret, word);
540 UWtype word, count, add; local
729 UWtype word; local
761 UWtype word; local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseBitVector.h81 // Return the bits that make up word Idx in our element.
82 BitWord word(unsigned Idx) const { function in struct:llvm::SparseBitVectorElement
330 // Current word number inside of our element.
349 Bits = Iter->word(WordNumber);
363 // See if we ran out of Bits in this word.
376 // Set up for next non-zero word in bitmap.
381 Bits = Iter->word(WordNumber);
385 Bits = Iter->word(WordNumber);
/freebsd-12-stable/contrib/gdb/include/
H A Dhp-symtab.h67 lists. Constants always begin on word boundaries. The first byte of
174 word.
186 int word; member in union:dnttpointer
1109 unsigned long future[2] ; /* padding to 3-word block end */
1131 unsigned long future[2] ; /* padding to 3-word block end */
1149 unsigned long future ; /* padding to 3-word block end */
1164 unsigned long future ; /* padding to 3-word block end */
1211 long future[2] ; /* padding to 3-word block end */
1264 long future[2] ; /* padding to 3-word block end */
1310 unsigned int word[ member in struct:dntt_type_generic
1318 unsigned int word[2]; member in struct:dntt_type_block
1437 unsigned int word[2]; member in struct:slt_generic
[all...]

Completed in 417 milliseconds

1234567891011>>