Home
last modified time | relevance | path

Searched refs:bound (Results 1 – 25 of 332) sorted by relevance

12345678910>>...14

/external/bison/lib/
Dgetdtablesize.c77 unsigned int bound; in getdtablesize() local
78 for (bound = 0x10000; _setmaxstdio (bound) < 0; bound = bound / 2) in getdtablesize()
81 dtablesize = bound; in getdtablesize()
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DIDBKeyRange.cpp102 IDBKey* bound = scriptValueToIDBKey(toIsolate(context), boundValue); in lowerBound() local
103 if (!bound || !bound->isValid()) { in lowerBound()
108 return IDBKeyRange::create(bound, 0, open ? LowerBoundOpen : LowerBoundClosed, UpperBoundOpen); in lowerBound()
113 IDBKey* bound = scriptValueToIDBKey(toIsolate(context), boundValue); in upperBound() local
114 if (!bound || !bound->isValid()) { in upperBound()
119 return IDBKeyRange::create(0, bound, LowerBoundOpen, open ? UpperBoundOpen : UpperBoundClosed); in upperBound()
122 IDBKeyRange* IDBKeyRange::bound(ExecutionContext* context, const ScriptValue& lowerValue, const Scr… in bound() function in WebCore::IDBKeyRange
DIDBKeyRange.h70 …static IDBKeyRange* lowerBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionSt…
71 …static IDBKeyRange* upperBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionSt…
72 …static IDBKeyRange* bound(ExecutionContext*, const ScriptValue& lower, const ScriptValue& upper, b…
/external/chromium_org/tools/telemetry/telemetry/page/actions/
Dgesture_common.js11 var bound = el.getBoundingClientRect();
12 var rect = { top: bound.top,
13 left: bound.left,
14 width: bound.width,
15 height: bound.height };
/external/chromium_org/third_party/skia/src/gpu/
DGrClipMaskCache.h117 const SkIRect& bound) { in acquireMask() argument
126 back->acquireMask(fContext, clipGenID, desc, bound); in acquireMask()
161 void getLastBound(SkIRect* bound) const { in getLastBound() argument
165 bound->setEmpty(); in getLastBound()
171 *bound = back->fLastBound; in getLastBound()
202 const SkIRect& bound) { in acquireMask()
208 fLastBound = bound; in acquireMask()
/external/skia/src/gpu/
DGrClipMaskCache.h117 const SkIRect& bound) { in acquireMask() argument
126 back->acquireMask(fContext, clipGenID, desc, bound); in acquireMask()
161 void getLastBound(SkIRect* bound) const { in getLastBound() argument
165 bound->setEmpty(); in getLastBound()
171 *bound = back->fLastBound; in getLastBound()
202 const SkIRect& bound) { in acquireMask()
208 fLastBound = bound; in acquireMask()
/external/chromium_org/third_party/lzma_sdk/
DBcj2.c29 #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)); …
31 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >> kNumMoveBits)); NOR…
62 UInt32 bound; in Bcj2_Decode() local
/external/lzma/C/
DBcj2.c29 #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)); …
31 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >> kNumMoveBits)); NOR…
62 UInt32 bound; in Bcj2_Decode() local
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DExceptionMessages.h71 static String indexExceedsMaximumBound(const char* name, NumberType given, NumberType bound) in indexExceedsMaximumBound() argument
73 bool eq = given == bound; in indexExceedsMaximumBound()
82 result.append(formatNumber(bound)); in indexExceedsMaximumBound()
88 static String indexExceedsMinimumBound(const char* name, NumberType given, NumberType bound) in indexExceedsMinimumBound() argument
90 bool eq = given == bound; in indexExceedsMinimumBound()
99 result.append(formatNumber(bound)); in indexExceedsMinimumBound()
/external/smack/src/org/xbill/DNS/
DUDPClient.java43 private boolean bound = false; field in UDPClient
76 bound = true; in bind_random()
91 if (bound) in bind()
98 bound = true; in bind()
104 if (!bound) in connect()
/external/libcxx/test/algorithms/alg.sorting/alg.binary.search/upper.bound/
DAndroid.mk17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.binary.search/upper.bound/Android.…
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/libcxx/test/algorithms/alg.sorting/alg.binary.search/lower.bound/
DAndroid.mk17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.binary.search/lower.bound/Android.…
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/openssl/crypto/asn1/
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; in SMIME_write_ASN1() local
299 RAND_pseudo_bytes((unsigned char *)bound, 32); in SMIME_write_ASN1()
301 c = bound[i] & 0xf; in SMIME_write_ASN1()
304 bound[i] = c; in SMIME_write_ASN1()
306 bound[32] = 0; in SMIME_write_ASN1()
313 bound, mime_eol, mime_eol); in SMIME_write_ASN1()
317 BIO_printf(bio, "------%s%s", bound, mime_eol); in SMIME_write_ASN1()
320 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eol); in SMIME_write_ASN1()
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
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; in SMIME_write_ASN1() local
299 RAND_pseudo_bytes((unsigned char *)bound, 32); in SMIME_write_ASN1()
301 c = bound[i] & 0xf; in SMIME_write_ASN1()
304 bound[i] = c; in SMIME_write_ASN1()
306 bound[32] = 0; in SMIME_write_ASN1()
313 bound, mime_eol, mime_eol); in SMIME_write_ASN1()
317 BIO_printf(bio, "------%s%s", bound, mime_eol); in SMIME_write_ASN1()
320 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eol); in SMIME_write_ASN1()
[all …]
/external/chromium_org/v8/test/mjsunit/
Ddebug-stepin-function-call.js140 var bound = g.bind(null, 3);
142 bound();
147 var bound = g.bind(null, 3);
149 bound.apply(null, [3]);
/external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
Dps_context_2d.cc57 ctx->bound = 0; in PSContext2DHandleEvent()
68 ctx->bound = in PSContext2DHandleEvent()
94 if (!ctx->bound) return 0; in PSContext2DGetBuffer()
125 if (ctx->bound && ctx->image) { in PSContext2DSwapBuffer()
/external/chromium_org/v8/src/
Dtypes.h459 int IndexInUnion(int bound, UnionHandle unioned, int current_size);
603 i::Handle<i::Map> map, TypeHandle bound, Region* region) { in New() argument
606 type->Set(0, bound); in New()
617 TypeHandle bound = BitsetType::New(BitsetType::Lub(*map), region); in New() local
618 return New(map, bound, region); in New()
639 i::Handle<i::Object> value, TypeHandle bound, Region* region) { in New() argument
642 type->Set(0, bound); in New()
648 TypeHandle bound = BitsetType::New(BitsetType::Lub(*value), region); in New() local
649 return New(value, bound, region); in New()
668 static ContextHandle New(TypeHandle outer, TypeHandle bound, Region* region) { in New() argument
[all …]
/external/chromium_org/gpu/GLES2/extensions/CHROMIUM/
DCHROMIUM_texture_mailbox.txt42 Associates the currently bound texture object with the mailbox name. A
45 previous association is broken. The currently bound texture object is not
71 <texture> is used instead of the currently bound texture. This operation
72 does not change the texture bindings or alter the bound texture in any way.
84 Deletes the currently bound texture object, and redefines its texture name
94 If glConsumeTextureCHROMIUM generates an error, the currently bound texture
107 INVALID_OPERATION is generated if the currently bound texture was previously
116 bindings or alter the currently bound texture in any way. Otherwise performs
/external/chromium_org/ui/views/controls/textfield/
Dtextfield_unittest.cc262 void MouseClick(const gfx::Rect bound, int x_offset) { in MouseClick() argument
263 gfx::Point point(bound.x() + x_offset, bound.y() + bound.height() / 2); in MouseClick()
1488 gfx::Rect bound = GetCursorBounds(sel); in TEST_F() local
1490 EXPECT_EQ(bound.x(), GetCursorBounds(sel).x()); in TEST_F()
1491 cursor_bounds.push_back(bound); in TEST_F()
1496 bound = GetCursorBounds(sel); in TEST_F()
1498 EXPECT_EQ(bound.x(), GetCursorBounds(sel).x()); in TEST_F()
1499 cursor_bounds.push_back(bound); in TEST_F()
1502 bound = GetCursorBounds(sel); in TEST_F()
1504 EXPECT_EQ(bound.x(), GetCursorBounds(sel).x()); in TEST_F()
[all …]
/external/chromium_org/third_party/openssl/openssl/apps/
DCA.pl175 my ($infile, $outfile, $bound) = @_;
180 $flag = 1 if (/^-----BEGIN.*$bound/) ;
182 if (/^-----END.*$bound/) {
DCA.pl.in175 my ($infile, $outfile, $bound) = @_;
180 $flag = 1 if (/^-----BEGIN.*$bound/) ;
182 if (/^-----END.*$bound/) {
/external/openssl/apps/
DCA.pl175 my ($infile, $outfile, $bound) = @_;
180 $flag = 1 if (/^-----BEGIN.*$bound/) ;
182 if (/^-----END.*$bound/) {
DCA.pl.in175 my ($infile, $outfile, $bound) = @_;
180 $flag = 1 if (/^-----BEGIN.*$bound/) ;
182 if (/^-----END.*$bound/) {
/external/chromium_org/third_party/angle/extensions/
DANGLE_framebuffer_blit.txt85 result in an INVALID_FRAMEBUFFER_OPERATION error if the object bound
104 "While an application-created framebuffer object is bound to
111 the object bound to READ_FRAMEBUFFER_BINDING_ANGLE is not "framebuffer
113 error if the object bound to READ_FRAMEBUFFER_BINDING_ANGLE is not
132 copied from the source rectangle, bound by the locations (srcX0,
133 srcY0) and (srcX1, srcY1), to the destination rectangle, bound by
173 INVALID_FRAMEBUFFER_OPERATION error if the objects bound to
218 to the state of the bound framebuffer object, and any previous
221 If a framebuffer object is bound to DRAW_FRAMEBUFFER_ANGLE or
224 framebuffer is bound to the corresponding bind point. Calling
[all …]
/external/chromium_org/v8/test/mjsunit/compiler/
Dregress-serialized-slots.js41 function bound() function
48 return bound;

12345678910>>...14