Searched refs:bound (Results 1 - 25 of 161) sorted by relevance

1234567

/external/bison/lib/
H A Dgetdtablesize.c71 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/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBKeyRange.idl35 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange lowerBound(any bound, optional boolean open = false);
36 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange upperBound(any bound, optional boolean open = false);
37 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange bound(any lower, any upper, optional boolean lowerOpen = false, optional boolean upperOpen = false);
H A DIDBKeyRange.cpp101 IDBKey* bound = scriptValueToIDBKey(toIsolate(context), boundValue); local
102 if (!bound || !bound->isValid()) {
107 return IDBKeyRange::create(bound, 0, open ? LowerBoundOpen : LowerBoundClosed, UpperBoundOpen);
112 IDBKey* bound = scriptValueToIDBKey(toIsolate(context), boundValue); local
113 if (!bound || !bound->isValid()) {
118 return IDBKeyRange::create(0, bound, LowerBoundOpen, open ? UpperBoundOpen : UpperBoundClosed);
121 IDBKeyRange* IDBKeyRange::bound(ExecutionContext* context, const ScriptValue& lowerValue, const ScriptValue& upperValue, bool lowerOpen, bool upperOpen, ExceptionState& exceptionState) function in class:blink::IDBKeyRange
H A DIDBKeyRange.h70 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&);
/external/libcxx/test/algorithms/alg.sorting/alg.binary.search/lower.bound/
H A DAndroid.mk17 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/
H A DAndroid.mk17 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/v8/test/mjsunit/compiler/
H A Dregress-serialized-slots.js41 function bound()
48 return bound;
/external/chromium_org/tools/telemetry/telemetry/page/actions/
H A Dgesture_common.js13 var bound = { left: client_rect.left,
23 bound.left += frame_bound.left;
24 bound.top += frame_bound.top;
28 return bound;
/external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
H A Dps_context_2d.h19 int bound; member in struct:__anon8930
H A Dps_context_2d.cc57 ctx->bound = 0;
68 ctx->bound =
94 if (!ctx->bound) return 0;
125 if (ctx->bound && ctx->image) {
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-stepin-function-call.js138 // Test step into bound function.
140 var bound = g.bind(null, 3);
142 bound();
145 // Test step into apply of bound function.
147 var bound = g.bind(null, 3);
149 bound.apply(null, [3]);
166 // Test global bound function.
/external/openssl/apps/
H A DCA.pl175 my ($infile, $outfile, $bound) = @_;
180 $flag = 1 if (/^-----BEGIN.*$bound/) ;
182 if (/^-----END.*$bound/) {
/external/smack/src/org/xbill/DNS/
H A DUDPClient.java43 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/
H A DGrClipMaskCache.h118 const SkIRect& bound) {
127 back->acquireMask(fContext, clipGenID, desc, bound);
162 void getLastBound(SkIRect* bound) const {
166 bound->setEmpty();
172 *bound = back->fLastBound;
203 const SkIRect& bound) {
209 fLastBound = bound;
116 acquireMask(int32_t clipGenID, const GrTextureDesc& desc, const SkIRect& bound) argument
200 acquireMask(GrContext* context, int32_t clipGenID, const GrTextureDesc& desc, const SkIRect& bound) argument
H A DGrLayerHoister.cpp180 SkRect bound = SkRect::MakeXYWH(SkIntToScalar(layer->rect().fLeft), local
184 atlasCanvas->clipRect(bound);
188 atlasCanvas->drawRect(bound, paint);
196 initialCTM.postTranslate(bound.fLeft, bound.fTop);
200 atlasCanvas->translate(bound.fLeft, bound.fTop);
203 SkRecordPartialDraw(*pict->fRecord.get(), atlasCanvas, bound,
225 SkRect bound = SkRect::MakeXYWH(SkIntToScalar(layer->rect().fLeft), local
230 layerCanvas->clipRect(bound); // TOD
[all...]
/external/skia/src/gpu/
H A DGrClipMaskCache.h117 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;
115 acquireMask(int32_t clipGenID, const GrTextureDesc& desc, const SkIRect& bound) argument
199 acquireMask(GrContext* context, int32_t clipGenID, const GrTextureDesc& desc, const SkIRect& bound) argument
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DExceptionMessages.h71 static String indexExceedsMaximumBound(const char* name, NumberType given, NumberType bound) argument
73 bool eq = given == bound;
81 result.appendLiteral("the maximum bound (");
82 result.append(formatNumber(bound));
88 static String indexExceedsMinimumBound(const char* name, NumberType given, NumberType bound) argument
90 bool eq = given == bound;
98 result.appendLiteral("the minimum bound (");
99 result.append(formatNumber(bound));
/external/chromium_org/third_party/lzma_sdk/
H A 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)); NORMALIZE;
31 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >> kNumMoveBits)); NORMALIZE;
62 UInt32 bound; local
/external/lzma/C/
H A 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)); NORMALIZE;
31 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >> kNumMoveBits)); NORMALIZE;
62 UInt32 bound; local
/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/chromium_org/third_party/WebKit/Source/core/editing/
H A DRenderedPosition.cpp236 void RenderedPosition::positionInGraphicsLayerBacking(CompositedSelectionBound& bound) const
238 bound.layer = nullptr;
239 bound.edgeTopInLayer = bound.edgeBottomInLayer = FloatPoint();
246 bound.edgeTopInLayer = m_renderer->localToInvalidationBackingPoint(rect.minXMinYCorner(), &layer);
247 bound.edgeBottomInLayer = m_renderer->localToInvalidationBackingPoint(rect.minXMaxYCorner(), nullptr);
248 bound.layer = layer->graphicsLayerBacking();
/external/chromium_org/third_party/skia/tests/
H A DDrawTextTest.cpp19 static void create(SkBitmap* bm, SkIRect bound) { argument
20 bm->allocN32Pixels(bound.width(), bound.height());
H A DFontHostStreamTest.cpp24 static void create(SkBitmap* bm, SkIRect bound) { argument
25 bm->allocN32Pixels(bound.width(), bound.height());
/external/skia/tests/
H A DDrawTextTest.cpp19 static void create(SkBitmap* bm, SkIRect bound) { argument
20 bm->allocN32Pixels(bound.width(), bound.height());
H A DFontHostStreamTest.cpp23 static void create(SkBitmap* bm, SkIRect bound) { argument
24 bm->allocN32Pixels(bound.width(), bound.height());

Completed in 447 milliseconds

1234567