Home | History | Annotate | Download | only in config

Lines Matching refs:words

142 make_invalid_floating_point_number (LITTLENUM_TYPE *words)
144 *words = 0x8000; /* Floating Reserved Operand Code. */
151 int *precisionP, /* Number of 16-bit words in the float. */
195 LITTLENUM_TYPE *words) /* Build the binary here. */
203 int precision; /* Number of 16-bit words in the format. */
216 make_invalid_floating_point_number (words);
230 make_invalid_floating_point_number (words);
233 else if (flonum_gen2vax (what_kind, &f, words))
247 LITTLENUM_TYPE *words) /* Deliver answer here. */
257 make_invalid_floating_point_number (words);
263 memset (words, '\0', sizeof (LITTLENUM_TYPE) * precision);
277 make_invalid_floating_point_number (words);
315 make_invalid_floating_point_number (words);
323 lp = words;
332 /* The rest of the words are just mantissa bits. */
333 for (; lp < words + precision; lp++)
355 carry && (lp >= words);
363 if ((word1 ^ *words) & (1 << (LITTLENUM_NUMBER_OF_BITS - 1)))
365 make_invalid_floating_point_number (words);
399 LITTLENUM_TYPE words[MAXIMUM_NUMBER_OF_LITTLENUMS];
435 words);
439 converting words to chars. */
442 limit = words + (number_of_chars / sizeof (LITTLENUM_TYPE));
443 for (littlenumP = words; littlenumP < limit; littlenumP++)