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

1 2 3 4

  /external/bzip2/
blocksort.c 350 UInt16* quadrant,
414 s1 = quadrant[i1]; s2 = quadrant[i2];
420 s1 = quadrant[i1]; s2 = quadrant[i2];
426 s1 = quadrant[i1]; s2 = quadrant[i2];
432 s1 = quadrant[i1]; s2 = quadrant[i2];
438 s1 = quadrant[i1]; s2 = quadrant[i2]
1039 UInt16* quadrant; local
    [all...]
  /external/llvm/test/CodeGen/X86/
phys_subreg_coalesce-3.ll 9 define void @foo(i32* nocapture %quadrant, i32* nocapture %ptr, i32 %bbSize, i32 %bbStart, i32 %shifts) nounwind ssp {
32 %4 = getelementptr inbounds i32, i32* %quadrant, i32 %1 ; <i32*> [#uses=1]
  /external/swiftshader/third_party/LLVM/test/CodeGen/X86/
phys_subreg_coalesce-3.ll 9 define void @foo(i32* nocapture %quadrant, i32* nocapture %ptr, i32 %bbSize, i32 %bbStart, i32 %shifts) nounwind ssp {
32 %4 = getelementptr inbounds i32* %quadrant, i32 %1 ; <i32*> [#uses=1]
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
FolderIconPreviewVerifier.java 62 * @return True iff the icon is in the 2x2 upper left quadrant of the Folder.
66 // left quadrant. For all other pages, we need to check the row and col.
ClippedFolderIconLayoutRule.java 92 // upper left quadrant (to achieve horizontal and vertical symmetry).
  /prebuilts/go/darwin-x86/src/math/
atan2.go 8 // the signs of the two to determine the quadrant
62 // Call atan and determine the quadrant.
  /prebuilts/go/linux-x86/src/math/
atan2.go 8 // the signs of the two to determine the quadrant
62 // Call atan and determine the quadrant.
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
keypoint_detector.h 65 // Quadrant is an argument 0-3 which refers to the quadrant of the image in
67 int FindFastKeypoints(const Image<uint8_t>& frame, const int quadrant,
118 // The current quadrant of the image to detect FAST keypoints in.
keypoint_detector.cc 406 const int quadrant,
454 // Set up the bounds on the region to test based on the passed-in quadrant.
458 kFastBorderBuffer + ((quadrant % 2 == 0) ? 0 : quadrant_width);
460 kFastBorderBuffer + ((quadrant < 2) ? 0 : quadrant_height);
542 // Increment the current quadrant.
  /development/samples/Snake/src/com/example/android/snake/
Snake.java 86 // Direction will be [0,1,2,3] depending on quadrant
91 // Direction is same as the quadrant which was clicked
  /external/dng_sdk/source/
dng_image.cpp 303 // Find quadrant split coordinates.
308 // Top-left quadrant.
332 // Top-right quadrant.
356 // Bottom-left quadrant.
380 // Bottom-right quadrant.
  /external/v8/src/base/
ieee754.h 33 // the two arguments to determine the quadrant of the result.
  /toolchain/binutils/binutils-2.27/gas/config/
obj-som.c 232 quadrant. */
254 quadrant. */
  /external/valgrind/exp-sgcheck/tests/
hackedbz2.c 3085 UInt16* quadrant; local
    [all...]
  /external/valgrind/memcheck/tests/
origin5-bz2.c 3076 UInt16* quadrant; local
    [all...]
varinfo6.c 3114 UInt16* quadrant; local
    [all...]
  /external/valgrind/perf/
bz2.c 3074 UInt16* quadrant; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
FastMath.java 2496 int quadrant = 0; local
2592 int quadrant = 0; local
2677 int quadrant = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_cmath.py 12 (INF, 0.0), # 1st quadrant
17 (-0.0, INF), # 2nd quadrant
22 (-INF, -0.0), # 3rd quadrant
27 (0.0, -INF), # 4th quadrant
  /external/python/cpython2/Lib/test/
test_cmath.py 12 (INF, 0.0), # 1st quadrant
17 (-0.0, INF), # 2nd quadrant
22 (-INF, -0.0), # 3rd quadrant
27 (0.0, -INF), # 4th quadrant
  /external/python/cpython3/Lib/test/
test_cmath.py 16 (INF, 0.0), # 1st quadrant
21 (-0.0, INF), # 2nd quadrant
26 (-INF, -0.0), # 3rd quadrant
31 (0.0, -INF), # 4th quadrant
  /external/vulkan-validation-layers/libs/glm/gtx/
compatibility.hpp 80 template <typename T, precision P> GLM_FUNC_QUALIFIER T atan2(T x, T y){return atan(x, y);} //!< \brief Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility)
81 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec2<T, P> atan2(const detail::tvec2<T, P>& x, const detail::tvec2<T, P>& y){return atan(x, y);} //!< \brief Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility)
82 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec3<T, P> atan2(const detail::tvec3<T, P>& x, const detail::tvec3<T, P>& y){return atan(x, y);} //!< \brief Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility)
83 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec4<T, P> atan2(const detail::tvec4<T, P>& x, const detail::tvec4<T, P>& y){return atan(x, y);} //!< \brief Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
som.h 130 unsigned int quadrant :2; member in struct:subspace_dictionary_record
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_cmath.py 12 (INF, 0.0), # 1st quadrant
17 (-0.0, INF), # 2nd quadrant
22 (-INF, -0.0), # 3rd quadrant
27 (0.0, -INF), # 4th quadrant
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_cmath.py 12 (INF, 0.0), # 1st quadrant
17 (-0.0, INF), # 2nd quadrant
22 (-INF, -0.0), # 3rd quadrant
27 (0.0, -INF), # 4th quadrant

Completed in 1018 milliseconds

1 2 3 4