/art/tools/dexfuzz/src/dexfuzz/ |
Timer.java | 33 private long startPoint; 53 startPoint = System.currentTimeMillis(); 61 elapsedTime += (endPoint - startPoint);
|
/libcore/luni/src/main/java/java/math/ |
Primality.java | 102 BigInt startPoint = ni.copy(); 105 // Fix startPoint to "next odd number": 106 startPoint.addPositiveInt(BigInt.remainderByPositiveInt(ni, 2) + 1); 109 // j = startPoint.bitLength(); 116 modules[i] = BigInt.remainderByPositiveInt(startPoint, primes[i]) - gapSize; 134 probPrime.putCopy(startPoint); 141 startPoint.addPositiveInt(gapSize);
|
Conversion.java | 273 int startPoint = currentChar + 1; 275 StringBuilder result1 = new StringBuilder(16 + endPoint - startPoint); 279 if (endPoint - startPoint >= 1) { 373 int startPoint = currentChar + 1; 375 StringBuilder result1 = new StringBuilder(16 + endPoint - startPoint); 379 if (endPoint - startPoint >= 1) {
|
/packages/apps/UnifiedEmail/src/com/android/mail/perf/ |
Timer.java | 156 PerformancePoint startPoint = values.get(i); 159 cpuDurationNanos += endPoint.mCpuTimeNanos - startPoint.mCpuTimeNanos; 160 wallDurationMillis += endPoint.mWallTimeMillis - startPoint.mWallTimeMillis; 211 PerformancePoint startPoint = sPerformanceCollector.get(tag); 212 if (startPoint == null) { 215 long cpuDurationNanos = endPoint.mCpuTimeNanos - startPoint.mCpuTimeNanos; 216 long wallDurationMillis = endPoint.mWallTimeMillis - startPoint.mWallTimeMillis;
|
/external/skia/src/utils/win/ |
SkDWriteGeometrySink.h | 37 void STDMETHODCALLTYPE BeginFigure(D2D1_POINT_2F startPoint, D2D1_FIGURE_BEGIN figureBegin) override;
|
SkDWriteGeometrySink.cpp | 68 void STDMETHODCALLTYPE SkDWriteGeometrySink::BeginFigure(D2D1_POINT_2F startPoint, D2D1_FIGURE_BEGIN figureBegin) { 69 fPath->moveTo(startPoint.x, startPoint.y);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
AnnotatedBytes.java | 138 AnnotationEndpoint startPoint = annotatations.get(cursor); 139 if (startPoint == null) { 154 AnnotationItem existingRangeAnnotation = startPoint.rangeAnnotation; 201 // If startPoint is null, we need to create a new one and add it to annotations. Otherwise, we just need to add 204 if (startPoint == null) { 205 startPoint = new AnnotationEndpoint(); 206 annotatations.put(cursor, startPoint); 209 startPoint.pointAnnotations.add(new AnnotationItem(indentLevel, formattedMsg)); 211 startPoint.rangeAnnotation = new AnnotationItem(indentLevel, formattedMsg);
|
/external/replicaisland/src/com/replica/replicaisland/ |
CollisionSystem.java | 98 * @param startPoint The starting point for the ray in world units. 109 public boolean castRay(Vector2 startPoint, Vector2 endPoint, Vector2 movementDirection, 117 executeRay(startPoint, endPoint, hitPoint, hitNormal, mTileSegmentTester) != -1) { 126 if (testSegmentAgainstList(mTemporarySegments, startPoint, endPoint, tempHitPoint, 131 final float firstCollisionDistance = startPoint.distance2(hitPoint); 132 if (firstCollisionDistance > startPoint.distance2(tempHitPoint)) { 235 public void addTemporarySurface(Vector2 startPoint, Vector2 endPoint, Vector2 normal, 239 newSegment.set(startPoint, endPoint, normal); 270 * @param startPoint The starting point for the ray, in world space. 277 protected int executeStraigtRay(final Vector2 startPoint, final Vector2 endPoint, [all...] |
SolidSurfaceComponent.java | 75 public void addSurface(Vector2 startPoint, Vector2 endPoint, Vector2 normal) { 76 mStartPoints.add(startPoint);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
BluetoothPbapVcardManager.java | 337 final int startPoint, final int endPoint, final boolean vcardType21, 339 if (startPoint < 1 || startPoint > endPoint) { 340 Log.e(TAG, "internal error: startPoint or endPoint is not correct."); 359 callsCursor.moveToPosition(startPoint - 1); 362 if (startPoint == endPoint) { 380 if (startPoint == endPoint) { 401 public final int composeAndSendPhonebookVcards(Operation op, final int startPoint, 404 if (startPoint < 1 || startPoint > endPoint) [all...] |
BluetoothPbapObexServer.java | 621 int startPoint = listStartOffset; 622 int endPoint = startPoint + requestSize; 628 for (int j = startPoint; j < endPoint; j++) { [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/direct/ |
DirectSearchOptimizer.java | 259 final double[] startPoint) 263 (startConfiguration.length != startPoint.length)) { 266 final double[] unit = new double[startPoint.length]; 286 buildSimplex(startPoint); 350 * @param startPoint the start point for optimization 354 private void buildSimplex(final double[] startPoint) 357 final int n = startPoint.length; 365 simplex[0] = new RealPointValuePair(startPoint, Double.NaN); 372 vertexI[k] = startPoint[k] + confI[k];
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/ |
DumbTextComponent.java | 79 private transient Point startPoint = new Point(); 571 offset2Point(selection.getStart(), true, startPoint); 574 caretPoint.setLocation(startPoint); 576 if (startPoint.y == endPoint.y) { 577 paintRect(g, startPoint.x, startPoint.y, 578 Math.max(1,endPoint.x-startPoint.x), lineHeight); 580 paintRect(g, startPoint.x, startPoint.y, 581 (mySize.width-xInset)-startPoint.x, lineHeight) [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/ |
DifferentiableMultivariateRealOptimizer.java | 100 * @param startPoint the start point for optimization 109 double[] startPoint)
|
DifferentiableMultivariateVectorialOptimizer.java | 102 * @param startPoint the start point for optimization 111 double[] startPoint)
|
MultivariateRealOptimizer.java | 89 * @param startPoint the start point for optimization 98 double[] startPoint)
|
MultiStartMultivariateRealOptimizer.java | 164 double[] startPoint) 178 (i == 0) ? startPoint : generator.nextVector());
|
MultiStartDifferentiableMultivariateRealOptimizer.java | 174 double[] startPoint) 189 (i == 0) ? startPoint : generator.nextVector());
|
MultiStartDifferentiableMultivariateVectorialOptimizer.java | 178 final double[] startPoint) 193 (i == 0) ? startPoint : generator.nextVector());
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/graphics/ |
ParticleEmitterBox2D.java | 40 final Vector2 startPoint = new Vector2(); 114 startPoint.set(x, y); 116 if (world != null) world.rayCast(rayCallBack, startPoint, endPoint);
|
/development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/ |
CubeWallpaper2.java | 46 int startPoint; 141 mLines[i].startPoint = Integer.parseInt(idx[0]); 282 ThreeDPoint start = mRotatedPoints[l.startPoint];
|
/external/pdfium/xfa/src/fxbarcode/pdf417/ |
BC_PDF417ScanningDecoder.h | 55 CBC_ResultPoint startPoint,
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/ |
AbstractScalarDifferentiableOptimizer.java | 179 final double[] startPoint) 191 point = startPoint.clone();
|
AbstractLeastSquaresOptimizer.java | 328 final double[] startPoint) 346 this.point = startPoint.clone();
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/ |
ImageProcessor.java | 382 * axis (depending on value of xAxis) for the first non-transparent pixel if startPoint is true, or the first transparent pixel 383 * if startPoint is false. Returns 0 if none found, as 0 is considered an invalid split point being in the outer border which 385 static private int getSplitPoint (WritableRaster raster, String name, int startX, int startY, boolean startPoint, boolean xAxis) { 390 int breakA = startPoint ? 255 : 0; 403 if (!startPoint && (rgba[0] != 0 || rgba[1] != 0 || rgba[2] != 0 || rgba[3] != 255)) splitError(x, y, rgba, name);
|