HomeSort by relevance Sort by last modified time
    Searched defs:word (Results 1 - 25 of 66) sorted by null

1 2 3

  /netvirt/usr/src/cmd/spell/
hashmake.c 44 char word[LINE_MAX]; local
54 while (gets(word)) {
55 (void) printf("%.*lo\n", (HASHWIDTH+2)/3, hash(word));
  /netvirt/usr/src/cmd/sgs/tools/common/
piglatin.c 28 * as a game. A piglatin word is formed from an English word by:
30 * . If the word begins with a consonant, move the consonant to the end of
31 * the word and append the letters "ay". Example: "door" becomes "oorday".
33 * . If the word begins with a vowel, merely append "way" to the word.
46 int ic, ignore = 0, word = 0; local
61 * Isolate the word that will be converted.
71 if (word == 0) {
88 * Append "way" to the word
    [all...]
  /netvirt/usr/src/cmd/ttymon/
tmparse.c 44 static char word[BUFSIZ]; local
57 /* into the word, up to the size of the word. */
58 for (optr= word,*optr='\0';
72 /* If there is room, add this character to the word. */
73 if (optr < &word[BUFSIZ] ) *optr++ = c;
84 return(word);
  /netvirt/usr/src/lib/libdtrace/common/
dt_regset.c 85 ulong_t word = drp->dr_bitmap[wx]; local
90 if ((word & bit) == 0) {
  /netvirt/usr/src/uts/common/fs/zfs/
zio_compress.c 76 uint64_t *word, *word_end; local
90 word = src;
91 word_end = (uint64_t *)(uintptr_t)((uintptr_t)word + srcsize);
92 while (word < word_end) {
93 if (*word++ != 0) {
  /netvirt/usr/src/uts/common/sys/
fault.h 64 unsigned int word[4]; member in struct:__anon5301
  /netvirt/usr/src/cmd/look/
look.c 29 char word[WORDSIZE]; variable
98 canon(entry,word);
99 switch(compare(key,word)) {
118 canon(entry,word);
119 switch(compare(key,word)) {
133 canon(entry,word);
134 switch(compare(key,word)) {
  /netvirt/usr/src/cmd/mailx/
head.c 88 char word[LINESIZE]; local
96 * Skip the first "word" of the line, which should be "From"
100 cp = nextword(cp, word);
101 dp = nextword(cp, word);
102 if (!equal(word, ""))
103 hl->l_from = copyin(word, &sp);
131 * Collect a liberal (space, tab delimited) word into the word buffer
132 * passed. Also, return a pointer to the next word following that,
  /netvirt/usr/src/cmd/sgs/librtld_db/rdb_demo/common/
utils.c 118 unsigned long word; local
122 if (ps_pread(ph, address, (char *)&word,
128 printf(" 0x%08lx", word);
  /netvirt/usr/src/uts/common/os/
bitmap.c 55 index_t wx; /* word index in map */
58 * Look for a word with a bit off.
70 * Found a word with a bit off. Now find the bit in the word.
72 index_t bx; /* bit index in word */
74 ulong_t word; local
78 word = bitmap[wx];
81 if (!(word & bit)) {
92 * the word specified by wx.
97 ulong_t word; local
174 ulong_t word; local
    [all...]
  /netvirt/usr/src/cmd/fmli/oeu/
rm_atob.c 56 static long word = 0; variable
72 Outcount = Bufcount = Ceor = Csum = Crot = bcount = word = 0;
131 word = DE(c);
134 word *= 85L;
135 word += DE(c);
138 word = ((ulong) word * (ulong) 85) + DE(c);
139 byteout((word >> 24) & 255L);
140 byteout((word >> 16) & 255L);
141 byteout((word >> 8) & 255L)
    [all...]
  /netvirt/usr/src/cmd/sh/
word.c 31 #pragma ident "@(#)word.c 1.22 05/09/13 SMI"
46 word(void) function
100 * Word will be represented by quoted null
195 word();
  /netvirt/usr/src/cmd/man/src/util/nsgmls.src/lib/
UnicodeCodingSystem.cxx 86 unsigned short word; member in union:SP_NAMESPACE::U
102 if (u.word == byteOrderMark) {
107 else if (u.word == swappedByteOrderMark) {
133 *to++ = u.word;
141 *to++ = u.word;
  /netvirt/usr/src/lib/libldap4/common/
getfilter.c 424 char *word, **words; local
433 word = strtok( str, delims );
434 while ( word != NULL ) {
440 words[ count ] = word;
442 word = strtok( NULL, delims );
  /netvirt/usr/src/tools/ctf/stabs/common/
forth.c 295 char *word, *name, *c; local
321 word = "model_start ";
322 if (strncmp(line, word, strlen(word)) == 0) {
323 for (c = line + strlen(word); isspace(*c); c++);
365 for (n = 1, word = strtok(line, " \t"); word != NULL;
366 word = strtok(NULL, " \t"), n++) {
368 name = word;
370 format = word;
    [all...]
genassym.c 95 char *word; local
101 for (n = 1, word = strtok(line, " \t"); word != NULL;
102 word = strtok(NULL, " \t"), n++) {
106 *(wret[n - 1]) = word;
  /netvirt/usr/src/uts/common/inet/ip/
inet_ntop.c 359 * dbl_col points to the word (should be 0) where
366 int word; local
378 word = 8 - rem;
380 v6outp->v6words_u[word] = v6buf.v6words_u[next];
381 word++;
  /netvirt/usr/src/cmd/backup/restore/
interactive.c 333 * The first word on the line is assigned to "cmd". If
1009 char word[MAXCOMPLEXLEN]; local
1014 cp = copynext(cp, word, sizeof (word));
1016 fprintf(stderr, gettext("got word `%s'\n"), word);
1023 pager_vector[pager_len - 1] = strdup(word);
1028 length += strlen(word) + 1;
  /netvirt/usr/src/cmd/cmd-inet/usr.bin/pppd/
chap_ms.c 211 register unsigned int word; local
213 word = (unsigned)input[startBit / 8] << 8;
214 word |= (unsigned)input[startBit / 8 + 1];
216 word >>= 15 - (startBit % 8 + 7);
218 return word & 0xFE;
  /netvirt/usr/src/cmd/fs.d/autofs/
ns_files.c 84 char word[MAXPATHLEN+1], wordq[MAXPATHLEN+1]; local
155 if ((getword(word, wordq, &lp, &lq, ' ', sizeof (word))
156 == -1) || (word[0] == '\0'))
158 if (strcmp(word, key) == 0)
160 if (word[0] == '*' && word[1] == '\0') {
165 if (word[0] == '+') {
166 nserr = getmapent(key, word+1, ml, stack, stkptr,
179 if (*word != '/')
218 char word[MAXPATHLEN+1], wordq[MAXPATHLEN+1]; local
    [all...]
  /netvirt/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
pmHelpRepository.java 252 String word = st.nextToken(); local
253 String quotelessWord = word.replace('\"', ' ');
264 String word = (st.nextToken()).toLowerCase(); local
267 if (ignoreKeyTitleWords.indexOf(word) != -1) {
268 Debug.message("HELP: ignoring " + word +
273 Debug.message("HELP: adding " + word +
276 v.addElement(word);
  /netvirt/usr/src/cmd/unpack/
unpack.c 495 short word; local
541 word = getwdsize();
545 if (word == 0 && is_eof && origsize > 0) {
553 tp += Tree[tp + (word < 0)];
554 word <<= 1;
  /netvirt/usr/src/cmd/vi/port/
ex_voper.c 268 * b Back up a word.
269 * B Back up a word, liberal definition.
277 * w Forward a word.
278 * W Forward a word, liberal definition.
288 * E to end of following blank/nonblank word
295 * e To end of following word.
1027 * Do a word motion with operator op, and cnt more words
1031 word(int (*op)(), int cnt) function
1098 * To end of word, with operator op and cnt more motions
1129 * Wordof tells whether the character at *wc is in a word o
    [all...]
  /netvirt/usr/src/lib/libldap5/sources/ldap/common/
getfilter.c 517 char *word, **words; local
527 word = ldap_utf8strtok_r( str, delims, &lasts );
528 while ( word != NULL ) {
534 words[ count ] = word;
536 word = ldap_utf8strtok_r( NULL, delims, &lasts );
  /netvirt/usr/src/cmd/cmd-inet/usr.sbin/snoop/
snoop_capture.c 579 * | word 0 | word 1 | word 2 |
582 * A version 2 header adds a word that identifies the MAC type.
589 * | word 0 | word 1 | word 2 | word 3
629 int *word, device_mac_type; local
686 word = (int *)cap_buffp
    [all...]

Completed in 5160 milliseconds

1 2 3