| /src/sys/dev/pci/ixgbe/ |
| ixgbe_common.h | 49 u16 word[2]; member in struct:ixgbe_pba
|
| /src/external/gpl2/gettext/dist/gettext-tools/libuniname/ |
| gen-uninames | 11 word-indices 12 word-indices-index 15 (defstruct word-list 81 (let* ((word (subseq name i1 i2)) 82 (len (length word))) 88 (make-word-list 92 (let ((word-list (aref words-by-length len))) 93 (unless (gethash word (word-list-hashed word-list) [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/hx509/ |
| sel-gram.y | 60 %type <expr> word words 85 words : word { $$ = _hx509_make_expr(expr_WORDS, $1, NULL); } 86 | word ',' words { $$ = _hx509_make_expr(expr_WORDS, $1, $3); } 89 comp : word '=' '=' word { $$ = _hx509_make_expr(comp_EQ, $1, $4); } 90 | word '!' '=' word { $$ = _hx509_make_expr(comp_NE, $1, $4); } 91 | word kw_TAILMATCH word { $$ = _hx509_make_expr(comp_TAILEQ, $1, $3); } 92 | word kw_IN '(' words ')' { $$ = _hx509_make_expr(comp_IN, $1, $4); 96 word : number { $$ = $1; } label [all...] |
| /src/external/bsd/openpam/dist/lib/libpam/ |
| openpam_readlinev.c | 58 char *word, **wordv, **tmp; local 69 while ((word = openpam_readword(f, lineno, &wordlen)) != NULL) { 80 /* insert our word */ 81 wordv[wordvlen++] = word; 83 word = NULL; 91 free(word); 126 * allocated NUL-terminated strings, each containing a single word, in the
|
| openpam_readword.c | 53 * Read a word from a file, respecting shell quoting rules. 59 char *word; local 97 word = NULL; 107 if (openpam_straddch(&word, &size, &len, 0) != 0) 117 openpam_straddch(&word, &size, &len, '\\') != 0) { 118 free(word); 122 if (openpam_straddch(&word, &size, &len, ch) != 0) { 123 free(word); 134 free(word); 140 free(word); [all...] |
| /src/external/bsd/openpam/dist/t/ |
| t_openpam_readword.c | 55 * Read a word from the temp file and verify that the result matches our 56 * expectations: whether a word was read at all, how many lines were read 264 T_FUNC(single_word, "single word") variable 266 const char *word = "hello"; 271 t_fprintf(tf, "%s\n", word); 273 ret = orw_expect(tf, word, 0 /*lines*/, 0 /*eof*/, 1 /*eol*/); 278 T_FUNC(single_whitespace_before_word, "single whitespace before word") variable 280 const char *word = "hello"; 285 t_fprintf(tf, " %s\n", word); 287 ret = orw_expect(tf, word, 0 /*lines*/, 0 /*eof*/, 1 /*eol*/) 292 const char *word = "hello"; variable 306 const char *word = "hello"; variable 320 const char *word = "hello"; variable 334 const char *word = "hello"; variable 349 const char *word = "hello#world"; variable 363 const char *word[] = { "hello", "world" }; variable [all...] |
| t_openpam_readlinev.c | 90 t_printv("word %d: expected <<%s>>, " 252 T_FUNC(one_word, "one word") 281 const char **word; 285 for (word = numbers; *word; ++word) 286 t_fprintf(tf, " %s", *word); 278 const char **word; variable
|
| /src/external/gpl3/gdb.old/dist/sim/common/ |
| sim-endian.c | 66 union { unsigned_16 word; unsigned_4 words[4]; } in, out; \ 67 in.word = (RAW); \ 72 SET out.word; 99 sim_endian_split_16 (unsigned_16 word, int w) 103 return word.a[1 - w]; 107 return word.a[w]; 117 unsigned_16 word; local 120 word.a[0] = l; 121 word.a[1] = h; 125 word.a[0] = h [all...] |
| /src/external/ibm-public/postfix/dist/src/util/ |
| line_wrap.c | 82 const char *word; local 101 for (start_line = word = str; word != 0; word = next_word) { 102 next_space = word + strcspn(word, " \t"); 103 if (word > start_line) { 105 line_len = word - start_line; 109 while (*word && ISSPACE(*word)) [all...] |
| /src/external/gpl3/gdb/dist/sim/common/ |
| sim-endian.c | 66 union { unsigned_16 word; unsigned_4 words[4]; } in, out; \ 67 in.word = (RAW); \ 72 SET out.word; 99 sim_endian_split_16 (unsigned_16 word, int w) 103 return word.a[1 - w]; 107 return word.a[w]; 117 unsigned_16 word; local 120 word.a[0] = l; 121 word.a[1] = h; 125 word.a[0] = h [all...] |
| /src/common/lib/libc/string/ |
| bcopy.c | 62 * sizeof(word) MUST BE A POWER OF TWO 65 typedef long word; /* "word" used for optimal copy speed */ typedef 67 #define wsize sizeof(word) 121 TLOOP(*(word *)(void *)dst = *(const word *)(const void *)src; src += wsize; dst += wsize); 144 TLOOP(src -= wsize; dst -= wsize; *(word *)(void *)dst = *(const word *)(const void *)src);
|
| /src/games/robots/ |
| main.c | 66 const char *word; local 116 word = argv[i]; 117 if (isdigit((unsigned char)word[0])) { 118 maximum = atoi(word); 120 Scorefile = word; 128 word = strrchr(Scorefile, '/'); 129 if (word == NULL) 130 word = Scorefile; 131 if (strcmp(word, "pattern_roll") == 0) 133 else if (strcmp(word, "stand_still") == 0 [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/otp/ |
| otptest.c | 76 char *word; member in struct:test 135 test_one (key, "standard_word", t->word, otp_print_stddict, alg);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| SparseBitVector.h | 81 // Return the bits that make up word Idx in our element. 82 BitWord word(unsigned Idx) const { function in struct:llvm::SparseBitVectorElement 155 && "Word Position outside of element"); 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);
|
| /src/external/bsd/kyua-cli/dist/utils/ |
| units.cpp | 138 /// \param input The stream from which to read a single word representing the 148 std::string word; local 149 input >> word; local 152 rhs = bytes::parse(word);
|
| units_test.cpp | 202 std::string word; local 203 input >> word; local 204 ATF_REQUIRE_EQ("more", word);
|
| /src/external/gpl2/groff/dist/src/devices/grohtml/ |
| html.h | 30 struct word { struct 32 word *next; 34 word (const char *w, int n); 35 ~word (); 47 word *head; 48 word *tail;
|
| output.cpp | 66 * word - initialise a word and set next to NULL 69 word::word (const char *w, int n) function in class:word 78 * destroy word and the string copy. 81 word::~word () 87 * word_list - create an empty word list. 96 * flush - flush a word list to a FILE, f, and return the 102 word *t [all...] |
| /src/external/gpl2/lvm2/dist/libdm/datastruct/ |
| bitset.c | 73 int bit, word; local 82 word = last_bit >> INT_SHIFT; 83 test = bs[word + 1]; 87 return (word * DM_BITS_PER_INT) + bit;
|
| /src/games/adventure/ |
| wizard.c | 117 char *word, *x; local 121 getin(&word, &x); 122 if (!weq(word, magic)) {
|
| /src/sys/arch/aarch64/aarch64/ |
| db_disasm.c | 87 uint32_t word = 0; local 91 kcopy((void*)address, &word, sizeof(word)); 94 ufetch_32((uint32_t *)address, &word); 100 return word;
|
| /src/usr.bin/mail/ |
| head.c | 178 * Collect a liberal (space, tab delimited) word into the word buffer 179 * passed. Also, return a pointer to the next word following that, 230 * XXX - line[], pbuf[], and word[] must be LINESIZE in length or 238 char word[LINESIZE]; local 248 cp = nextword(cp, word); 249 cp = nextword(cp, word); 250 if (*word) 251 hl->l_from = copyin(word, &sp); 253 cp = nextword(cp, word); [all...] |
| /src/usr.bin/make/unit-tests/ |
| var-op-expand.mk | 143 REF.word= 1:$$ 2:$$$$ 4:$$$$$$$$ 145 VAR:= ${:Uword undef:@word@${REF.${word}}@}, direct: ${REF.word} ${REF.undef} 146 REF.word= word.after 156 # At that point, both REF.word and REF.undef are defined. 157 REF.word= 1:$$ 2:$$$$ 4:$$$$$$$$ 159 VAR= ${:Uword undef:@word@${REF.${word}}@}, direct: ${REF.word} ${REF.undef [all...] |
| /src/external/bsd/atf/dist/atf-c/detail/ |
| text.c | 120 atf_dynstr_t word; local 122 err = atf_dynstr_init_raw(&word, iter, ptr - iter); 126 err = atf_list_append(words, atf_dynstr_fini_disown(&word), true);
|
| /src/external/bsd/atf/dist/tools/ |
| ui.cpp | 101 const std::string& word = *iter; local 104 curcol + word.length() + 1 > maxcol) { 115 formatted += word; 116 curcol += word.length();
|