/third_party/boost/libs/math/reporting/performance/ |
D | table_helper.hpp | 80 double p, q, bound, y(1-x); in dcdflib_beta_cdf() local 81 cdfbet(&what, &p, &q, &x, &y, &a, &b, &status, &bound); in dcdflib_beta_cdf() 89 double x, y, bound, q(1 - p); in dcdflib_beta_quantile() local 90 cdfbet(&what, &p, &q, &x, &y, &a, &b, &status, &bound); in dcdflib_beta_quantile() 98 double p, q, bound, sfc(1-sf); in dcdflib_binomial_cdf() local 99 cdfbin(&what, &p, &q, &x, &s, &sf, &sfc, &status, &bound); in dcdflib_binomial_cdf() 107 double x, bound, q(1 - p), sfc(1-sf); in dcdflib_binomial_quantile() local 108 cdfbin(&what, &p, &q, &x, &s, &sf, &sfc, &status, &bound); in dcdflib_binomial_quantile() 116 double p, q, bound; in dcdflib_chi_cdf() local 117 cdfchi(&what, &p, &q, &x, &df, &status, &bound); in dcdflib_chi_cdf() [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
D | bind.cc | 48 bool Bind(const UnboundConversion* unbound, BoundConversion* bound); 55 BoundConversion* bound) { in Bind() argument 83 FormatConversionSpecImplFriend::SetWidth(width, bound); in Bind() 84 FormatConversionSpecImplFriend::SetPrecision(precision, bound); in Bind() 88 bound); in Bind() 90 FormatConversionSpecImplFriend::SetFlags(unbound->flags, bound); in Bind() 93 FormatConversionSpecImplFriend::SetFlags(unbound->flags, bound); in Bind() 94 FormatConversionSpecImplFriend::SetWidth(-1, bound); in Bind() 95 FormatConversionSpecImplFriend::SetPrecision(-1, bound); in Bind() 97 FormatConversionSpecImplFriend::SetConversionChar(unbound->conv, bound); in Bind() [all …]
|
D | bind_test.cc | 86 BoundConversion bound; in TEST_F() local 91 if (BindWithPack(&props, args, &bound)) { in TEST_F() 98 EXPECT_EQ(e.arg, bound.arg()); in TEST_F() 100 EXPECT_EQ(e.width, bound.width()); in TEST_F() 101 EXPECT_EQ(e.precision, bound.precision()); in TEST_F() 107 BoundConversion bound; in TEST_F() local 113 ASSERT_TRUE(BindWithPack(&props, args, &bound)); in TEST_F() 115 EXPECT_EQ(bound.width(), std::numeric_limits<int>::max()); in TEST_F() 116 EXPECT_EQ(bound.arg(), args + 1); in TEST_F()
|
/third_party/abseil-cpp/absl/strings/internal/str_format/ |
D | bind.cc | 34 bool Bind(const UnboundConversion* unbound, BoundConversion* bound); 41 BoundConversion* bound) { in Bind() argument 69 FormatConversionSpecImplFriend::SetWidth(width, bound); in Bind() 70 FormatConversionSpecImplFriend::SetPrecision(precision, bound); in Bind() 75 FormatConversionSpecImplFriend::SetFlags(flags, bound); in Bind() 77 FormatConversionSpecImplFriend::SetFlags(unbound->flags, bound); in Bind() 80 FormatConversionSpecImplFriend::SetFlags(unbound->flags, bound); in Bind() 81 FormatConversionSpecImplFriend::SetWidth(-1, bound); in Bind() 82 FormatConversionSpecImplFriend::SetPrecision(-1, bound); in Bind() 84 FormatConversionSpecImplFriend::SetConversionChar(unbound->conv, bound); in Bind() [all …]
|
D | bind_test.cc | 72 BoundConversion bound; in TEST_F() local 77 if (BindWithPack(&props, args, &bound)) { in TEST_F() 84 EXPECT_EQ(e.arg, bound.arg()); in TEST_F() 86 EXPECT_EQ(e.width, bound.width()); in TEST_F() 87 EXPECT_EQ(e.precision, bound.precision()); in TEST_F() 93 BoundConversion bound; in TEST_F() local 99 ASSERT_TRUE(BindWithPack(&props, args, &bound)); in TEST_F() 101 EXPECT_EQ(bound.width(), std::numeric_limits<int>::max()); in TEST_F() 102 EXPECT_EQ(bound.arg(), args + 1); in TEST_F()
|
/third_party/boost/libs/multiprecision/doc/ |
D | numeric_limits_32_tables.qbk | 26 [[type][signed][bound][modulo][round][radix][digits][digits10]] 27 [[bool][unsigned][bound][no][to zero][2][1][0]] 28 [[char][signed][bound][modulo][to zero][2][7][2]] 29 [[unsigned char][unsigned][bound][modulo][to zero][2][8][2]] 30 [[char16_t][unsigned][bound][modulo][to zero][2][16][4]] 31 [[char32_t][unsigned][bound][modulo][to zero][2][32][9]] 32 [[short][signed][bound][modulo][to zero][2][15][4]] 33 [[unsigned short][unsigned][bound][modulo][to zero][2][16][4]] 34 [[int][signed][bound][modulo][to zero][2][31][9]] 35 [[unsigned][unsigned][bound][modulo][to zero][2][32][9]] [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | nonPrimitiveInGeneric.js | 13 function bound<T extends object>(t: T) { 17 bound({}); 18 bound(a); 19 bound(123); // expect error 20 bound(b); // expect error 57 function bound(t) { function 60 bound({}); 61 bound(a); 62 bound(123); // expect error 63 bound(b); // expect error [all …]
|
D | nonPrimitiveInGeneric.types | 38 function bound<T extends object>(t: T) { 39 >bound : <T extends object>(t: T) => void 47 bound({}); 48 >bound({}) : void 49 >bound : <T extends object>(t: T) => void 52 bound(a); 53 >bound(a) : void 54 >bound : <T extends object>(t: T) => void 57 bound(123); // expect error 58 >bound(123) : void [all …]
|
D | nonPrimitiveInGeneric.symbols | 32 function bound<T extends object>(t: T) { 33 >bound : Symbol(bound, Decl(nonPrimitiveInGeneric.ts, 9, 19)) 43 bound({}); 44 >bound : Symbol(bound, Decl(nonPrimitiveInGeneric.ts, 9, 19)) 46 bound(a); 47 >bound : Symbol(bound, Decl(nonPrimitiveInGeneric.ts, 9, 19)) 50 bound(123); // expect error 51 >bound : Symbol(bound, Decl(nonPrimitiveInGeneric.ts, 9, 19)) 53 bound(b); // expect error 54 >bound : Symbol(bound, Decl(nonPrimitiveInGeneric.ts, 9, 19))
|
/third_party/jerryscript/tests/jerry/ |
D | function-prototype-bind.js | 106 var bound = number.bind(null, 24); variable 107 var foo = new bound(); 111 var bound = number.bind(null, 3); 112 var foo = new bound(); 122 var bound = math.bind(null, 0); 123 var foo = new bound(); 131 var bound = foo.bind(null); 132 assert(bound.length === 2); 134 bound = foo.bind(null, 9); 135 assert(bound.length === 1); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | pseudo_random_generator.cpp | 26 uint32_t PseudoRandomGenerator::RandomUint32(uint32_t bound) { in RandomUint32() argument 27 assert(bound > 0 && "Bound must be positive"); in RandomUint32() 28 return std::uniform_int_distribution<uint32_t>(0, bound - 1)(mt_); in RandomUint32() 31 uint64_t PseudoRandomGenerator::RandomUint64(uint64_t bound) { in RandomUint64() argument 32 assert(bound > 0 && "Bound must be positive"); in RandomUint64() 33 return std::uniform_int_distribution<uint64_t>(0, bound - 1)(mt_); in RandomUint64()
|
D | fuzzer_pass_add_access_chains.cpp | 113 uint32_t bound; in Apply() local 116 bound = fuzzerutil::GetArraySize(*subobject_type, GetIRContext()); in Apply() 120 bound = subobject_type->GetSingleWordInOperand(1); in Apply() 123 bound = fuzzerutil::GetNumberOfStructMembers(*subobject_type); in Apply() 129 bound = 0; in Apply() 132 if (bound == 0) { in Apply() 140 GetFuzzerContext()->GetRandomIndexForAccessChain(bound); in Apply() 156 FindOrCreateIntegerConstant({bound - 1}, 32, is_signed, false); in Apply()
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
D | pseudo_random_generator.cpp | 26 uint32_t PseudoRandomGenerator::RandomUint32(uint32_t bound) { in RandomUint32() argument 27 assert(bound > 0 && "Bound must be positive"); in RandomUint32() 28 return std::uniform_int_distribution<uint32_t>(0, bound - 1)(mt_); in RandomUint32() 31 uint64_t PseudoRandomGenerator::RandomUint64(uint64_t bound) { in RandomUint64() argument 32 assert(bound > 0 && "Bound must be positive"); in RandomUint64() 33 return std::uniform_int_distribution<uint64_t>(0, bound - 1)(mt_); in RandomUint64()
|
D | fuzzer_pass_add_access_chains.cpp | 113 uint32_t bound; in Apply() local 116 bound = fuzzerutil::GetArraySize(*subobject_type, GetIRContext()); in Apply() 120 bound = subobject_type->GetSingleWordInOperand(1); in Apply() 123 bound = fuzzerutil::GetNumberOfStructMembers(*subobject_type); in Apply() 129 bound = 0; in Apply() 132 if (bound == 0) { in Apply() 140 GetFuzzerContext()->GetRandomIndexForAccessChain(bound); in Apply() 156 FindOrCreateIntegerConstant({bound - 1}, 32, is_signed, false); in Apply()
|
/third_party/node/test/parallel/ |
D | test-domain-intercept.js | 20 const bound = d.intercept(mustNotCall); constant 21 bound(new Error('foobar')); 27 const bound = d.intercept(common.mustCall((data) => { constant 31 bound(null, 'data'); 37 const bound = d.intercept(common.mustCall((data, data2) => { constant 42 bound(null, 'data', 'data2');
|
/third_party/typescript/tests/cases/conformance/types/nonPrimitive/ |
D | nonPrimitiveInGeneric.ts | 13 function bound<T extends object>(t: T) { function 17 bound({}); 18 bound(a); 19 bound(123); // expect error 20 bound(b); // expect error
|
/third_party/node/deps/npm/node_modules/function-bind/ |
D | implementation.js | 17 var bound; 19 if (this instanceof bound) { 42 …bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(thi… 47 bound.prototype = new Empty(); class 51 return bound;
|
/third_party/pcre2/pcre2/testdata/ |
D | testoutput12-32 | 24 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 …]
|
D | testoutput2 | 52 Subject length lower bound = 0 58 Subject length lower bound = 3 76 Subject length lower bound = 3 91 Subject length lower bound = 3 97 Subject length lower bound = 2 103 Subject length lower bound = 5 108 Subject length lower bound = 2 115 Subject length lower bound = 3 165 Subject length lower bound = 1 171 Subject length lower bound = 1 [all …]
|
D | testoutput10 | 258 Subject length lower bound = 1 271 Subject length lower bound = 1 284 Subject length lower bound = 1 297 Subject length lower bound = 1 310 Subject length lower bound = 1 323 Subject length lower bound = 1 336 Subject length lower bound = 1 349 Subject length lower bound = 1 362 Subject length lower bound = 1 375 Subject length lower bound = 3 [all …]
|
D | testoutput15 | 13 Subject length lower bound = 2 29 Subject length lower bound = 0 124 Subject length lower bound = 3 144 Subject length lower bound = 2 157 Subject length lower bound = 2 167 Subject length lower bound = 2 180 Subject length lower bound = 2 193 Subject length lower bound = 2 203 Subject length lower bound = 2 309 Subject length lower bound = 1 [all …]
|
D | testoutput12-16 | 24 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 …]
|
/third_party/skia/third_party/externals/tint/fuzzers/ |
D | random_generator.cc | 59 uint32_t RandomGenerator::GetUInt32(uint32_t bound) { in GetUInt32() argument 60 assert(bound > 0 && "|bound| must be greater than 0"); in GetUInt32() 61 return engine_->RandomUInt32(0u, bound); in GetUInt32() 69 uint64_t RandomGenerator::GetUInt64(uint64_t bound) { in GetUInt64() argument 70 assert(bound > 0 && "|bound| must be greater than 0"); in GetUInt64() 71 return engine_->RandomUInt64(static_cast<uint64_t>(0), bound); in GetUInt64()
|
/third_party/boost/libs/phoenix/doc/modules/ |
D | bind.qbk | 36 the __boost_result_of__ protocol. If the bound function object is polymorphic, 52 Here's how the function `foo` may be bound: 69 Binding member functions can be done similarly. A bound member function takes in 77 `xyz`'s `foo` member function can be bound as: 83 the arguments can be lazily bound. Examples: 95 Member variables can also be bound much like member functions. Member variables 98 when bound, act like a unary function, taking in a pointer or reference to an 99 object as its argument and returning a reference to the bound member variable. 107 `xyz::v` can be bound as: 111 As noted, just like the bound member function, a bound member variable also [all …]
|
/third_party/boost/libs/local_function/doc/ |
D | tutorial.qbk | 72 Variables in scope (local variables, enclosing function parameters, data members, etc) can be bound… 73 Only bound variables, static variables, global variables, functions, and enumerations from the encl… 74 The types of bound variables are deduced automatically by this library using __Boost_Typeof__. 78 Semantically, this binding should be seen as an "extension" of the scope of the bound variable from… 80 For example, this reduces maintenance because if a bound variable type is changed, the local functi… 90 A variable can be bound by value: 113 If a variable is bound by value, then a copy of the variable value is taken at the point of the loc… 114 If a variable is bound by reference instead, the variable will refer to the value it has at the poi… 115 …bound by reference survive the existence scope of the local function otherwise the bound reference… 117 The type of a bound variable is automatically deduced using __Boost_Typeof__ and it is the exact sa… [all …]
|