HomeSort by relevance Sort by last modified time
    Searched refs:bound (Results 1 - 25 of 326) 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;
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadLocalRandomTest.java 29 // max sampled int bound
32 // Max sampled long bound
122 * nextInt(least >= bound) throws IllegalArgumentException;
132 * nextInt(bound) returns 0 <= value < bound;
136 // sample bound space across prime number increments
137 for (int bound = 2; bound < MAX_INT_BOUND; bound += 524959) {
138 int f = ThreadLocalRandom.current().nextInt(bound);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java 106 * given least value (inclusive) and bound (exclusive).
109 * @param bound the upper bound (exclusive)
111 * to bound
114 public int nextInt(int least, int bound) {
115 if (least >= bound)
117 return nextInt(bound - least) + least;
124 * @param n the bound on the random number to be returned. Must be
151 * given least value (inclusive) and bound (exclusive).
154 * @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 };
  /external/libcxx/test/algorithms/alg.sorting/alg.binary.search/lower.bound/
Android.mk 17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.binary.search/lower.bound/Android.mk
19 test_name := algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound
23 test_name := algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound_comp
  /external/libcxx/test/algorithms/alg.sorting/alg.binary.search/upper.bound/
Android.mk 17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.binary.search/upper.bound/Android.mk
19 test_name := algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound
23 test_name := algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound_comp
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyRange.idl 35 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange lowerBound(any bound, [Default=Undefined] optional boolean open);
36 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange upperBound(any bound, [Default=Undefined] optional boolean open);
37 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange bound(any lower, any upper, [Default=Undefined] optional boolean lowerOpen, [Default=Undefined] optional boolean upperOpen);
IDBKeyRange.cpp 102 IDBKey* bound = scriptValueToIDBKey(toIsolate(context), boundValue); local
103 if (!bound || !bound->isValid()) {
108 return IDBKeyRange::create(bound, 0, open ? LowerBoundOpen : LowerBoundClosed, UpperBoundOpen);
113 IDBKey* bound = scriptValueToIDBKey(toIsolate(context), boundValue); local
114 if (!bound || !bound->isValid()) {
119 return IDBKeyRange::create(0, bound, LowerBoundOpen, open ? UpperBoundOpen : UpperBoundClosed);
122 IDBKeyRange* IDBKeyRange::bound(ExecutionContext* context, const ScriptValue& lowerValue, const ScriptValue& upperValue, bool lowerOpen, bool upperOpen, ExceptionState& exceptionState) function in class:WebCore::IDBKeyRange
IDBKeyRange.h 70 static IDBKeyRange* lowerBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&);
71 static IDBKeyRange* upperBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&);
72 static IDBKeyRange* bound(ExecutionContext*, const ScriptValue& lower, const ScriptValue& upper, bool lowerOpen, bool upperOpen, ExceptionState&);
  /cts/tests/tests/permission/src/android/permission/cts/
AppWidgetManagerPermissionTest.java 54 final boolean bound = mAppWidgetManager.bindAppWidgetIdIfAllowed(1,
56 assertFalse("Was able to call bindAppWidgetId", bound);
  /hardware/intel/img/libdrm/libdrm/nouveau/
nouveau_grobj.h 37 } bound; member in struct:nouveau_grobj
  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 31 : next(0), bound(0)
47 size_t bound; member in class:mcld::Chunk
59 : next(0), bound(0) {
86 size_t bound; member in class:mcld::Chunk
161 size_type rest_num_elem = chunk_type::size() - m_pCurrent->bound;
165 result = m_pCurrent->data + m_pCurrent->bound;
166 m_pCurrent->bound += N;
176 if (chunk_type::size() == m_pCurrent->bound)
178 result = m_pCurrent->data + m_pCurrent->bound;
179 ++m_pCurrent->bound;
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 44 private final static Object bound = new Object(); field in class:HttpURLConnectionTest
64 synchronized (bound) {
66 bound.notify();
166 synchronized(bound) {
168 bound.wait(5000);
201 synchronized(bound) {
202 if (!server.started) bound.wait(5000);
205 synchronized(bound) {
206 if (!proxy.started) bound.wait(5000);
246 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:__anon12961
  /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/WebKit/Source/bindings/v8/
ExceptionMessages.h 71 static String indexExceedsMaximumBound(const char* name, NumberType given, NumberType bound)
73 bool eq = given == bound;
81 result.append("the maximum bound (");
82 result.append(formatNumber(bound));
88 static String indexExceedsMinimumBound(const char* name, NumberType given, NumberType bound)
90 bool eq = given == bound;
98 result.append("the minimum bound (");
99 result.append(formatNumber(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

Completed in 912 milliseconds

1 2 3 4 5 6 7 8 91011>>