HomeSort by relevance Sort by last modified time
    Searched refs:bound (Results 1 - 25 of 182) sorted by null

1 2 3 4 5 6 7 8

  /external/bison/lib/
getdtablesize.c 71 The number N can also be obtained as the upper bound for
77 unsigned int bound; local
78 for (bound = 0x10000; _setmaxstdio (bound) < 0; bound = bound / 2)
81 dtablesize = bound;
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
AreaUtils.java 54 * @param bound The bounds to calculate the volume from.
59 public static float calcScreenArea(BoundingVolume bound, float distance, float screenWidth) {
60 if (bound.getType() == BoundingVolume.Type.Sphere){
61 return calcScreenArea((BoundingSphere) bound, distance, screenWidth);
62 }else if (bound.getType() == BoundingVolume.Type.AABB){
63 return calcScreenArea((BoundingBox) bound, distance, screenWidth);
68 private static float calcScreenArea(BoundingSphere bound, float distance, float screenWidth) {
74 float radius = (bound.getRadius() * screenWidth) / (distance * 2);
78 private static float calcScreenArea(BoundingBox bound, float distance, float screenWidth) {
80 float radiusSquare = bound.getXExtent() * bound.getXExtent(
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java 107 * given least value (inclusive) and bound (exclusive).
110 * @param bound the upper bound (exclusive)
112 * to bound
115 public int nextInt(int least, int bound) {
116 if (least >= bound)
118 return nextInt(bound - least) + least;
125 * @param n the bound on the random number to be returned. Must be
152 * given least value (inclusive) and bound (exclusive).
155 * @param bound the upper bound (exclusive
    [all...]
  /external/webkit/Source/WebCore/storage/
IDBKeyRange.cpp 49 PassRefPtr<IDBKeyRange> IDBKeyRange::lowerBound(PassRefPtr<IDBKey> bound, bool open)
51 return IDBKeyRange::create(bound, 0, open, false);
54 PassRefPtr<IDBKeyRange> IDBKeyRange::upperBound(PassRefPtr<IDBKey> bound, bool open)
56 return IDBKeyRange::create(0, bound, false, open);
59 PassRefPtr<IDBKeyRange> IDBKeyRange::bound(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, bool lowerOpen, bool upperOpen) function in class:WebCore::IDBKeyRange
IDBKeyRange.idl 38 [ClassMethod] IDBKeyRange lowerBound(in IDBKey bound, in [Optional] boolean open);
39 [ClassMethod] IDBKeyRange upperBound(in IDBKey bound, in [Optional] boolean open);
40 [ClassMethod] IDBKeyRange bound(in IDBKey lower, in IDBKey upper, in [Optional] boolean lowerOpen, in [Optional] boolean upperOpen);
IDBKeyRange.h 52 static PassRefPtr<IDBKeyRange> lowerBound(PassRefPtr<IDBKey> bound, bool open = false);
53 static PassRefPtr<IDBKeyRange> upperBound(PassRefPtr<IDBKey> bound, bool open = false);
54 static PassRefPtr<IDBKeyRange> bound(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, bool lowerOpen = false, bool upperOpen = false);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
for_each.h 56 * @param bound Maximum number of elements processed.
67 difference_type bound,
74 output, bound);
80 output, bound);
86 output, bound);
93 output, bound);
  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 34 : next(0), bound(0)
50 size_t bound; member in class:mcld::Chunk
62 : next(0), bound(0) {
89 size_t bound; member in class:mcld::Chunk
164 size_type rest_num_elem = chunk_type::size() - m_pCurrent->bound;
168 result = m_pCurrent->data + m_pCurrent->bound;
169 m_pCurrent->bound += N;
179 if (chunk_type::size() == m_pCurrent->bound)
181 result = m_pCurrent->data + m_pCurrent->bound;
182 ++m_pCurrent->bound;
    [all...]
GCFactory.h 42 if ((m_Pos == m_pChunk->bound) && (0 == m_pChunk->next))
44 if (m_Pos == m_pChunk->bound) {
183 iterator(Alloc::m_pCurrent, Alloc::m_pCurrent->bound);
189 const_iterator(Alloc::m_pCurrent, Alloc::m_pCurrent->bound);
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 46 private final static Object bound = new Object(); field in class:HttpURLConnectionTest
66 synchronized (bound) {
68 bound.notify();
168 synchronized(bound) {
170 bound.wait(5000);
203 synchronized(bound) {
204 if (!server.started) bound.wait(5000);
207 synchronized(bound) {
208 if (!proxy.started) bound.wait(5000);
248 synchronized(bound) {
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
fisheye.rsh 38 const float bound = sqrt(bound2);
39 const float radius = 1.15f * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
fisheye_approx.rsh 38 const float bound = sqrt(bound2);
39 const float radius = 1.15f * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
fisheye.rsh 38 const float bound = sqrt(bound2);
39 const float radius = 1.15f * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
fisheye_approx.rsh 38 const float bound = sqrt(bound2);
39 const float radius = 1.15f * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
fisheye.rsh 38 const float bound = sqrt(bound2);
39 const float radius = 1.15f * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
fisheye_approx.rsh 38 const float bound = sqrt(bound2);
39 const float radius = 1.15f * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
  /external/smack/src/org/xbill/DNS/
UDPClient.java 43 private boolean bound = false; field in class:UDPClient
76 bound = true;
91 if (bound)
98 bound = true;
104 if (!bound)
  /external/skia/src/gpu/
GrClipMaskCache.h 121 const GrIRect& bound) {
130 back->acquireMask(fContext, clipGenID, desc, bound);
165 void getLastBound(GrIRect* bound) const {
169 bound->setEmpty();
175 *bound = back->fLastBound;
206 const GrIRect& bound) {
212 fLastBound = bound;
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
BoundedGenericMethodsTests.java 57 Type bound = bounds[0]; local
58 assertEquals(BoundedGenericMethods.class, bound);
94 Type bound = bounds[0]; local
96 assertEquals(BoundedGenericMethods.class, bound);
  /external/valgrind/main/drd/tests/
omp_prime.c 19 int bound = floor(sqrt ((double)v)) + 1; local
21 for (i = 2; i < bound; i++)
  /external/openssl/apps/
CA.pl 175 my ($infile, $outfile, $bound) = @_;
180 $flag = 1 if (/^-----BEGIN.*$bound/) ;
182 if (/^-----END.*$bound/) {
  /external/skia/tests/
DrawTextTest.cpp 21 static void create(SkBitmap* bm, SkIRect bound, SkBitmap::Config config) {
22 bm->setConfig(config, bound.width(), bound.height());
FontHostStreamTest.cpp 24 static void create(SkBitmap* bm, SkIRect bound, SkBitmap::Config config) {
25 bm->setConfig(config, bound.width(), bound.height());
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
FisheyeFilter.java 161 float bound = (float) Math.sqrt(bound2); local
162 float radius = 1.15f * bound;
165 (float) Math.atan(alpha / bound * (float) Math.sqrt(radius2 - bound2));
166 float factor = bound / max_radian;
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
sparse_weight_vector.h 84 // Bound getters and setters.
85 // True if there is a bound with val containing the bound. false otherwise.
92 void SetElementMinBound(const Key &fname, const double bound) {
93 wmin_[fname] = bound;
95 void SetElementMaxBound(const Key &fname, const double bound) {
96 wmax_[fname] = bound;
147 // Bound preserving updates.

Completed in 2021 milliseconds

1 2 3 4 5 6 7 8