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.java719 long c = 0, xVal = x & M; in mulByWord() local
720 c += xVal * (z[0] & M); in mulByWord()
723 c += xVal * (z[1] & M); in mulByWord()
726 c += xVal * (z[2] & M); in mulByWord()
729 c += xVal * (z[3] & M); in mulByWord()
732 c += xVal * (z[4] & M); in mulByWord()
735 c += xVal * (z[5] & M); in mulByWord()
738 c += xVal * (z[6] & M); in mulByWord()
741 c += xVal * (z[7] & M); in mulByWord()
749 long c = 0, xVal = x & M; in mulByWordAddTo() local
[all …]
DNat192.java574 long c = 0, xVal = x & M; in mulWordAddExt() local
575 c += xVal * (yy[yyOff + 0] & M) + (zz[zzOff + 0] & M); in mulWordAddExt()
578 c += xVal * (yy[yyOff + 1] & M) + (zz[zzOff + 1] & M); in mulWordAddExt()
581 c += xVal * (yy[yyOff + 2] & M) + (zz[zzOff + 2] & M); in mulWordAddExt()
584 c += xVal * (yy[yyOff + 3] & M) + (zz[zzOff + 3] & M); in mulWordAddExt()
587 c += xVal * (yy[yyOff + 4] & M) + (zz[zzOff + 4] & M); in mulWordAddExt()
590 c += xVal * (yy[yyOff + 5] & M) + (zz[zzOff + 5] & M); in mulWordAddExt()
601 long c = 0, xVal = x & M; in mul33DWordAdd() local
603 c += xVal * y00 + (z[zOff + 0] & M); in mul33DWordAdd()
607 c += xVal * y01 + y00 + (z[zOff + 1] & M); in mul33DWordAdd()
[all …]
DNat.java487 long c = 0, xVal = x & M; in mulWord() local
491 c += xVal * (y[i] & M); in mulWord()
501 long c = 0, xVal = x & M; in mulWord() local
505 c += xVal * (y[yOff + i] & M); in mulWord()
515 long c = 0, xVal = x & M; in mulWordAddTo() local
519 c += xVal * (y[yOff + i] & M) + (z[zOff + i] & M); in mulWordAddTo()
530 long c = 0, xVal = x & M; in mulWordDwordAddAt() local
531 c += xVal * (y & M) + (z[zPos + 0] & M); in mulWordDwordAddAt()
534 c += xVal * (y >>> 32) + (z[zPos + 1] & M); in mulWordDwordAddAt()
789 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.td197 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DLongArray.java1729 long xVal = x[xLen]; in squareInPlace() local
1730 x[--pos] = interleave2_32to64((int)(xVal >>> 32)); in squareInPlace()
1731 x[--pos] = interleave2_32to64((int)xVal); in squareInPlace()