Home
last modified time | relevance | path

Searched refs:special (Results 1 – 25 of 2608) sorted by relevance

12345678910>>...105

/third_party/flutter/skia/tests/
DDeviceTest.cpp53 sk_sp<SkSpecialImage> special = DeviceTestingAccess::MakeSpecial(bmDev.get(), bm);
54 SkASSERT(!special->isTextureBacked());
55 SkASSERT(kWidth == special->width());
56 SkASSERT(kHeight == special->height());
57 SkASSERT(bm.getGenerationID() == special->uniqueID());
58 SkASSERT(SkIRect::MakeWH(kWidth, kHeight) == special->subset());
62 special = DeviceTestingAccess::MakeSpecial(bmDev.get(), image.get());
63 SkASSERT(!special->isTextureBacked());
64 SkASSERT(kWidth == special->width());
65 SkASSERT(kHeight == special->height());
[all …]
/third_party/skia/tests/
DDeviceTest.cpp53 sk_sp<SkSpecialImage> special = DeviceTestingAccess::MakeSpecial(bmDev.get(), bm);
54 SkASSERT(!special->isTextureBacked());
55 SkASSERT(kWidth == special->width());
56 SkASSERT(kHeight == special->height());
57 SkASSERT(bm.getGenerationID() == special->uniqueID());
58 SkASSERT(SkIRect::MakeWH(kWidth, kHeight) == special->subset());
62 special = DeviceTestingAccess::MakeSpecial(bmDev.get(), image.get());
63 SkASSERT(!special->isTextureBacked());
64 SkASSERT(kWidth == special->width());
65 SkASSERT(kHeight == special->height());
[all …]
/third_party/musl/libc-test/report_base/
DREPORT11 X ../../third_party/musl/libc-test/src/math/special/acosh.h:9: RN acosh(0x1.001f1c62cf304p+0) want …
12 X ../../third_party/musl/libc-test/src/math/special/acosh.h:10: RN acosh(0x1.00788c223616fp+0) want…
13 X ../../third_party/musl/libc-test/src/math/special/acosh.h:11: RN acosh(0x1.007b7a37c7606p+0) want…
14 X ../../third_party/musl/libc-test/src/math/special/acosh.h:12: RN acosh(0x1.01d173033243cp+0) want…
15 X ../../third_party/musl/libc-test/src/math/special/acosh.h:13: RN acosh(0x1.01d8f20e90409p+0) want…
16 X ../../third_party/musl/libc-test/src/math/special/acosh.h:14: RN acosh(0x1.01ef6122e68bep+0) want…
17 X ../../third_party/musl/libc-test/src/math/special/acosh.h:15: RN acosh(0x1.06822faf07879p+0) want…
18 X ../../third_party/musl/libc-test/src/math/special/acosh.h:17: RN acosh(0x1.069d65411ec51p+0) want…
19 X ../../third_party/musl/libc-test/src/math/special/acosh.h:18: RN acosh(0x1.071d6b2713d08p+0) want…
20 X ../../third_party/musl/libc-test/src/math/special/acosh.h:19: RN acosh(0x1.0728405f5140cp+0) want…
[all …]
/third_party/node/benchmark/fixtures/
Dcoverage-many-branches.js17 if (this.opts?.special && this.opts?.special?.x && this.opts?.special?.y) {
18 return this.opts.special.x + this.opts.special.y;
26 if (this.opts?.special && this.opts?.special?.x && this.opts?.special?.y) {
27 return this.opts.special.x * this.opts.special.y;
45 special: { property
65 special: { property
/third_party/boost/libs/container/test/
Dinsert_vs_emplace_test.cpp29 struct special struct in X
38 friend bool operator==(const special &l, const special &r) in operator ==()
41 static special sp;
96 operator<<(std::ostream& os, X::special const& sp) in operator <<()
108 X::special X::sp = X::special();
115 X::special insert_results; in main()
116 X::special emplace_results; in main()
125 X::sp = X::special(); in main()
139 X::sp = X::special(); in main()
153 X::sp = X::special(); in main()
[all …]
/third_party/musl/src/linux/
Dmount.c4 int mount(const char *special, const char *dir, const char *fstype, unsigned long flags, const void… in mount() argument
6 return syscall(SYS_mount, special, dir, fstype, flags, data); in mount()
9 int umount(const char *special) in umount() argument
11 return syscall(SYS_umount2, special, 0); in umount()
14 int umount2(const char *special, int flags) in umount2() argument
16 return syscall(SYS_umount2, special, flags); in umount2()
Dquotactl.c4 int quotactl(int cmd, const char *special, int id, char *addr) in quotactl() argument
6 return syscall(SYS_quotactl, cmd, special, id, addr); in quotactl()
/third_party/python/Lib/test/
Dtest_pprint.py904 special = "Portons dix bons \"whiskys\"\nà l'avocat goujat\t qui fumait au zoo"
905 self.assertEqual(pprint.pformat(special, width=68), repr(special))
906 self.assertEqual(pprint.pformat(special, width=31), """\
910 self.assertEqual(pprint.pformat(special, width=20), """\
916 self.assertEqual(pprint.pformat([[[[[special]]]]], width=35), """\
920 self.assertEqual(pprint.pformat([[[[[special]]]]], width=25), """\
926 self.assertEqual(pprint.pformat([[[[[special]]]]], width=23), """\
938 special *= 10
940 formatted = pprint.pformat(special, width=width)
941 self.assertEqual(eval(formatted), special)
[all …]
/third_party/boost/libs/numeric/odeint/examples/
Delliptic.py14 from scipy import special
20 sn1,cn1,dn1,phi1 = special.ellipj( data1[:,0] , 0.51 )
21 sn2,cn2,dn2,phi2 = special.ellipj( data2[:,0] , 0.51 )
22 sn3,cn3,dn3,phi3 = special.ellipj( data3[:,0] , 0.51 )
/third_party/mindspore/tests/st/probability/distribution/
Dtest_beta.py18 from scipy import special
94 log_normalization_a = np.log(special.beta(concentration1_a, concentration0_a))
95 log_normalization_b = np.log(special.beta(concentration1_b, concentration0_b))
97 - (special.digamma(concentration1_a) * (concentration1_b - concentration1_a)) \
98 - (special.digamma(concentration0_a) * (concentration0_b - concentration0_a)) \
99 … + (special.digamma(total_concentration_a) * (total_concentration_b - total_concentration_a))
234 log_normalization_a = np.log(special.beta(concentration1_a, concentration0_a))
235 log_normalization_b = np.log(special.beta(concentration1_b, concentration0_b))
237 - (special.digamma(concentration1_a) * (concentration1_b - concentration1_a)) \
238 - (special.digamma(concentration0_a) * (concentration0_b - concentration0_a)) \
[all …]
Dtest_gamma.py18 from scipy import special
94 expect_kl_loss = (concentration_a - concentration_b) * special.digamma(concentration_a) \
95 + special.gammaln(concentration_b) - special.gammaln(concentration_a) \
319 expect_kl_loss = (concentration_a - concentration_b) * special.digamma(concentration_a) \
320 + special.gammaln(concentration_b) - special.gammaln(concentration_a) \
/third_party/musl/libc-test/src/functionalext/supplement/linux/
Dmount.c27 const char special[] = "/mymount"; in mount_0100() local
29 int rev = mount(special, target, "", 0, ""); in mount_0100()
32 rev = umount(special); in mount_0100()
/third_party/grpc/test/core/util/
Dfuzzer_util.cc35 char* grpc_fuzzer_get_next_string(input_stream* inp, bool* special) { in grpc_fuzzer_get_next_string() argument
48 if (special != nullptr) { in grpc_fuzzer_get_next_string()
49 *special = (c == 1); in grpc_fuzzer_get_next_string()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/
DLLVMBuild.txt41 ; This is a special group whose required libraries are extended (by llvm-build)
49 ; This is a special group whose required libraries are extended (by llvm-build)
56 ; This is a special group whose required libraries are extended (by llvm-build)
70 ; This is a special group whose required libraries are extended (by llvm-build)
/third_party/mindspore/tests/st/ops/gpu/
Dtest_erfc_op.py18 from scipy import special
44 expect = special.erfc(x)
55 expect = special.erfc(x)
Dtest_erf_op.py18 from scipy import special
44 expect = special.erf(x)
55 expect = special.erf(x)
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
DXMLRecordWriter.java134 boolean special = false; in normalize()
145 special = false; in normalize()
149 special = c == '<' || c == '&'; in normalize()
150 if (special && sb == null) { in normalize()
155 if (special) { in normalize()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/impl/
DXMLRecordWriter.java138 boolean special = false; in normalize()
149 special = false; in normalize()
153 special = c == '<' || c == '&'; in normalize()
154 if (special && sb == null) { in normalize()
159 if (special) { in normalize()
/third_party/ltp/testcases/kernel/syscalls/quotactl/
Dquotactl_syscall_var.h17 static int do_quotactl(int fd, int cmd, const char *special, int id, caddr_t addr) in do_quotactl() argument
20 return quotactl(cmd, special, id, addr); in do_quotactl()
/third_party/glib/gio/tests/desktop-files/usr/applications/
Dgucharmap.desktop13 Comment=Insert special characters into documents
19 Comment[en_CA]=Insert special characters into documents
20 Comment[en_GB]=Insert special characters into documents
/third_party/flutter/skia/src/sksl/
DSkSLByteCodeGenerator.h149 Intrinsic(SpecialIntrinsic special) in Intrinsic()
151 , fValue(special) {} in Intrinsic()
159 Value(SpecialIntrinsic special) in Value() argument
160 : fSpecial(special) {} in Value()
/third_party/boost/libs/outcome/doc/src/content/motivation/
Derrno.md8 The idiom of returning, upon failure, a special value and storing an error code
17 return 0; // special value indicating failure
22 if (r == 0 || r == EOF) { // special values: i not read
47 Whatever type we return, we always need a special value to spare, which is
/third_party/pcre2/pcre2/src/
Dpcre2_substitute.c517 uint32_t special = 0; in pcre2_substitute() local
601 special = *(++ptr); in pcre2_substitute()
602 if (special != CHAR_PLUS && special != CHAR_MINUS) in pcre2_substitute()
609 rc = find_text_end(code, &ptr, repend, special == CHAR_MINUS); in pcre2_substitute()
613 if (special == CHAR_PLUS && *ptr == CHAR_COLON) in pcre2_substitute()
711 if (special == 0) /* Plain substitution */ in pcre2_substitute()
722 if (special != 0) in pcre2_substitute()
724 if (special == CHAR_MINUS) in pcre2_substitute()
/third_party/pcre2/pcre2/testdata/
Dtestinput61159 (?: \\ [^\x80-\xff] [^\\\x80-\xff\n\015()] * )* # (special normal*)*
1161 ) # special
1175 (?: \\ [^\x80-\xff] [^\\\x80-\xff\n\015"] * )* # ( special normal* )*
1187 (?: \\ [^\x80-\xff] [^\\\x80-\xff\n\015()] * )* # (special normal*)*
1189 ) # special
1204 (?: \\ [^\x80-\xff] [^\\\x80-\xff\n\015()] * )* # (special normal*)*
1206 ) # special
1218 (?: \\ [^\x80-\xff] [^\\\x80-\xff\n\015"] * )* # ( special normal* )*
1230 (?: \\ [^\x80-\xff] [^\\\x80-\xff\n\015()] * )* # (special normal*)*
1232 ) # special
[all …]
/third_party/ltp/tools/sparse/sparse-src/
Dexpression.c246 op = token_type(token) == TOKEN_SPECIAL ? token->special : 0; in builtin_offsetof_expr()
512 if (token->special == '(') { in primary_expression()
518 if (token->special == '[' && lookup_type(token->next)) { in primary_expression()
559 switch (token->special) { in postfix_expression()
577 post->op = token->special; in postfix_expression()
691 if (match_oplist(token->special, in unary_expression()
705 unary->op = token->special; in unary_expression()
711 if (match_oplist(token->special, '+', '-', '~', '!', 0)) { in unary_expression()
723 unary->op = token->special; in unary_expression()
812 int op = next->special; \
[all …]

12345678910>>...105