Home | History | Annotate | Download | only in config

Lines Matching refs:words

30     within the align frag. if(fragsize>4words) insert bu fragend+1
234 tic4x_gen_to_words (FLONUM_TYPE flonum, LITTLENUM_TYPE *words, int precision)
382 words[1] = 0x0000;
384 words[2] = words[3] = 0x0000;
392 words[0] = 0x8000;
400 words[0] = 0x77ff;
403 words[0] = 0x7f7f;
404 words[1] = 0xffff;
408 words[2] = 0x7fff;
409 words[3] = 0xffff;
417 words[0] = 0x7800;
419 words[0] = 0x7f80;
421 words[2] = 0x8000;
521 words[0] = exponent << (mantissa_bits+1-24);
522 words[0] |= sfract >> 24;
523 words[1] = sfract >> 8;
526 words[2] = sfract >> 16;
527 words[3] = sfract & 0xffff;
535 words[0] = sfract;
538 words[0] = sfract >> 16;
539 words[1] = sfract & 0xffff;
548 tic4x_atof (char *str, char what_kind, LITTLENUM_TYPE *words)
554 /* Number of 16-bit words in the format. */
611 words, precision);
691 /* Note that the size is in words
1058 /* [symbol] .usect ["]section-name["], size-in-words [, alignment-flag] */
2555 LITTLENUM_TYPE words[MAX_LITTLENUMS];
2584 prec = 4; /* 2 32-bit words */
2594 t = atof_ieee (input_line_pointer, type, words);
2596 t = tic4x_atof (input_line_pointer, type, words);
2603 /* SES: However it is required to put the words (32-bits) out in the
2605 order, while we keep the original order on successive words. */
2606 for (wordP = words; wordP<(words+prec) ; wordP+=2)
2608 if (wordP < (words + prec - 1)) /* Dump wordP[1] (if we have one). */
2955 /* Because we are talking lwords, not bytes, adjust alignment to do words */