/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/math/raw/ |
D | Nat224.java | 613 long c = 0, xVal = x & M; in mulByWord() local 614 c += xVal * (z[0] & M); in mulByWord() 617 c += xVal * (z[1] & M); in mulByWord() 620 c += xVal * (z[2] & M); in mulByWord() 623 c += xVal * (z[3] & M); in mulByWord() 626 c += xVal * (z[4] & M); in mulByWord() 629 c += xVal * (z[5] & M); in mulByWord() 632 c += xVal * (z[6] & M); in mulByWord() 640 long c = 0, xVal = x & M; in mulByWordAddTo() local 641 c += xVal * (z[0] & M) + (y[0] & M); in mulByWordAddTo() [all …]
|
D | Nat256.java | 747 long c = 0, xVal = x & M; in mulByWord() local 748 c += xVal * (z[0] & M); in mulByWord() 751 c += xVal * (z[1] & M); in mulByWord() 754 c += xVal * (z[2] & M); in mulByWord() 757 c += xVal * (z[3] & M); in mulByWord() 760 c += xVal * (z[4] & M); in mulByWord() 763 c += xVal * (z[5] & M); in mulByWord() 766 c += xVal * (z[6] & M); in mulByWord() 769 c += xVal * (z[7] & M); in mulByWord() 777 long c = 0, xVal = x & M; in mulByWordAddTo() local [all …]
|
D | Nat192.java | 599 long c = 0, xVal = x & M; in mulWordAddExt() local 600 c += xVal * (yy[yyOff + 0] & M) + (zz[zzOff + 0] & M); in mulWordAddExt() 603 c += xVal * (yy[yyOff + 1] & M) + (zz[zzOff + 1] & M); in mulWordAddExt() 606 c += xVal * (yy[yyOff + 2] & M) + (zz[zzOff + 2] & M); in mulWordAddExt() 609 c += xVal * (yy[yyOff + 3] & M) + (zz[zzOff + 3] & M); in mulWordAddExt() 612 c += xVal * (yy[yyOff + 4] & M) + (zz[zzOff + 4] & M); in mulWordAddExt() 615 c += xVal * (yy[yyOff + 5] & M) + (zz[zzOff + 5] & M); in mulWordAddExt() 626 long c = 0, xVal = x & M; in mul33DWordAdd() local 628 c += xVal * y00 + (z[zOff + 0] & M); in mul33DWordAdd() 632 c += xVal * y01 + y00 + (z[zOff + 1] & M); in mul33DWordAdd() [all …]
|
D | Nat.java | 775 long c = 0, xVal = x & M; in mulWord() local 779 c += xVal * (y[i] & M); in mulWord() 789 long c = 0, xVal = x & M; in mulWord() local 793 c += xVal * (y[yOff + i] & M); in mulWord() 803 long c = 0, xVal = x & M; in mulWordAddTo() local 807 c += xVal * (y[yOff + i] & M) + (z[zOff + i] & M); in mulWordAddTo() 818 long c = 0, xVal = x & M; in mulWordDwordAddAt() local 819 c += xVal * (y & M) + (z[zPos + 0] & M); in mulWordDwordAddAt() 822 c += xVal * (y >>> 32) + (z[zPos + 1] & M); in mulWordDwordAddAt() 1077 long xVal = (x[--j] & M); in square() local [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/raw/ |
D | Nat224.java | 613 long c = 0, xVal = x & M; in mulByWord() local 614 c += xVal * (z[0] & M); in mulByWord() 617 c += xVal * (z[1] & M); in mulByWord() 620 c += xVal * (z[2] & M); in mulByWord() 623 c += xVal * (z[3] & M); in mulByWord() 626 c += xVal * (z[4] & M); in mulByWord() 629 c += xVal * (z[5] & M); in mulByWord() 632 c += xVal * (z[6] & M); in mulByWord() 640 long c = 0, xVal = x & M; in mulByWordAddTo() local 641 c += xVal * (z[0] & M) + (y[0] & M); in mulByWordAddTo() [all …]
|
D | Nat256.java | 747 long c = 0, xVal = x & M; in mulByWord() local 748 c += xVal * (z[0] & M); in mulByWord() 751 c += xVal * (z[1] & M); in mulByWord() 754 c += xVal * (z[2] & M); in mulByWord() 757 c += xVal * (z[3] & M); in mulByWord() 760 c += xVal * (z[4] & M); in mulByWord() 763 c += xVal * (z[5] & M); in mulByWord() 766 c += xVal * (z[6] & M); in mulByWord() 769 c += xVal * (z[7] & M); in mulByWord() 777 long c = 0, xVal = x & M; in mulByWordAddTo() local [all …]
|
D | Nat192.java | 599 long c = 0, xVal = x & M; in mulWordAddExt() local 600 c += xVal * (yy[yyOff + 0] & M) + (zz[zzOff + 0] & M); in mulWordAddExt() 603 c += xVal * (yy[yyOff + 1] & M) + (zz[zzOff + 1] & M); in mulWordAddExt() 606 c += xVal * (yy[yyOff + 2] & M) + (zz[zzOff + 2] & M); in mulWordAddExt() 609 c += xVal * (yy[yyOff + 3] & M) + (zz[zzOff + 3] & M); in mulWordAddExt() 612 c += xVal * (yy[yyOff + 4] & M) + (zz[zzOff + 4] & M); in mulWordAddExt() 615 c += xVal * (yy[yyOff + 5] & M) + (zz[zzOff + 5] & M); in mulWordAddExt() 626 long c = 0, xVal = x & M; in mul33DWordAdd() local 628 c += xVal * y00 + (z[zOff + 0] & M); in mul33DWordAdd() 632 c += xVal * y01 + y00 + (z[zOff + 1] & M); in mul33DWordAdd() [all …]
|
D | Nat.java | 775 long c = 0, xVal = x & M; in mulWord() local 779 c += xVal * (y[i] & M); in mulWord() 789 long c = 0, xVal = x & M; in mulWord() local 793 c += xVal * (y[yOff + i] & M); in mulWord() 803 long c = 0, xVal = x & M; in mulWordAddTo() local 807 c += xVal * (y[yOff + i] & M) + (z[zOff + i] & M); in mulWordAddTo() 818 long c = 0, xVal = x & M; in mulWordDwordAddAt() local 819 c += xVal * (y & M) + (z[zPos + 0] & M); in mulWordDwordAddAt() 822 c += xVal * (y >>> 32) + (z[zPos + 1] & M); in mulWordDwordAddAt() 1077 long xVal = (x[--j] & M); in square() local [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/ |
D | Nat224.java | 609 long c = 0, xVal = x & M; in mulByWord() local 610 c += xVal * (z[0] & M); in mulByWord() 613 c += xVal * (z[1] & M); in mulByWord() 616 c += xVal * (z[2] & M); in mulByWord() 619 c += xVal * (z[3] & M); in mulByWord() 622 c += xVal * (z[4] & M); in mulByWord() 625 c += xVal * (z[5] & M); in mulByWord() 628 c += xVal * (z[6] & M); in mulByWord() 636 long c = 0, xVal = x & M; in mulByWordAddTo() local 637 c += xVal * (z[0] & M) + (y[0] & M); in mulByWordAddTo() [all …]
|
D | Nat256.java | 743 long c = 0, xVal = x & M; in mulByWord() local 744 c += xVal * (z[0] & M); in mulByWord() 747 c += xVal * (z[1] & M); in mulByWord() 750 c += xVal * (z[2] & M); in mulByWord() 753 c += xVal * (z[3] & M); in mulByWord() 756 c += xVal * (z[4] & M); in mulByWord() 759 c += xVal * (z[5] & M); in mulByWord() 762 c += xVal * (z[6] & M); in mulByWord() 765 c += xVal * (z[7] & M); in mulByWord() 773 long c = 0, xVal = x & M; in mulByWordAddTo() local [all …]
|
D | Nat192.java | 595 long c = 0, xVal = x & M; in mulWordAddExt() local 596 c += xVal * (yy[yyOff + 0] & M) + (zz[zzOff + 0] & M); in mulWordAddExt() 599 c += xVal * (yy[yyOff + 1] & M) + (zz[zzOff + 1] & M); in mulWordAddExt() 602 c += xVal * (yy[yyOff + 2] & M) + (zz[zzOff + 2] & M); in mulWordAddExt() 605 c += xVal * (yy[yyOff + 3] & M) + (zz[zzOff + 3] & M); in mulWordAddExt() 608 c += xVal * (yy[yyOff + 4] & M) + (zz[zzOff + 4] & M); in mulWordAddExt() 611 c += xVal * (yy[yyOff + 5] & M) + (zz[zzOff + 5] & M); in mulWordAddExt() 622 long c = 0, xVal = x & M; in mul33DWordAdd() local 624 c += xVal * y00 + (z[zOff + 0] & M); in mul33DWordAdd() 628 c += xVal * y01 + y00 + (z[zOff + 1] & M); in mul33DWordAdd() [all …]
|
D | Nat.java | 771 long c = 0, xVal = x & M; in mulWord() local 775 c += xVal * (y[i] & M); in mulWord() 785 long c = 0, xVal = x & M; in mulWord() local 789 c += xVal * (y[yOff + i] & M); in mulWord() 799 long c = 0, xVal = x & M; in mulWordAddTo() local 803 c += xVal * (y[yOff + i] & M) + (z[zOff + i] & M); in mulWordAddTo() 814 long c = 0, xVal = x & M; in mulWordDwordAddAt() local 815 c += xVal * (y & M) + (z[zPos + 0] & M); in mulWordDwordAddAt() 818 c += xVal * (y >>> 32) + (z[zPos + 1] & M); in mulWordDwordAddAt() 1073 long xVal = (x[--j] & M); in square() local [all …]
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
D | XYGraphWidget.java | 451 private void drawDomainTick(Canvas canvas, float xPix, Number xVal, in drawDomainTick() argument 473 … drawTickText(canvas, XYAxisType.DOMAIN, xVal, xPix + domainLabelHorizontalOffset, yPix, in drawDomainTick() 556 double xVal; in drawGrid() local 560 xVal = plot.getDomainOrigin().doubleValue() - i in drawGrid() 564 drawDomainTick(canvas, xPix, xVal, domainLabelPaint, in drawGrid() 567 drawDomainTick(canvas, xPix, xVal, domainLabelPaint, in drawGrid() 578 double xVal; in drawGrid() local 582 xVal = plot.getDomainOrigin().doubleValue() + i in drawGrid() 587 drawDomainTick(canvas, xPix, xVal, domainLabelPaint, in drawGrid() 590 drawDomainTick(canvas, xPix, xVal, domainLabelPaint, in drawGrid() [all …]
|
D | SimpleXYSeries.java | 193 public void setXY(Number xVal, Number yVal, int index) { in setXY() argument 197 xVals.set(index, xVal); in setXY()
|
D | BarRenderer.java | 304 public double yVal, xVal; field in BarRenderer.Bar 313 this.xVal = series.getX(seriesIndex).doubleValue(); in Bar() 314 …this.pixX = ValPixConverter.valToPix(xVal, getPlot().getCalculatedMinX().doubleValue(), getPlot().… in Bar()
|
D | XYPlot.java | 309 private boolean isXValWithinView(double xVal) { in isXValWithinView() argument 310 return (userMinY == null || xVal >= userMinY.doubleValue()) && in isXValWithinView() 311 userMaxY == null || xVal <= userMaxY.doubleValue(); in isXValWithinView()
|
/external/llvm-project/llvm/lib/Target/Sparc/ |
D | SparcInstrFormats.td | 196 class F3_Sr<bits<2> opVal, bits<6> op3val, bit xVal, dag outs, dag ins, 199 bit x = xVal; // 1 for 64-bit shifts. 211 class F3_Si<bits<2> opVal, bits<6> op3val, bit xVal, dag outs, dag ins, 214 bit x = xVal; // 1 for 64-bit shifts.
|
/external/llvm/lib/Target/Sparc/ |
D | SparcInstrFormats.td | 197 class F3_Sr<bits<2> opVal, bits<6> op3val, bit xVal, dag outs, dag ins, 200 bit x = xVal; // 1 for 64-bit shifts. 212 class F3_Si<bits<2> opVal, bits<6> op3val, bit xVal, dag outs, dag ins, 215 bit x = xVal; // 1 for 64-bit shifts.
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
D | SparcInstrFormats.td | 196 class F3_Sr<bits<2> opVal, bits<6> op3val, bit xVal, dag outs, dag ins, 199 bit x = xVal; // 1 for 64-bit shifts. 211 class F3_Si<bits<2> opVal, bits<6> op3val, bit xVal, dag outs, dag ins, 214 bit x = xVal; // 1 for 64-bit shifts.
|
/external/tensorflow/tensorflow/stream_executor/cuda/ |
D | cusparse_9_0.inc | 336 const float *xVal, const int *xInd, 344 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 349 const double *xVal, const int *xInd, 357 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 362 const cuComplex *xVal, 370 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 375 const cuDoubleComplex *xVal, 383 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 387 const float *xVal, const int *xInd, 396 return func_ptr(handle, nnz, xVal, xInd, y, resultDevHostPtr, idxBase); [all …]
|
D | cusparse_10_0.inc | 336 const float *xVal, const int *xInd, 344 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 349 const double *xVal, const int *xInd, 357 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 362 const cuComplex *xVal, 370 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 375 const cuDoubleComplex *xVal, 383 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 387 const float *xVal, const int *xInd, 396 return func_ptr(handle, nnz, xVal, xInd, y, resultDevHostPtr, idxBase); [all …]
|
D | cusparse_11_0.inc | 310 const float *xVal, const int *xInd, 318 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 323 const double *xVal, const int *xInd, 331 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 336 const cuComplex *xVal, 344 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 349 const cuDoubleComplex *xVal, 357 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 361 const float *y, float *xVal, 369 return func_ptr(handle, nnz, y, xVal, xInd, idxBase); [all …]
|
D | cusparse_10_1.inc | 350 const float *xVal, const int *xInd, 358 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 363 const double *xVal, const int *xInd, 371 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 376 const cuComplex *xVal, 384 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 389 const cuDoubleComplex *xVal, 397 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 401 const float *xVal, const int *xInd, 410 return func_ptr(handle, nnz, xVal, xInd, y, resultDevHostPtr, idxBase); [all …]
|
D | cusparse_10_2.inc | 350 const float *xVal, const int *xInd, 358 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 363 const double *xVal, const int *xInd, 371 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 376 const cuComplex *xVal, 384 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 389 const cuDoubleComplex *xVal, 397 return func_ptr(handle, nnz, alpha, xVal, xInd, y, idxBase); 401 const float *xVal, const int *xInd, 410 return func_ptr(handle, nnz, xVal, xInd, y, resultDevHostPtr, idxBase); [all …]
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/math/ec/ |
D | LongArray.java | 1735 long xVal = x[xLen]; in squareInPlace() local 1736 x[--pos] = interleave2_32to64((int)(xVal >>> 32)); in squareInPlace() 1737 x[--pos] = interleave2_32to64((int)xVal); in squareInPlace()
|