/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/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/ |
D | argmax_impl.cu | 21 __global__ void Argmax(const T *input, const S bound, const size_t outer_size, in Argmax() argument 28 size_t input_offset = x * bound * inner_size + 0 * inner_size + y; in Argmax() 30 for (S i = 1; i < bound; i++) { in Argmax() 31 input_offset = x * bound * inner_size + i * inner_size + y; in Argmax() 42 void CalArgmax(const T *input, const S bound, const size_t outer_size, const size_t inner_size, in CalArgmax() argument 44 …Argmax<<<GET_BLOCKS(outer_size), GET_THREADS, 0, cuda_stream>>>(input, bound, outer_size, inner_si… in CalArgmax() 49 template void CalArgmax<float, int>(const float *input, const int bound, const size_t outer_size, 51 template void CalArgmax<half, int>(const half *input, const int bound, const size_t outer_size,
|
D | general_reduction_impl.cu | 47 __global__ void ThreadReduction(bool small, size_t outer_size, size_t bound, size_t inner_size, con… in ThreadReduction() argument 63 for (int i = 0; i < bound; i++) { in ThreadReduction() 64 T other_K = input[outer_id * bound * inner_size + i * inner_size + inner_id]; in ThreadReduction() 78 __global__ void WarpReduction(bool small, size_t outer_size, size_t bound, size_t inner_size, const… in WarpReduction() argument 95 for (int i = laneId; i < bound; i += kWarpSize) { in WarpReduction() 96 T other_K = input[outer_id * bound * inner_size + i * inner_size + inner_id]; in WarpReduction() 126 __global__ void Warp4Reduction(bool small, size_t outer_size, size_t bound, size_t inner_size, cons… in Warp4Reduction() argument 154 for (int i = tgId; i < bound; i += kGroupSize) { in Warp4Reduction() 155 T other_K = input[outer_id * bound * inner_size + i * inner_size + inner_id]; in Warp4Reduction() 215 __global__ void BlockReduction(bool small, size_t outer_size, size_t bound, size_t inner_size, cons… in BlockReduction() argument [all …]
|
/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/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 | 112 uint32_t bound; in Apply() local 115 bound = fuzzerutil::GetArraySize(*subobject_type, GetIRContext()); in Apply() 119 bound = subobject_type->GetSingleWordInOperand(1); in Apply() 122 bound = fuzzerutil::GetNumberOfStructMembers(*subobject_type); in Apply() 128 bound = 0; in Apply() 131 if (bound == 0) { in Apply() 139 GetFuzzerContext()->GetRandomIndexForAccessChain(bound); in Apply() 155 FindOrCreateIntegerConstant({bound - 1}, 32, is_signed, false); in Apply()
|
/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/glslang/Test/ |
D | remap.similar_1a.none.frag | 7 float Test1(int bound) 10 for (int x=0; x<bound; ++x) 15 float Test2(int bound) 17 if (bound > 2) 18 return Test1(bound); 20 return float(bound * 2 +
|
D | remap.similar_1a.everything.frag | 7 float Test1(int bound) 10 for (int x=0; x<bound; ++x) 15 float Test2(int bound) 17 if (bound > 2) 18 return Test1(bound); 20 return float(bound * 2 +
|
D | remap.similar_1b.everything.frag | 7 float Test1(int bound) 10 for (int x=0; x<bound; ++x) 16 float Test2(int bound) 18 if (bound > 2) { 19 return Test1(bound * 2); 21 return float(bound * 4 +
|
D | remap.similar_1b.none.frag | 7 float Test1(int bound) 10 for (int x=0; x<bound; ++x) 16 float Test2(int bound) 18 if (bound > 2) { 19 return Test1(bound * 2); 21 return float(bound * 4 +
|
/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/glslang/Test/baseResults/ |
D | remap.similar_1a.none.frag.out | 4 // Id's are bound by 86 14 Name 10 "bound" 16 Name 13 "bound" 73 10(bound): 7(ptr) FunctionParameter 85 27: 6(int) Load 10(bound) 103 13(bound): 7(ptr) FunctionParameter 106 39: 6(int) Load 13(bound) 111 45: 6(int) Load 13(bound) 116 49: 6(int) Load 13(bound)
|
/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
|