Home
last modified time | relevance | path

Searched refs:xVal (Results 1 – 10 of 10) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
DNat224.java595 long c = 0, xVal = x & M; in mulByWord() local
596 c += xVal * (z[0] & M); in mulByWord()
599 c += xVal * (z[1] & M); in mulByWord()
602 c += xVal * (z[2] & M); in mulByWord()
605 c += xVal * (z[3] & M); in mulByWord()
608 c += xVal * (z[4] & M); in mulByWord()
611 c += xVal * (z[5] & M); in mulByWord()
614 c += xVal * (z[6] & M); in mulByWord()
622 long c = 0, xVal = x & M; in mulByWordAddTo() local
623 c += xVal * (z[0] & M) + (y[0] & M); in mulByWordAddTo()
[all …]
DNat256.java644 long c = 0, xVal = x & M; in mulByWord() local
645 c += xVal * (z[0] & M); in mulByWord()
648 c += xVal * (z[1] & M); in mulByWord()
651 c += xVal * (z[2] & M); in mulByWord()
654 c += xVal * (z[3] & M); in mulByWord()
657 c += xVal * (z[4] & M); in mulByWord()
660 c += xVal * (z[5] & M); in mulByWord()
663 c += xVal * (z[6] & M); in mulByWord()
666 c += xVal * (z[7] & M); in mulByWord()
674 long c = 0, xVal = x & M; in mulByWordAddTo() local
[all …]
DNat192.java500 long c = 0, xVal = x & M; in mulWordAddExt() local
501 c += xVal * (yy[yyOff + 0] & M) + (zz[zzOff + 0] & M); in mulWordAddExt()
504 c += xVal * (yy[yyOff + 1] & M) + (zz[zzOff + 1] & M); in mulWordAddExt()
507 c += xVal * (yy[yyOff + 2] & M) + (zz[zzOff + 2] & M); in mulWordAddExt()
510 c += xVal * (yy[yyOff + 3] & M) + (zz[zzOff + 3] & M); in mulWordAddExt()
513 c += xVal * (yy[yyOff + 4] & M) + (zz[zzOff + 4] & M); in mulWordAddExt()
516 c += xVal * (yy[yyOff + 5] & M) + (zz[zzOff + 5] & M); in mulWordAddExt()
527 long c = 0, xVal = x & M; in mul33DWordAdd() local
529 c += xVal * y00 + (z[zOff + 0] & M); in mul33DWordAdd()
533 c += xVal * y01 + y00 + (z[zOff + 1] & M); in mul33DWordAdd()
[all …]
DNat.java482 long c = 0, xVal = x & M; in mulWord() local
486 c += xVal * (y[i] & M); in mulWord()
496 long c = 0, xVal = x & M; in mulWord() local
500 c += xVal * (y[yOff + i] & M); in mulWord()
510 long c = 0, xVal = x & M; in mulWordAddTo() local
514 c += xVal * (y[yOff + i] & M) + (z[zOff + i] & M); in mulWordAddTo()
525 long c = 0, xVal = x & M; in mulWordDwordAddAt() local
526 c += xVal * (y & M) + (z[zPos + 0] & M); in mulWordDwordAddAt()
529 c += xVal * (y >>> 32) + (z[zPos + 1] & M); in mulWordDwordAddAt()
749 long xVal = (x[--j] & M); in square() local
[all …]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DXYGraphWidget.java451 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 …]
DSimpleXYSeries.java193 public void setXY(Number xVal, Number yVal, int index) { in setXY() argument
197 xVals.set(index, xVal); in setXY()
DBarRenderer.java304 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()
DXYPlot.java309 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/lib/Target/Sparc/
DSparcInstrFormats.td181 class F3_Sr<bits<2> opVal, bits<6> op3val, bit xVal, dag outs, dag ins,
183 bit x = xVal; // 1 for 64-bit shifts.
195 class F3_Si<bits<2> opVal, bits<6> op3val, bit xVal, dag outs, dag ins,
197 bit x = xVal; // 1 for 64-bit shifts.
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DLongArray.java1727 long xVal = x[xLen]; in squareInPlace() local
1728 x[--pos] = interleave2_32to64((int)(xVal >>> 32)); in squareInPlace()
1729 x[--pos] = interleave2_32to64((int)xVal); in squareInPlace()