HomeSort by relevance Sort by last modified time
    Searched full:nearest (Results 201 - 225 of 1437) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/
CubemapLoader.java 107 public TextureFilter minFilter = TextureFilter.Nearest;
108 public TextureFilter magFilter = TextureFilter.Nearest;
TextureLoader.java 107 public TextureFilter minFilter = TextureFilter.Nearest;
108 public TextureFilter magFilter = TextureFilter.Nearest;
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
BitmapFontDistanceFieldTest.java 115 TextureFilter minFilter = linearFiltering ? TextureFilter.MipMapLinearNearest : TextureFilter.Nearest;
116 TextureFilter magFilter = linearFiltering ? TextureFilter.Linear : TextureFilter.Nearest;
LabelTest.java 48 skin.getAtlas().getTextures().iterator().next().setFilter(TextureFilter.Nearest, TextureFilter.Nearest);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
MultipleRenderTargetTest.java 501 result.setFilter(Texture.TextureFilter.Nearest, Texture.TextureFilter.Nearest);
532 Texture diffuse = createColorTexture(Texture.TextureFilter.Nearest, Texture.TextureFilter.Nearest, GL30.GL_RGBA8,
535 Texture normal = createColorTexture(Texture.TextureFilter.Nearest, Texture.TextureFilter.Nearest, GL30.GL_RGB8,
538 Texture position = createColorTexture(Texture.TextureFilter.Nearest, Texture.TextureFilter.Nearest, GL30.GL_RGB8,
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyInstrFloat.td 37 defm NEAREST : UnaryFP<fnearbyint, "nearest">;
  /external/opencv3/3rdparty/include/ffmpeg_/libavutil/
mathematics.h 72 AV_ROUND_NEAR_INF = 5, ///< Round to nearest and halfway cases away from zero.
84 * Rescale a 64-bit integer with rounding to nearest.
rational.h 145 * Find the nearest value in q_list to q.
147 * @return the index of the nearest value found in the array
  /external/opencv3/modules/flann/include/opencv2/flann/
composite_index.h 66 * This index builds a kd-tree index and a k-means index and performs nearest
173 * \brief Method that searches for nearest-neighbours
result_set.h 81 * Is used in those cases where the nearest neighbour algorithm used does not
149 * K-Nearest neighbour result set. Ensures that the elements inserted are unique
444 /** Class that holds the radius nearest neighbors
  /external/opencv3/modules/flann/include/opencv2/
flann.hpp 54 Nearest Neighbors) is a library that contains a collection of algorithms optimized for fast nearest
104 /** @brief The FLANN nearest neighbor index class. This class is templated with the type of elements for which
114 /** @brief Constructs a nearest neighbor search index for a given dataset.
206 /** @brief Performs a K-nearest neighbor search for a given query point using the index.
209 @param indices Vector that will contain the indices of the K-nearest neighbors found. It must have
211 @param dists Vector that will contain the distances to the K-nearest neighbors found. It must have
213 @param knn Number of nearest neighbors to search for.
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
RobustMatcher.cpp 109 matcher_->knnMatch(descriptors_frame, descriptors_model, matches12, 2); // return 2 nearest neighbours
112 matcher_->knnMatch(descriptors_model, descriptors_frame, matches21, 2); // return 2 nearest neighbours
  /external/tcpdump/
print-ipx.c 165 ND_PRINT((ndo, "ipx-sap-nearest-req"));
176 ND_PRINT((ndo, "ipx-sap-nearest-resp"));
  /external/vulkan-validation-layers/libs/glm/detail/
type_half.inl 187 // Round to nearest, round "0.5" up.
239 // Round to nearest, round "0.5" up
  /frameworks/base/core/java/android/hardware/camera2/utils/
ParamsUtils.java 54 * each corner (left, top, right, bottom) rounded towards the nearest integer bounding box.
75 * a new rectangle, with each corner (left, top, right, bottom) rounded towards the nearest
  /frameworks/rs/java/tests/SampleTest/src/com/android/rs/sample/
SampleRSActivity.java 129 // Wrap Nearest
135 // Clamp Nearest
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Intersector.java 228 /** Returns a point on the segment nearest to the specified point. */
229 public static Vector2 nearestSegmentPoint (Vector2 start, Vector2 end, Vector2 point, Vector2 nearest) {
231 if (length2 == 0) return nearest.set(start);
233 if (t < 0) return nearest.set(start);
234 if (t > 1) return nearest.set(end);
235 return nearest.set(start.x + t * (end.x - start.x), start.y + t * (end.y - start.y));
238 /** Returns a point on the segment nearest to the specified point. */
240 Vector2 nearest) {
244 if (length2 == 0) return nearest.set(startX, startY);
246 if (t < 0) return nearest.set(startX, startY)
    [all...]
  /external/llvm/lib/Analysis/
LoopInfo.cpp 453 // Map unloop's immediate subloops to their nearest reachable parents. Nested
455 // subloop's new parent will be the nearest loop reachable from either its own
483 // propagating the nearest loop from sucessors to predecessors.
510 // Iterate over the postorder list of blocks, propagating the nearest loop
566 /// getNearestLoop - Return the nearest parent loop among this block's
568 /// the nearest parent of the subloop's exits.
585 // Get the current nearest parent of the Subloop exits, initially Unloop.
614 // Get the current nearest parent of the Subloop's exits.
625 // Remember the nearest parent loop among successors or subloop exits.
  /external/deqp/modules/gles3/functional/
es3fTextureSwizzleTests.cpp 157 renderParams.sampler = tcu::Sampler(tcu::Sampler::CLAMP_TO_EDGE, tcu::Sampler::CLAMP_TO_EDGE, tcu::Sampler::CLAMP_TO_EDGE, tcu::Sampler::NEAREST, tcu::Sampler::NEAREST);
173 // Setup nearest neighbor filtering and clamp-to-edge.
  /external/opencv3/3rdparty/libjasper/jasper/
jas_fix.h 323 /* Round a fixed-point number to the nearest integer. */
330 /* Round a fixed-point number to the nearest integer in the direction of
335 /* Round a fixed-point number to the nearest integer in the direction
  /bionic/libm/include/arm64/machine/
fenv.h 38 * * 00 - Round to Nearest (RN) mode;
  /bionic/libm/include/mips/machine/
fenv.h 65 * 00 - rounding to nearest (RN)
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_rem_pio2f.c 58 /* Use a specialized rint() to get fn. Assume round-to-nearest. */
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
RippleDrawableTest.java 78 // truncated, dimensions are rounded to the nearest pixel.
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/opc_throw/
Test_opc_throw.java 70 * @title Nearest matching catch must be executed in case of exception

Completed in 735 milliseconds

1 2 3 4 5 6 7 891011>>