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

1 2 3 4 5 6 7 8 91011>>

  /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/chromium_org/tools/telemetry/telemetry/page/actions/
gesture_common.js 11 var bound = el.getBoundingClientRect();
12 var rect = { top: bound.top,
13 left: bound.left,
14 width: bound.width,
15 height: bound.height };
  /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);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyRange.idl 34 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange lowerBound(any bound, [Default=Undefined] optional boolean open);
35 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange upperBound(any bound, [Default=Undefined] optional boolean open);
36 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange bound(any lower, any upper, [Default=Undefined] optional boolean lowerOpen, [Default=Undefined] optional boolean upperOpen);
IDBKeyRange.cpp 103 RefPtr<IDBKey> bound = scriptValueToIDBKey(&requestState, boundValue); local
104 if (!bound || !bound->isValid()) {
109 return IDBKeyRange::create(bound, 0, open ? LowerBoundOpen : LowerBoundClosed, UpperBoundOpen);
115 RefPtr<IDBKey> bound = scriptValueToIDBKey(&requestState, boundValue); local
116 if (!bound || !bound->isValid()) {
121 return IDBKeyRange::create(0, bound, LowerBoundOpen, open ? UpperBoundOpen : UpperBoundClosed);
124 PassRefPtr<IDBKeyRange> IDBKeyRange::bound(ExecutionContext* context, const ScriptValue& lowerValue, const ScriptValue& upperValue, bool lowerOpen, bool upperOpen, ExceptionState& exceptionState) function in class:WebCore::IDBKeyRange
IDBKeyRange.h 69 static PassRefPtr<IDBKeyRange> lowerBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&);
70 static PassRefPtr<IDBKeyRange> upperBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&);
71 static PassRefPtr<IDBKeyRange> bound(ExecutionContext*, const ScriptValue& lower, const ScriptValue& upper, bool lowerOpen, bool upperOpen, ExceptionState&);
  /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...]
  /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/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_context_2d.h 19 int bound; member in struct:__anon11527
ps_context_2d.cc 57 ctx->bound = 0;
68 ctx->bound =
94 if (!ctx->bound) return 0;
125 if (ctx->bound && ctx->image) {
  /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/chromium_org/third_party/skia/src/gpu/
GrClipMaskCache.h 117 const SkIRect& bound) {
126 back->acquireMask(fContext, clipGenID, desc, bound);
161 void getLastBound(SkIRect* bound) const {
165 bound->setEmpty();
171 *bound = back->fLastBound;
202 const SkIRect& bound) {
208 fLastBound = bound;
  /external/skia/src/gpu/
GrClipMaskCache.h 117 const SkIRect& bound) {
126 back->acquireMask(fContext, clipGenID, desc, bound);
161 void getLastBound(SkIRect* bound) const {
165 bound->setEmpty();
171 *bound = back->fLastBound;
202 const SkIRect& bound) {
208 fLastBound = bound;
  /external/chromium_org/third_party/lzma_sdk/
Bcj2.c 29 #define IF_BIT_0(p) ttt = *(p); bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound)
30 #define UPDATE_0(p) range = bound; *(p) = (CProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits)); NORMALIZE;
31 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >> kNumMoveBits)); NORMALIZE;
62 UInt32 bound; local
  /external/lzma/C/
Bcj2.c 29 #define IF_BIT_0(p) ttt = *(p); bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound)
30 #define UPDATE_0(p) range = bound; *(p) = (CProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits)); NORMALIZE;
31 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >> kNumMoveBits)); NORMALIZE;
62 UInt32 bound; local
  /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++)

Completed in 207 milliseconds

1 2 3 4 5 6 7 8 91011>>