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

1234567891011>>

/freebsd-9.3-release/usr.bin/getent/
H A Dgetent.c134 parsenum(const char *word, unsigned long *result) argument
139 assert(word != NULL);
142 if (!isdigit((unsigned char)word[0]))
145 num = strtoul(word, &ep, 10);
/freebsd-9.3-release/usr.bin/grep/regex/
H A Dfastmatch.h29 bool word; member in struct:__anon10766
H A Dtre-fastmatch.c466 fg->word = (cflags & REG_WORD); \
518 /* Cannot handle word boundaries with MB string */
519 if (fg->word && (TRE_MB_CUR_MAX > 1))
529 DPRINT(("tre_compile_literal: pattern: %s, len %zu, icase: %c, word: %c, "
531 fg->word ? 'y' : 'n', fg->newline ? 'y' : 'n'));
568 /* Handle word-boundary matching when GNU extensions are enabled */
576 fg->word = true;
579 /* Cannot handle word boundaries with MB string */
580 if (fg->word && (TRE_MB_CUR_MAX > 1))
701 * with escapes, anchors (^$) and the word boundar
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dsymtab.c3216 #define COMPLETION_LIST_ADD_SYMBOL(symbol, sym_text, len, text, word) \ argument
3218 (SYMBOL_NATURAL_NAME (symbol), (sym_text), (len), (text), (word))
3226 char *text, char *word)
3243 if (word == sym_text)
3248 else if (word > sym_text)
3252 strcpy (new, symname + (word - sym_text));
3257 new = xmalloc (strlen (symname) + (sym_text - word) + 5);
3258 strncpy (new, word, sym_text - word);
3259 new[sym_text - word]
3268 completion_list_objc_symbol(struct minimal_symbol *msymbol, char *sym_text, int sym_text_len, char *text, char *word) argument
3378 make_symbol_completion_list(char *text, char *word) argument
3526 sym_text, sym_text_len, text, word); local
3567 make_file_symbol_completion_list(char *text, char *word, char *srcfile) argument
3670 add_filename_to_list(const char *fname, char *text, char *word, char ***list, int *list_used, int *list_alloced) argument
3730 make_source_files_completion_list(char *text, char *word) argument
[all...]
/freebsd-9.3-release/contrib/diff/src/
H A Dsystem.h246 #ifndef word macro
247 # define word uintmax_t
H A Ddiff.h241 word *buffer;
/freebsd-9.3-release/contrib/dtc/
H A Ddata.c248 struct data data_append_cell(struct data d, cell_t word) argument
250 cell_t beword = cpu_to_fdt32(word);
/freebsd-9.3-release/contrib/tcsh/
H A Dtc.sched.c220 cmd.word = STRNULL;
225 nextword->word = Strsave(cp);
/freebsd-9.3-release/sys/amd64/include/xen/
H A Dhypercall.h240 unsigned long ma, unsigned long word)
242 return _hypercall2(int, update_descriptor, ma, word);
239 HYPERVISOR_update_descriptor( unsigned long ma, unsigned long word) argument
/freebsd-9.3-release/sys/arm/arm/
H A Dcpufunc_asm_arm10.S121 .word _C_LABEL(arm_pdcache_line_size)
224 .word _C_LABEL(arm10_dcache_sets_max)
H A Dcpufunc_asm_arm9.S113 .word _C_LABEL(arm_pdcache_line_size)
211 .word _C_LABEL(arm9_dcache_sets_max)
H A Dcpufunc_asm_armv5.S110 .word _C_LABEL(arm_pdcache_line_size)
217 .word _C_LABEL(armv5_dcache_sets_max)
/freebsd-9.3-release/sys/dev/mpr/
H A Dmpr_sas_lsi.c97 } word; member in union:_sata_sas_address
867 hash_address.word.low = 0;
868 hash_address.word.high = 0;
870 hash_address.word.low += *bufferptr;
872 hash_address.word.high += *bufferptr;
876 hash_address.word.low += *bufferptr;
880 if ((hash_address.word.high & 0x000000F0) == (0x00000050))
881 hash_address.word.high |= 0x00000080;
/freebsd-9.3-release/sys/dev/mps/
H A Dmps_sas_lsi.c97 } word; member in union:_sata_sas_address
766 hash_address.word.low = 0;
767 hash_address.word.high = 0;
769 hash_address.word.low += *bufferptr;
771 hash_address.word.high += *bufferptr;
775 hash_address.word.low += *bufferptr;
779 if ((hash_address.word.high & 0x000000F0) == (0x00000050))
780 hash_address.word.high |= 0x00000080;
/freebsd-9.3-release/sys/mips/mips/
H A Ddb_disasm.c154 i.word = ins;
158 if (i.word == 0) {
/freebsd-9.3-release/sys/pci/
H A Dintpm.c76 static int intsmb_writew(device_t dev, u_char slave, char cmd, short word);
78 static int intsmb_readw(device_t dev, u_char slave, char cmd, short *word);
613 intsmb_writew(device_t dev, u_char slave, char cmd, short word) argument
626 bus_write_1(sc->io_res, PIIX4_SMBHSTDAT0, word & 0xff);
627 bus_write_1(sc->io_res, PIIX4_SMBHSTDAT1, (word >> 8) & 0xff);
657 intsmb_readw(device_t dev, u_char slave, char cmd, short *word) argument
673 *word = bus_read_1(sc->io_res, PIIX4_SMBHSTDAT0);
674 *word |= bus_read_1(sc->io_res, PIIX4_SMBHSTDAT1) << 8;
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-9.3-release/usr.bin/make/
H A Dstr.c332 /* word separator */
334 /* not in a word */
478 * Check word against pattern for a match (% is wild),
485 Str_SYSVMatch(const char *word, const char *pattern, int *len) argument
490 w = word;
493 /* Zero-length word cannot be matched against */
/freebsd-9.3-release/usr.bin/wc/
H A Dwc.c183 goto word;
186 * lines than to get words, since the word count requires some
242 word: gotsp = 1;
/freebsd-9.3-release/usr.sbin/makefs/
H A Dmtree.c393 mtree_warning("quoted word straddles "
433 mtree_error("word too long to fit buffer (max %zu characters)",
/freebsd-9.3-release/sys/dev/ixgbe/
H A Dixgbe_x540.c364 * ixgbe_read_eerd_X540- Read EEPROM word using EERD
366 * @offset: offset of word in the EEPROM to read
367 * @data: word read from the EEPROM
369 * Reads a 16 bit word from the EEPROM using the EERD register.
388 * ixgbe_read_eerd_buffer_X540- Read EEPROM word(s) using EERD
390 * @offset: offset of word in the EEPROM to read
392 * @data: word(s) read from the EEPROM
394 * Reads a 16 bit word(s) from the EEPROM using the EERD register.
415 * ixgbe_write_eewr_X540 - Write EEPROM word using EEWR
417 * @offset: offset of word i
480 u16 word = 0; local
[all...]
H A Dixgbe_common.c225 * 10gig parts do not have a word in the EEPROM to determine the
632 * means pba_ptr is actually our second data word for the PBA number
763 &pba->word[0]);
768 pba->word[0] = eeprom_buf[IXGBE_PBANUM0_PTR];
769 pba->word[1] = eeprom_buf[IXGBE_PBANUM1_PTR];
775 if (pba->word[0] == IXGBE_PBANUM_PTR_GUARD) {
789 ret_val = hw->eeprom.ops.read_buffer(hw, pba->word[1],
795 if (eeprom_buf_size > (u32)(pba->word[1] +
798 &eeprom_buf[pba->word[1]],
830 &pba->word[
1268 u16 word; local
2118 u16 word = 0; local
[all...]
/freebsd-9.3-release/sys/boot/pc98/cdboot/
H A Dcdboot.S341 .word 0xaa55 # Magic number
756 gdt: .word 0x0,0x0,0x0,0x0 # Null entry
757 .word 0xffff,0x0000,0x9200,0x00cf # SEL_SDATA
758 .word 0xffff,0x0000,0x9200,0x0000 # SEL_RDATA
759 .word 0xffff,LOAD_SEG<<4,0x9a00,0x00cf # SEL_SCODE (32-bit)
760 .word 0xffff,LOAD_SEG<<4,0x9a00,0x008f # SEL_SCODE16 (16-bit)
765 gdtdesc: .word gdt.1-gdt-1 # Limit
772 cylinder: .word 0
781 cursor: .word 0
808 .word
[all...]
/freebsd-9.3-release/contrib/ntp/ntpdc/
H A Dntpdc.c1520 size_t word, words; local
1536 for (word = 0; word < words; word++) {
1537 length = strlen(list[word]);
1547 for (word = row; word < words; word += rows)
1549 (int)col - 1, list[word]);
/freebsd-9.3-release/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.
529 UWtype word, count, add;
532 word = uu.s.low, add = 0;
534 word = uu.s.high, add = BITS_PER_UNIT * sizeof (Wtype);
538 count_trailing_zeros (count, word);
723 UWtype word;
727 word = uu.s.high, add = 0;
729 word = uu.s.low, add = W_TYPE_SIZE;
731 count_leading_zeros (ret, word);
516 UWtype word, count, add; local
705 UWtype word; local
737 UWtype word; local
[all...]

Completed in 157 milliseconds

1234567891011>>