Home
last modified time | relevance | path

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

12345678910>>...18

/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
DEstimatedParameter.java52 private boolean bound; field in EstimatedParameter
63 bound = false; in EstimatedParameter()
75 boolean bound) { in EstimatedParameter() argument
78 this.bound = bound; in EstimatedParameter()
88 bound = parameter.bound; in EstimatedParameter()
116 public void setBound(boolean bound) { in setBound() argument
117 this.bound = bound; in setBound()
123 return bound; in isBound()
/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/pcre/dist2/testdata/
Dtestoutput12-1624 Subject length lower bound = 1
37 Subject length lower bound = 1
49 Subject length lower bound = 1
61 Subject length lower bound = 1
74 Subject length lower bound = 1
87 Subject length lower bound = 1
100 Subject length lower bound = 1
112 Subject length lower bound = 1
124 Subject length lower bound = 1
136 Subject length lower bound = 1
[all …]
Dtestoutput12-3224 Subject length lower bound = 1
36 Subject length lower bound = 1
48 Subject length lower bound = 1
60 Subject length lower bound = 1
72 Subject length lower bound = 1
84 Subject length lower bound = 1
96 Subject length lower bound = 1
108 Subject length lower bound = 1
120 Subject length lower bound = 1
132 Subject length lower bound = 1
[all …]
Dtestoutput252 Subject length lower bound = 0
58 Subject length lower bound = 3
75 Subject length lower bound = 3
90 Subject length lower bound = 3
96 Subject length lower bound = 2
102 Subject length lower bound = 5
107 Subject length lower bound = 2
113 Subject length lower bound = 3
163 Subject length lower bound = 1
169 Subject length lower bound = 1
[all …]
Dtestoutput10255 Subject length lower bound = 1
268 Subject length lower bound = 1
281 Subject length lower bound = 1
294 Subject length lower bound = 1
307 Subject length lower bound = 1
320 Subject length lower bound = 1
333 Subject length lower bound = 1
346 Subject length lower bound = 1
359 Subject length lower bound = 1
372 Subject length lower bound = 3
[all …]
Dtestoutput1513 Subject length lower bound = 2
27 Subject length lower bound = 0
111 Subject length lower bound = 3
128 Subject length lower bound = 2
139 Subject length lower bound = 2
148 Subject length lower bound = 2
159 Subject length lower bound = 2
170 Subject length lower bound = 2
179 Subject length lower bound = 2
248 Subject length lower bound = 0
[all …]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
DRangeDecoder.java26 int bound = (range >>> BIT_MODEL_TOTAL_BITS) * prob; in decodeBit() local
30 if ((code ^ 0x80000000) < (bound ^ 0x80000000)) { in decodeBit()
31 range = bound; in decodeBit()
36 range -= bound; in decodeBit()
37 code -= bound; in decodeBit()
DRangeEncoder.java106 int bound = (range >>> BIT_MODEL_TOTAL_BITS) * prob; in encodeBit() local
110 range = bound; in encodeBit()
114 low += bound & 0xFFFFFFFFL; in encodeBit()
115 range -= bound; in encodeBit()
/external/v8/src/compiler/
Dloop-variable-optimizer.h28 Bound(Node* bound, ConstraintKind kind) : bound(bound), kind(kind) {} in Bound()
30 Node* bound; member
52 void AddUpperBound(Node* bound, ConstraintKind kind);
53 void AddLowerBound(Node* bound, ConstraintKind kind);
Dloop-variable-optimizer.cc150 void InductionVariable::AddUpperBound(Node* bound, in AddUpperBound() argument
155 << NodeProperties::GetControlInput(phi())->id() << "): " << *bound in AddUpperBound()
158 upper_bounds_.push_back(Bound(bound, kind)); in AddUpperBound()
161 void InductionVariable::AddLowerBound(Node* bound, in AddLowerBound() argument
166 << NodeProperties::GetControlInput(phi())->id() << "): " << *bound; in AddLowerBound()
168 lower_bounds_.push_back(Bound(bound, kind)); in AddLowerBound()
361 for (auto bound : induction_var->lower_bounds()) { in ChangeToInductionVariablePhis() local
363 graph()->zone(), induction_var->phi()->InputCount() - 1, bound.bound); in ChangeToInductionVariablePhis()
365 for (auto bound : induction_var->upper_bounds()) { in ChangeToInductionVariablePhis() local
367 graph()->zone(), induction_var->phi()->InputCount() - 1, bound.bound); in ChangeToInductionVariablePhis()
/external/clang/test/SemaObjC/
Dparameterized_classes_arc.m81 @interface PC2<T : __strong id> // expected-error {{type bound '__strong id' for type parameter 'T'…
84 @interface PC3<T : __weak id> // expected-error {{type bound '__weak id' for type parameter 'T' can…
87 @interface PC4<T : __strong Forward*> // expected-error {{type bound 'Forward *__strong' for type p…
90 @interface PC5<T : __weak Forward*> // expected-error {{type bound 'Forward *__weak' for type param…
93 @interface PC6<T : StrongID> // expected-error {{type bound 'StrongID' (aka '__strong id') for type…
96 @interface PC7<T : StrongForward> // expected-error {{type bound 'StrongForward' (aka 'Forward *__s…
100 @interface PC8<T : const id> // expected-error {{type bound 'const id' for type parameter 'T' canno…
103 @interface PC9<T : volatile id> // expected-error {{type bound 'volatile id' for type parameter 'T'…
106 @interface PC10<T : __attribute__((address_space(256))) id> // expected-error {{type bound '__attri…
Dparameterized_classes.m28 // Parse type parameters with a bound
35 // Parse a type parameter with a bound that terminates in '>>'.
65 @interface PC9<T : int, // expected-error{{type bound 'int' for type parameter 'T' is not an Object…
66 …U : NSString> : NSObject // expected-error{{missing '*' in type bound 'NSString' for type paramete…
89 @interface PC11<T, U> : NSObject // expected-error{{missing type bound 'NSObject *' for type parame…
100 @class PC13<U>; // expected-error{{missing type bound 'NSObject *' for type parameter 'U' in @class…
103 @class PC12<T>; // expected-error{{missing type bound 'NSObject *' for type parameter 'T' in @class…
151 …<T : NSObject *, // expected-error{{type bound 'NSObject *' for type parameter 'T' conflicts with …
152 …X : id> () // expected-error{{type bound 'id' for type parameter 'X' conflicts with previous bound
272 …rgs8b; // expected-error{{type argument 'NSObject *' does not satisfy the bound ('id<NSCopying>') …
[all …]
/external/llvm/test/Analysis/DivergenceAnalysis/AMDGPU/
Dphi-undef.ll4 ; CHECK-NEXT: DIVERGENT: i32 %bound
5 ; CHECK-NEXT: DIVERGENT: %break = icmp sge i32 %counter, %bound
9 define amdgpu_ps void @test1(i32 %bound) {
15 %break = icmp sge i32 %counter, %bound
/external/clang/test/SemaObjCXX/
Dparameterized_classes_arc.mm93 @interface PC2<T : __strong id> // expected-error {{type bound '__strong id' for type parameter 'T'…
96 @interface PC3<T : __weak id> // expected-error {{type bound '__weak id' for type parameter 'T' can…
99 @interface PC4<T : __strong Forward*> // expected-error {{type bound 'Forward *__strong' for type p…
102 @interface PC5<T : __weak Forward*> // expected-error {{type bound 'Forward *__weak' for type param…
105 @interface PC6<T : StrongID> // expected-error {{type bound 'StrongID' (aka '__strong id') for type…
108 @interface PC7<T : StrongForward> // expected-error {{type bound 'StrongForward' (aka 'Forward *__s…
112 @interface PC8<T : const id> // expected-error {{type bound 'const id' for type parameter 'T' canno…
115 @interface PC9<T : volatile id> // expected-error {{type bound 'volatile id' for type parameter 'T'…
118 @interface PC10<T : __attribute__((address_space(256))) id> // expected-error {{type bound '__attri…
/external/guice/core/src/com/google/inject/util/
DTypes.java80 public static WildcardType subtypeOf(Type bound) { in subtypeOf() argument
81 return new WildcardTypeImpl(new Type[] { bound }, MoreTypes.EMPTY_TYPE_ARRAY); in subtypeOf()
89 public static WildcardType supertypeOf(Type bound) { in supertypeOf() argument
90 return new WildcardTypeImpl(new Type[] { Object.class }, new Type[] { bound }); in supertypeOf()
/external/clang/test/PCH/
Dobjc_parameterized_classes.m27 …<T : NSObject *, // expected-error{{type bound 'NSObject *' for type parameter 'T' conflicts with …
29 …U : id> (Cat2) // expected-error{{type bound 'id' for type parameter 'U' conflicts with previous b…
/external/lzma/C/
DBcj2.c16 #define _IF_BIT_0 ttt = *prob; bound = (p->range >> kNumModelBits) * ttt; if (p->code < bound)
17 #define _UPDATE_0 p->range = bound; *prob = (CProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits));
18 #define _UPDATE_1 p->range -= bound; p->code -= bound; *prob = (CProb)(ttt - (ttt >> kNumMoveBits));
187 UInt32 bound, ttt; in Bcj2Dec_Decode() local
/external/mesa3d/src/compiler/glsl/
Dast_array_index.cpp174 unsigned bound = 0; in _mesa_ast_array_index_to_hir() local
187 bound = array->type->row_type()->vector_elements; in _mesa_ast_array_index_to_hir()
192 bound = array->type->vector_elements; in _mesa_ast_array_index_to_hir()
202 bound = array->type->array_size(); in _mesa_ast_array_index_to_hir()
206 if (bound > 0) { in _mesa_ast_array_index_to_hir()
208 type_name, bound); in _mesa_ast_array_index_to_hir()
/external/iptables/extensions/
Dlibxt_socket.man2 packet. It matches if there is an established or non\-zero bound listening
11 Do not ignore sockets bound to 'any' address.
12 The socket match won't accept zero\-bound listeners by default, since
17 proxies bound to non\-local addresses it is recommended to use the \-\-transparent
/external/llvm/test/CodeGen/ARM/
Dsat-arith.ll24 ; upper-bound of the immediate argument
33 ; lower-bound of the immediate argument
42 ; upper-bound of the immediate argument
51 ; lower-bound of the immediate argument
/external/skia/src/core/
DSkTextToPathIter.h86 SkScalar bound = fBoundsBase[i] - (fXYIndex ? x : y); in setPosition() local
88 bound += xOffset; in setPosition()
90 fBounds[i] = bound / fScale; in setPosition()
/external/eigen/Eigen/src/Core/products/
DSelfadjointMatrixVector.h66 Index bound = (std::max)(Index(0),size-8) & 0xfffffffe; in run() local
68 bound = size - bound; in run()
70 for (Index j=FirstTriangular ? bound : 0; in run()
71 j<(FirstTriangular ? size : bound);j+=2) in run()
138 for (Index j=FirstTriangular ? 0 : bound;j<(FirstTriangular ? bound : size);j++) in run()
/external/skia/tests/
DFontHostStreamTest.cpp23 static void create(SkBitmap* bm, SkIRect bound) { in create() argument
24 bm->allocN32Pixels(bound.width(), bound.height()); in create()
/external/ltp/testcases/kernel/fs/fs_readonly/
Dtest_robind.sh82 umount dir2-bound
218 mount --bind dir1 dir2-bound
238 testdir dir2-bound $fstype false

12345678910>>...18