Searched defs:bound (Results 1 - 25 of 38) sorted by relevance

12

/external/v8/test/mjsunit/compiler/
H A Dregress-serialized-slots.js41 function bound()
48 return bound;
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
H A DAreaUtils.java54 * @param bound The bounds to calculate the volume from.
59 public static float calcScreenArea(BoundingVolume bound, float distance, float screenWidth) { argument
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) { argument
74 float radius = (bound.getRadius() * screenWidth) / (distance * 2);
78 private static float calcScreenArea(BoundingBox bound, float distance, float screenWidth) { argument
80 float radiusSquare = bound
[all...]
/external/webkit/Source/WebCore/inspector/
H A DInjectedScriptSource.js35 function bound() function
39 bound.toString = function() {
40 return "bound: " + func;
42 return bound;
/external/valgrind/main/drd/tests/
H A Domp_prime.c19 int bound = floor(sqrt ((double)v)) + 1; local
21 for (i = 2; i < bound; i++)
/external/webkit/Source/WebCore/storage/
H A DIDBKeyRange.cpp49 PassRefPtr<IDBKeyRange> IDBKeyRange::lowerBound(PassRefPtr<IDBKey> bound, bool open) argument
51 return IDBKeyRange::create(bound, 0, open, false);
54 PassRefPtr<IDBKeyRange> IDBKeyRange::upperBound(PassRefPtr<IDBKey> bound, bool open) argument
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
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dutil.rb127 # 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/chromium/net/base/
H A Dcapturing_net_log.h85 // bound() method.
95 BoundNetLog bound() const { function in class:net::CapturingBoundNetLog
/external/skia/tests/
H A DDrawTextTest.cpp21 static void create(SkBitmap* bm, SkIRect bound, SkBitmap::Config config) { argument
22 bm->setConfig(config, bound.width(), bound.height());
H A DBlurTest.cpp23 static void create(SkBitmap* bm, SkIRect bound, SkBitmap::Config config) { argument
24 bm->setConfig(config, bound.width(), bound.height());
/external/speex/libspeex/
H A Dfftwrap.c45 static int maximize_range(spx_word16_t *in, spx_word16_t *out, spx_word16_t bound, int len) argument
57 while (max_val <= (bound>>1) && max_val != 0)
H A Dmdf.c1108 /* Check for y in e (lower bound on RER) */
1110 spx_float_t bound = PSEUDOFLOAT(Sey); local
1111 bound = FLOAT_DIVU(FLOAT_MULT(bound, bound), PSEUDOFLOAT(ADD32(1,Syy)));
1112 if (FLOAT_GT(bound, PSEUDOFLOAT(See)))
1114 else if (tmp32 < FLOAT_EXTRACT32(bound))
1115 tmp32 = FLOAT_EXTRACT32(bound);
1122 /* Check for y in e (lower bound on RER) */
/external/webkit/Source/WebCore/inspector/front-end/
H A Dutilities.js36 function bound()
40 bound.toString = function() {
41 return "bound: " + func;
43 return bound;
/external/chromium/chrome/browser/safe_browsing/
H A Dprefix_set.cc122 // Capture the upper bound of our target entry's deltas.
123 const size_t bound = (iter == index_.end() ? deltas_.size() : iter->second); local
134 for (size_t di = iter->second; di < bound && current < prefix; ++di) {
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DLetters.java24 Letters(BitmapFont font, StringBlock bound, boolean rightToLeft) { argument
25 final String text = bound.getText();
26 this.block = bound;
/external/v8/src/
H A Ddebug-agent.cc55 bool bound = false; local
56 while (!bound && !terminate_) {
57 bound = server_->Bind(port_);
62 if (!bound) {
69 // Accept connections on the bound port.
/external/valgrind/main/coregrind/m_debuginfo/
H A Dtytypes.c823 TyEnt* bound; local
835 bound = ML_(TyEnts__index_by_cuOff)(tyents, NULL, boundR);
836 vg_assert(bound);
837 vg_assert(bound->tag == Te_Bound);
838 if (!(bound->Te.Bound.knownL && bound->Te.Bound.knownU
839 && bound->Te.Bound.boundL == 0
840 && bound->Te.Bound.boundU >= bound->Te.Bound.boundL))
842 size = bound
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DLayerTilerChromium.cpp216 IntRect bound = tileLayerRect(tile); local
217 bound.intersect(layerRect);
218 tile->m_dirtyLayerRect.unite(bound);
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dpseudotcp.cc167 uint32 bound(uint32 lower, uint32 middle, uint32 upper) { function in namespace:cricket
672 m_rx_rto = bound(MIN_RTO, m_rx_srtt +
/external/openssl/crypto/asn1/
H A Dasn_mime.c103 static int mime_bound_check(char *line, int linelen, char *bound, int blen);
104 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret);
283 char bound[33], c; local
299 RAND_pseudo_bytes((unsigned char *)bound, 32);
301 c = bound[i] & 0xf;
304 bound[i] = c;
306 bound[32] = 0;
313 bound, mime_eol, mime_eol);
317 BIO_printf(bio, "------%s%s", bound, mime_eol);
320 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eo
608 multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret) argument
921 mime_bound_check(char *line, int linelen, char *bound, int blen) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DCamera.java1010 * @param bound the bound to check for culling
1013 public FrustumIntersect contains(BoundingVolume bound) { argument
1014 if (bound == null) {
1022 if (planeCounter == bound.getCheckPlane()) {
1025 int planeId = (planeCounter == FRUSTUM_PLANES) ? bound.getCheckPlane() : planeCounter;
1030 Plane.Side side = bound.whichSide(worldPlane[planeId]);
1034 bound.setCheckPlane(planeId);
1055 * @param bound the bound t
1058 containsGui(BoundingVolume bound) argument
[all...]
/external/mesa3d/src/glsl/
H A Dast_to_hir.cpp1501 unsigned bound = 0; local
1521 bound = array->type->row_type()->vector_elements;
1525 bound = array->type->vector_elements;
1530 bound = array->type->array_size();
1534 if (bound > 0) {
1536 type_name, bound);
/external/chromium/third_party/libevent/
H A Dhttp.c2278 struct evhttp_bound_socket *bound; local
2282 bound = malloc(sizeof(struct evhttp_bound_socket));
2283 if (bound == NULL)
2286 ev = &bound->bind_ev;
2295 free(bound);
2299 TAILQ_INSERT_TAIL(&http->sockets, bound, next);
2355 struct evhttp_bound_socket *bound; local
2359 while ((bound = TAILQ_FIRST(&http->sockets)) != NULL) {
2360 TAILQ_REMOVE(&http->sockets, bound, next);
2362 fd = bound
[all...]
/external/skia/src/gpu/gl/
H A DGrGpuGL.cpp162 // FBO with level 0 bound as color attachment will be framebuffer complete.
801 // to one and then resolve to the texture bound to the other.
1178 // deleting bound buffer does implicit bind to 0
1205 // deleting bound buffer does implicit bind to 0
1492 void GrGpuGL::flushRenderTarget(const GrIRect* bound) { argument
1518 if (NULL == bound || !bound->isEmpty()) {
1519 rt->flagAsNeedingResolve(bound);
1629 // the bound DRAW FBO ID.
1998 // the last bound textur
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderThemeSafari.cpp755 RoundedIntRect bound = o->style()->getRoundedBorderFor(r); local
756 int radius = bound.radii().topLeft().width();
778 CGContextClipToRect(context, bound.rect());
779 paintInfo.context->addRoundedRectClip(bound);
785 paintInfo.context->addRoundedRectClip(RoundedIntRect(enclosingIntRect(topGradient), bound.radii().topLeft(), bound.radii().topRight(), IntSize(), IntSize()));
792 paintInfo.context->addRoundedRectClip(RoundedIntRect(enclosingIntRect(bottomGradient), IntSize(), IntSize(), bound.radii().bottomLeft(), bound.radii().bottomRight()));
798 CGContextClipToRect(context, bound.rect());
799 paintInfo.context->addRoundedRectClip(bound);
[all...]
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_edit_view_gtk.cc2106 GtkTextIter insert, bound; local
2107 ItersFromCharRange(range, &bound, &insert);
2108 gtk_text_buffer_select_range(text_buffer_, &insert, &bound);

Completed in 808 milliseconds

12