Home | History | Annotate | Download | only in dfp

Lines Matching refs:striped

341         final int offset = 4;  // Starting offset into Striped
342 final char[] striped = new char[getRadixDigits() * rsize + offset * 2];
428 striped[0] = '0';
429 striped[1] = '0';
430 striped[2] = '0';
431 striped[3] = '0';
455 striped[q] = fpdecimal.charAt(p);
469 if (striped[q] == '0') {
493 if (striped[p] != '0') {
508 striped[++p] = '0';
515 mant[i] = (striped[q] - '0') * 1000 +
516 (striped[q+1] - '0') * 100 +
517 (striped[q+2] - '0') * 10 +
518 (striped[q+3] - '0');
525 if (q < striped.length) {
527 round((striped[q] - '0')*1000);