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

1 2 3 4 5 6 7

  /external/v8/test/mjsunit/compiler/
regress-serialized-slots.js 41 function bound()
48 return bound;
  /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;
  /hardware/ti/omap4-aah/libtiutils/
UtilsCommon.h 49 const T & bound(const T & min, const T & x, const T & max);
82 inline const T & bound(const T & min, const T & x, const T & max) { function in namespace:Ti
  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
EstimatedParameter.java 25 * a bound flag. The value of bound parameters is considered trusted
49 /** Indicator for bound parameters
52 private boolean bound; field in class:EstimatedParameter
63 bound = false;
68 * bound flag
71 * @param bound flag, should be true if the parameter is bound
75 boolean bound) {
78 this.bound = bound
    [all...]
  /external/valgrind/drd/tests/
omp_prime.c 19 int bound = floor(sqrt ((double)v)) + 1; local
21 for (i = 2; i < bound; i++)
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
util.rb 127 # Returns self if above the given lower bound, or
129 # otherwise returns the the bound of which the
132 # 4.bound(3) #=> 4
133 # 4.bound(5) #=> 5
134 # 4.bound(2,7) #=> 4
135 # 9.bound(2,7) #=> 7
136 # 1.bound(2,7) #=> 2
140 def bound( lower, upper=nil ) method in class:Integer
  /external/mesa3d/src/egl/main/
eglsurface.c 50 EGLint bound = surf->Config->MaxSwapInterval; local
51 if (interval >= bound) {
52 interval = bound;
55 bound = surf->Config->MinSwapInterval;
56 if (interval < bound)
57 interval = bound;
  /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
  /external/skia/src/gpu/
GrLayerHoister.cpp 253 const SkRect bound = SkRect::Make(layer->rect()); local
254 atlasCanvas->clipRect(bound);
262 initialCTM.preTranslate(bound.fLeft, bound.fTop);
345 const SkRect bound = SkRect::Make(layer->rect()); local
346 layerCanvas->clipRect(bound);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
FisheyeFilter.java 155 float bound = (float) Math.sqrt(bound2); local
156 float radius = 1.15f * bound;
159 (float) Math.atan(alpha / bound * (float) Math.sqrt(radius2 - bound2));
160 float factor = bound / max_radian;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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);
WildcardTypeTest.java 64 Type bound = bounds[0]; local
65 assertEquals(BoundedWildcardsGenericMethods.class, bound);
119 Type bound = bounds[0]; local
121 assertEquals(BoundedWildcardsGenericMethods.class, bound);
  /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...]
  /external/eigen/Eigen/src/Core/products/
SelfadjointMatrixVector.h 75 Index bound = (std::max)(Index(0),size-8) & 0xfffffffe; local
77 bound = size - bound;
79 for (Index j=FirstTriangular ? bound : 0;
80 j<(FirstTriangular ? size : bound);j+=2)
148 for (Index j=FirstTriangular ? 0 : bound;j<(FirstTriangular ? bound : size);j++)
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state_draw.c 407 bool bound[PIPE_MAX_ATTRIBS] = {}; local
447 if (!bound[ve->vertex_buffer_index]) {
449 bound[ve->vertex_buffer_index] = true;
  /external/valgrind/coregrind/m_debuginfo/
tytypes.c 114 if (te->Te.Bound.knownL)
115 VG_(printf)("%lld", te->Te.Bound.boundL);
119 if (te->Te.Bound.knownU)
120 VG_(printf)("%lld", te->Te.Bound.boundU);
224 if (ent->Te.Bound.knownL && ent->Te.Bound.knownU
225 && ent->Te.Bound.boundL == 0) {
226 VG_(printf)("[%lld]", 1 + ent->Te.Bound.boundU);
229 if (ent->Te.Bound.knownL && (!ent->Te.Bound.knownU)
861 TyEnt* bound; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
rate_control.cpp 537 Int diff_counter_BTsrc, diff_counter_BTdst, prev_counter_diff, curr_counter_diff, bound; local
620 /* First, set the upper bound for current bit allocation variance: 80% of available buffer */
621 bound = (Int)((rc->Bs / 2 - rc->VBV_fullness) * 0.6 / (pMP->target_bits_per_frame / 10)); /* rc->Bs */
622 diff_counter_BTsrc = PV_MIN(diff_counter_BTsrc, bound);
623 diff_counter_BTdst = PV_MIN(diff_counter_BTdst, bound);
625 /* Second, set another upper bound for current bit allocation: 4-5*bitrate/framerate */
626 bound = 50;
628 // not necessary bound = 10; /* 1/17/02 -- For Low delay */
630 diff_counter_BTsrc = PV_MIN(diff_counter_BTsrc, bound);
631 diff_counter_BTdst = PV_MIN(diff_counter_BTdst, bound);
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 30 Chunk() : next(NULL), bound(0) {}
44 size_t bound; member in class:mcld::Chunk
54 Chunk() : next(NULL), bound(0) {
80 size_t bound; member in class:mcld::Chunk
146 size_type rest_num_elem = chunk_type::size() - m_pCurrent->bound;
150 result = m_pCurrent->data + m_pCurrent->bound;
151 m_pCurrent->bound += N;
161 if (chunk_type::size() == m_pCurrent->bound)
163 result = m_pCurrent->data + m_pCurrent->bound;
164 ++m_pCurrent->bound;
    [all...]
  /libcore/luni/src/test/java/libcore/io/
OsTest.java 303 PacketSocketAddress bound = (PacketSocketAddress) Libcore.os.getsockname(fd); local
304 assertEquals((short) ETH_P_IPV6, bound.sll_protocol); // ETH_P_IPV6 is an int.
305 assertEquals(lo.getIndex(), bound.sll_ifindex);
306 assertEquals(ARPHRD_LOOPBACK, bound.sll_hatype);
307 assertEquals(0, bound.sll_pkttype);
311 assertEquals(6, bound.sll_addr.length);
313 assertEquals(0, bound.sll_addr[i]);
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
rate_control.cpp 492 // lower bound on Qc should be a function of curr_mad
493 // When mad is already low, lower bound on Qc doesn't have to be small.
495 // it doesn't hit the target bit rate due to this QP lower bound.
524 int diff_counter_BTsrc, diff_counter_BTdst, prev_counter_diff, curr_counter_diff, bound; local
602 /* First, set the upper bound for current bit allocation variance: 80% of available buffer */
603 bound = (int)((rateCtrl->Bs / 2 - rateCtrl->VBV_fullness) * 0.6 / (pMP->target_bits_per_frame / 10)); /* rateCtrl->Bs */
604 diff_counter_BTsrc = AVC_MIN(diff_counter_BTsrc, bound);
605 diff_counter_BTdst = AVC_MIN(diff_counter_BTdst, bound);
607 /* Second, set another upper bound for current bit allocation: 4-5*bitrate/framerate */
608 bound = 50
    [all...]
  /cts/tools/signature-tools/test/signature/converter/
ConvertClassTest.java 159 //test type variable bound
161 IClassReference bound = (IClassReference) variable.getUpperBounds().get(0); local
162 assertEquals("java.lang.Object", bound.getClassDefinition().getQualifiedName());
178 //test type variable bound
180 IClassReference bound = (IClassReference) variable.getUpperBounds().get(0); local
181 assertEquals("java.lang.Integer", bound.getClassDefinition().getQualifiedName());
197 //test type variable bound
204 //test type variable bound
223 //test type variable bound
230 //test type variable bound
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
LetterQuad.java 134 Rectangle bound = block.getTextBox(); local
135 if (bound == null) {
138 return x0 > 0 && bound.x+bound.width-gap < getX1();
253 final Rectangle bound = getBound(block); local
292 x0 = bound.x;
333 xAdvance = bound.x-x0;
  /external/libopus/src/
opus_multistream_encoder.c 263 int bound = len; local
264 for (i=0;i<bound;i++)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerTest.java 943 BigInteger bound = i.multiply(two); local
944 for (BigInteger j = bound.negate(); j.compareTo(bound) <= 0; j = j
  /libcore/luni/src/main/java/java/util/concurrent/
Exchanger.java 129 * Nodes, embedding "bound" as an Exchanger field, and reworking
141 * collided at each slot within the current arena bound, it tries
143 * bounds by using a version (sequence) number on the "bound"
145 * participant notices that bound has been updated (in either
239 * Unit for sequence/version bits of bound field. Each successful
240 * change to the bound also adds SEQ.
255 * The bound for spins while waiting for a match. The actual
281 int bound; // Last recorded value of Exchanger.bound field in class:Exchanger.Node
282 int collides; // Number of CAS failures at current bound
320 private volatile int bound; field in class:Exchanger
    [all...]

Completed in 3308 milliseconds

1 2 3 4 5 6 7