HomeSort by relevance Sort by last modified time
    Searched full:startpoint (Results 1 - 25 of 38) sorted by null

1 2

  /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 67 void STDMETHODCALLTYPE SkDWriteGeometrySink::BeginFigure(D2D1_POINT_2F startPoint, D2D1_FIGURE_BEGIN figureBegin) {
68 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 340 final int startPoint, final int endPoint, final boolean vcardType21,
342 if (startPoint < 1 || startPoint > endPoint) {
343 Log.e(TAG, "internal error: startPoint or endPoint is not correct.");
362 callsCursor.moveToPosition(startPoint - 1);
365 if (startPoint == endPoint) {
383 if (startPoint == endPoint) {
404 public final int composeAndSendPhonebookVcards(Operation op, final int startPoint,
407 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/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());
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/
CubeWallpaper2.java 46 int startPoint;
141 mLines[i].startPoint = Integer.valueOf(idx[0]);
282 ThreeDPoint start = mRotatedPoints[l.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/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
Stripifier.java 385 int startPoint;
389 startPoint = findStartPoint(faceInfos, edgeInfos);
392 startPoint = (int) (((float) numFaces - 1) * meshJump);
394 if (startPoint == -1) {
395 startPoint = (int) (((float) numFaces - 1) * meshJump);
402 int i = startPoint;
415 } while (i != startPoint);
    [all...]
  /external/skia/src/device/xps/
SkXPSDevice.cpp 840 XPS_POINT startPoint;
843 startPoint = xps_point(info.fPoint[0]);
849 startPoint = xps_point(info.fPoint[0], localMatrix);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d2d1helper.h 132 D2D1FORCEINLINE D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES LinearGradientBrushProperties(const D2D1_POINT_2F &startPoint, const D2D1_POINT_2F &endPoint) {
133 D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES r = {startPoint, endPoint};
  /external/pdfium/core/src/fxge/win32/
fx_win32_gdipext.cpp 875 int startpoint = 0; local
    [all...]

Completed in 1527 milliseconds

1 2