Searched refs:word (Results 1 - 25 of 351) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/common/crypto/aes/sun4u/
H A Daes_crypt_asm.s85 .word 1584
86 .word 1661148456
87 .word 1984
88 .word 2080629792
89 .word 1904
90 .word 1996733640
91 .word 1968
92 .word 2063850600
93 .word 2040
94 .word
[all...]
/illumos-gate/usr/src/common/crypto/des/sun4u/
H A Ddes_crypt_asm.s99 .word 5121
100 .word 1073872896
101 .word 0
102 .word 0
103 .word 1
104 .word 1073741824
105 .word 5121
106 .word 1073872928
107 .word 5121
108 .word 107374185
[all...]
/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vlog_ultra3.S44 .word 0xbfd522ae, 0x0738a000
45 .word 0xbd2ebe70, 0x8164c759
46 .word 0xbfd5178d, 0x9ab55000
47 .word 0xbd35c153, 0x0fe963b3
48 .word 0xbfd50c6f, 0x1d11b000
49 .word 0xbd42f8ca, 0x40bec1ea
50 .word 0xbfd50152, 0x8da1f000
51 .word 0xbd42cfac, 0x6d29f4d7
52 .word 0xbfd4f637, 0xebba9000
53 .word
[all...]
H A D__vexp.S63 .word 0x3ff00000,0x00000000
64 .word 0x00000000,0x00000000
65 .word 0x3ff00b1a,0xfa5abcbf
66 .word 0xbc84f6b2,0xa7609f71
67 .word 0x3ff0163d,0xa9fb3335
68 .word 0x3c9b6129,0x9ab8cdb7
69 .word 0x3ff02168,0x143b0281
70 .word 0xbc82bf31,0x0fc54eb6
71 .word 0x3ff02c9a,0x3e778061
72 .word
[all...]
H A D__vsqrt.S37 .word 0x3fe00000, 0x00000000 ! A1 = 5.00000000000000001789e-01
38 .word 0xbfbfffff, 0xfffd0bfd ! A2 = -1.24999999997314110667e-01
39 .word 0x3fafffff, 0xfffb5bfb ! A3 = 6.24999999978896565817e-02
40 .word 0xbfa4000f, 0xc00b4fc8 ! A4 = -3.90629693917215481458e-02
41 .word 0x3f9c0018, 0xc012da4e ! A5 = 2.73441188080261677282e-02
42 .word 0x000fffff, 0xffffffff ! DC0 = 0x000fffffffffffff
43 .word 0x00001000, 0x00000000 ! DC2 = 0x0000100000000000
44 .word 0x7fffe000, 0x00000000 ! DC3 = 0x7fffe00000000000
56 .word 0x40000000, 0x00000000, 0x3ff6a09e, 0x667f3bcd
57 .word
[all...]
H A D__vpowf.S37 .word 0x3ff00000, 0x00000000, 0x3ff00b1a, 0xfa5abcbf
38 .word 0x3ff0163d, 0xa9fb3335, 0x3ff02168, 0x143b0281
39 .word 0x3ff02c9a, 0x3e778061, 0x3ff037d4, 0x2e11bbcc
40 .word 0x3ff04315, 0xe86e7f85, 0x3ff04e5f, 0x72f654b1
41 .word 0x3ff059b0, 0xd3158574, 0x3ff0650a, 0x0e3c1f89
42 .word 0x3ff0706b, 0x29ddf6de, 0x3ff07bd4, 0x2b72a836
43 .word 0x3ff08745, 0x18759bc8, 0x3ff092bd, 0xf66607e0
44 .word 0x3ff09e3e, 0xcac6f383, 0x3ff0a9c7, 0x9b1f3919
45 .word 0x3ff0b558, 0x6cf9890f, 0x3ff0c0f1, 0x45e46c85
46 .word
[all...]
/illumos-gate/usr/src/lib/libbc/libc/sys/common/sparc/
H A Derrno.s31 _errno: .word 0
/illumos-gate/usr/src/cmd/spell/
H A Dhashmake.c44 char word[LINE_MAX]; local
54 while (gets(word)) {
55 (void) printf("%.*lo\n", (HASHWIDTH+2)/3, hash(word));
/illumos-gate/usr/src/common/ficl/
H A Dword.c7 ficlWordIsImmediate(ficlWord *word) argument
9 return ((word != NULL) && (word->flags & FICL_WORD_IMMEDIATE));
16 ficlWordIsCompileOnly(ficlWord *word) argument
18 return ((word != NULL) && (word->flags & FICL_WORD_COMPILE_ONLY));
23 * This public function helps to classify word types for SEE
24 * and the debugger in tools.c. Given an pointer to a word, it returns
28 ficlWordClassify(ficlWord *word) argument
34 if ((((ficlInstruction)word) > ficlInstructionInvali
[all...]
H A Dprefix.c48 * A prefix is a word in a dedicated wordlist (name stored in list_name below)
64 * This is the parse step for prefixes - it checks an incoming word
66 * code against the remainder of the word and returns true.
73 ficlWord *word = ficlSystemLookup(vm->callback.system, list_name); local
80 if (!word)
83 hash = (ficlHash *)(word->param[0].p);
89 word = hash->table[i];
90 while (word != NULL) {
92 n = word->length;
96 * word
[all...]
H A Ddictionary.c11 * dictionary. A word is a named chunk of data with its
69 * NOTE: this function is not smart enough to unlink a word that
77 ficlWord *word; local
79 word = dictionary->smudge;
81 if (word->flags & FICL_WORD_SMUDGED)
82 dictionary->here = (ficlCell *)word->name;
207 ficlWord *word = ficlDictionaryAppendWord(dictionary, name, local
210 if (word != NULL)
212 return (word);
219 ficlWord *word local
255 ficlWord *word = ficlDictionaryLookup(dictionary, name); local
283 ficlWord *word; local
346 ficlWord *word; local
396 ficlWord *word; local
542 ficlDictionaryIsAWord(ficlDictionary *dictionary, ficlWord *word) argument
580 ficlWord *word; local
617 ficlWord *word = NULL; local
658 ficlDictionarySee(ficlDictionary *dictionary, ficlWord *word, ficlCallback *callback) argument
667 ficlWord *word = (ficlWord *)(cell->p); local
704 ficlWord *word = (ficlWord *)c.p; local
858 ficlWord *word = dictionary->smudge; local
[all...]
H A Dhash.c66 * Put a word into the hash table using the word's hashcode as
70 ficlHashInsertWord(ficlHash *hash, ficlWord *word) argument
75 FICL_ASSERT_PHASH(hash, word);
80 pList = hash->table + (word->hash % hash->size);
83 word->link = *pList;
84 *pList = word;
100 ficlWord *word; local
112 for (word = hash->table[hashIdx]; word; wor
[all...]
H A Dtools.c116 isPrimitive(ficlWord *word)
118 ficlWordKind wk = ficlWordClassify(word);
143 ficlWord *word; local
161 word = hash[i];
163 while (word) {
166 word = word->link;
198 * CFA of the word to decompile for each kind of
199 * known word-builder code, and tries to do
206 ficlWord *word; local
216 ficlDictionarySee(ficlVmGetDictionary(vm), word, local
338 ficlWord *word; local
386 ficlWord *word; local
645 ficlWord *word; local
811 ficlWord *word; local
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Dbitmap.c55 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...]
/illumos-gate/usr/src/boot/lib/libc/string/
H A Dstrtok.c113 char *brkb, *brkt, *phrase, *sep, *word; local
120 for (word = strtok(test, sep); word; word = strtok(NULL, sep))
121 printf("Next word is \"%s\".\n", word);
124 for (word = strtok_r(test, sep, &brkt); word;
125 word = strtok_r(NULL, sep, &brkt)) {
130 printf("So far we're at %s:%s\n", word, phras
[all...]
H A Dbcopy.c42 * sizeof(word) MUST BE A POWER OF TWO
45 typedef int word; /* "word" used for optimal copy speed */ typedef
47 #define wsize sizeof(word)
106 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
127 TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src);
/illumos-gate/usr/src/uts/sun4/conf/
H A Dgenalign.s44 .word .name_end - .name_begin
45 .word .desc_end - .desc_begin
46 .word ELF_NOTE_PAGESIZE_HINT
55 .word MMU_PAGESIZE4M
/illumos-gate/usr/src/boot/sys/boot/arm/ixp425/boot2/
H A Darm_init.S49 .word _edata
50 .word _end
51 .word BOOT_STACK
/illumos-gate/usr/src/cmd/sgs/tools/common/
H A Dpiglatin.c28 * 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...]
/illumos-gate/usr/src/uts/common/sys/
H A Dfault.h64 unsigned int word[4]; member in struct:__anon7270
/illumos-gate/usr/src/cmd/sh/
H A Dblok.c43 #define busy(x) (Rcheat((x)->word) & BUSY)
85 while (!busy(q = p->word))
86 p->word = q->word;
91 blokp->word = p->word;
92 p->word = (struct blk *)
101 p = (struct blk *)(Rcheat(p->word) & ~BUSY);
129 blokstak->word = stakbsy;
131 bloktop->word
[all...]
/illumos-gate/usr/src/lib/libc/sparcv9/gen/
H A Dstrcmp.s95 sllx %o0, %g5, %g1 ! partial unaligned word from s2
101 andn %o4, %o0, %o3 ! ~word & 0x80808080
102 sub %o0, %o5, %o0 ! word - 0x01010101
103 andcc %o0, %o3, %g0 ! (word - 0x01010101) & ~word & 0x80808080
104 bz,a,pt %xcc, .doload ! no null byte in previous word from s2
105 ldx [%o1+8], %o0 ! next aligned word in s2
107 srlx %o0, %g4, %o3 ! bytes from aligned word from s2
108 or %g1, %o3, %g1 ! merge to get unaligned word from s2
109 ldx [%o1 + %o2], %o3 ! word fro
[all...]
/illumos-gate/usr/src/cmd/bart/
H A Dlutbl.c58 attr_keylookup(char *word) argument
65 if (strcasecmp(word, akp->ak_name) == 0)
/illumos-gate/usr/src/cmd/csh/
H A Dsh.parse.c37 * Perform aliasing on the word list lex
39 * If word 0 of a command has an alias, do it.
71 /* if (any(p1->word[0], ";&\n")) */ /* For char -> tchar */
72 if (p1->word[0] == ';' ||
73 p1->word[0] == '&' ||
74 p1->word[0] == '\n')
92 switch (p->word[0]) {
105 if (p->next != p2 && eq(p->next->word, S_AND /* "&"*/))
135 if (p1->word[0] == '(') {
136 for (p2 = p2->prev; p2->word[
[all...]
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dstrcpy.s58 ! Methods exist to handle per-byte, half-word, and word sized
66 andcc %o1, 3, %o4 ! src word aligned ?
95 andcc %o2, 3, %o1 ! destination word aligned?
100 lduw [%o2 + %o3], %o1 ! src word
102 andn %o5, %o1, %g1 ! ~word & 0x80808080
103 sub %o1, %o4, %o1 ! word - 0x01010101
104 andcc %o1, %g1, %g0 ! ((word - 0x01010101) & ~word & 0x80808080)
105 add %o1, %o4, %o1 ! restore word
[all...]

Completed in 73 milliseconds

1234567891011>>