Home
last modified time | relevance | path

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

12345678910>>...79

/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/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/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/elfutils/tests/
Drun-readelf-line.sh68 [ 3f] special opcode 159: address+10 = 0x80482fa <main+0xa>, line+1 = 17
69 [ 40] special opcode 117: address+7 = 0x8048301 <main+0x11>, line+1 = 18
71 [ 43] special opcode 200: address+13 = 0x804830e <main+0x1e>, line+0 = 9
72 [ 44] special opcode 48: address+2 = 0x8048310 <main+0x20>, line+2 = 11
73 [ 45] special opcode 58: address+3 = 0x8048313 <main+0x23>, line-2 = 9
74 [ 46] special opcode 48: address+2 = 0x8048315 <main+0x25>, line+2 = 11
75 [ 47] special opcode 44: address+2 = 0x8048317 <main+0x27>, line-2 = 9
77 [ 4a] special opcode 46: address+2 = 0x8048319 <main+0x29>, line+0 = 22
79 [ 4d] special opcode 60: address+3 = 0x804831c <main+0x2c>, line+0 = 9
81 [ 50] special opcode 60: address+3 = 0x804831f <main+0x2f>, line+0 = 21
[all …]
Drun-readelf-zdebug.sh398 [ 3d] special opcode 22: address+0 = 0x4003c0, line+4 = 5
399 [ 3e] special opcode 20: address+0 = 0x4003c0, line+2 = 7
400 [ 3f] special opcode 104: address+6 = 0x4003c6, line+2 = 9
401 [ 40] special opcode 77: address+4 = 0x4003ca, line+3 = 12
402 [ 41] special opcode 62: address+3 = 0x4003cd, line+2 = 14
403 [ 42] special opcode 86: address+5 = 0x4003d2, line-2 = 12
404 [ 43] special opcode 76: address+4 = 0x4003d6, line+2 = 14
405 [ 44] special opcode 47: address+2 = 0x4003d8, line+1 = 15
/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/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/rust/crates/nix/src/sys/
Dquota.rs242 special: Option<&P>, in quotactl()
248 let res = match special { in quotactl()
262 special: &P, in quotactl_on()
271 Some(special), in quotactl_on()
281 special: &P, in quotactl_off()
285 Some(special), in quotactl_off()
296 special: Option<&P>, in quotactl_sync()
300 special, in quotactl_sync()
309 special: &P, in quotactl_get()
315 Some(special), in quotactl_get()
[all …]
/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/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/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/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/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/pcre2/pcre2/src/
Dpcre2_substitute.c536 uint32_t special = 0; in pcre2_substitute() local
620 special = *(++ptr); in pcre2_substitute()
621 if (special != CHAR_PLUS && special != CHAR_MINUS) in pcre2_substitute()
628 rc = find_text_end(code, &ptr, repend, special == CHAR_MINUS); in pcre2_substitute()
632 if (special == CHAR_PLUS && *ptr == CHAR_COLON) in pcre2_substitute()
730 if (special == 0) /* Plain substitution */ in pcre2_substitute()
741 if (special != 0) in pcre2_substitute()
743 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/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/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 …]
/third_party/node/src/
Dnode_url.cc906 bool special = (url->flags & URL_FLAGS_SPECIAL); in Parse() local
908 bool special_back_slash = (special && ch == '\\'); in Parse()
936 if ((special != new_is_special) || in Parse()
953 special = true; in Parse()
956 special = false; in Parse()
958 special_back_slash = (special && ch == '\\'); in Parse()
964 } else if (special && in Parse()
968 } else if (special) { in Parse()
998 special = true; in Parse()
1001 special = false; in Parse()
[all …]
/third_party/ffmpeg/tests/fate/
Dwavpack.mak74 # special cases
77 fate-wavpack-clipping: CMD = md5 -i $(TARGET_SAMPLES)/wavpack/special/clipping.wv -f s16le -af ares…
80 fate-wavpack-cuesheet: CMD = md5 -i $(TARGET_SAMPLES)/wavpack/special/cue_sheet.wv -f s16le -af are…
83 fate-wavpack-falsestereo: CMD = md5 -i $(TARGET_SAMPLES)/wavpack/special/false_stereo.wv -f s16le -…
86 fate-wavpack-zerolsbs: CMD = md5 -i $(TARGET_SAMPLES)/wavpack/special/zero_lsbs.wv -f s16le -af are…
89 fate-wavpack-matroskamode: CMD = md5 -i $(TARGET_SAMPLES)/wavpack/special/matroska_mode.mka -f s16l…
/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/mesa3d/src/gallium/drivers/lima/ir/pp/
Ddisasm.c62 print_reg(ppir_codegen_vec4_reg reg, const char *special, FILE *fp) in print_reg() argument
64 if (special) { in print_reg()
65 fprintf(fp, "%s", special); in print_reg()
89 print_vector_source(ppir_codegen_vec4_reg reg, const char *special, in print_vector_source() argument
97 print_reg(reg, special, fp); in print_vector_source()
105 print_source_scalar(unsigned reg, const char *special, bool abs, bool neg, FILE *fp) in print_source_scalar() argument
112 print_reg(reg >> 2, special, fp); in print_source_scalar()
113 if (!special) in print_source_scalar()
/third_party/vk-gl-cts/external/vulkancts/mustpass/main/vksc-default/
Dglsl.txt8663 dEQP-VKSC.glsl.loops.special.for_constant_iterations.empty_body_vertex
8664 dEQP-VKSC.glsl.loops.special.for_constant_iterations.empty_body_fragment
8665 dEQP-VKSC.glsl.loops.special.for_constant_iterations.infinite_with_unconditional_break_first_vertex
8666 dEQP-VKSC.glsl.loops.special.for_constant_iterations.infinite_with_unconditional_break_first_fragme…
8667 dEQP-VKSC.glsl.loops.special.for_constant_iterations.infinite_with_unconditional_break_last_vertex
8668 dEQP-VKSC.glsl.loops.special.for_constant_iterations.infinite_with_unconditional_break_last_fragment
8669 dEQP-VKSC.glsl.loops.special.for_constant_iterations.infinite_with_conditional_break_vertex
8670 dEQP-VKSC.glsl.loops.special.for_constant_iterations.infinite_with_conditional_break_fragment
8671 dEQP-VKSC.glsl.loops.special.for_constant_iterations.single_statement_vertex
8672 dEQP-VKSC.glsl.loops.special.for_constant_iterations.single_statement_fragment
[all …]
/third_party/vk-gl-cts/android/cts/main/vksc-master/
Dglsl.txt4756 dEQP-VKSC.glsl.loops.special.for_constant_iterations.empty_body_vertex
4757 dEQP-VKSC.glsl.loops.special.for_constant_iterations.empty_body_fragment
4758 dEQP-VKSC.glsl.loops.special.for_constant_iterations.infinite_with_unconditional_break_first_vertex
4759 dEQP-VKSC.glsl.loops.special.for_constant_iterations.infinite_with_unconditional_break_first_fragme…
4760 dEQP-VKSC.glsl.loops.special.for_constant_iterations.infinite_with_unconditional_break_last_vertex
4761 dEQP-VKSC.glsl.loops.special.for_constant_iterations.infinite_with_unconditional_break_last_fragment
4762 dEQP-VKSC.glsl.loops.special.for_constant_iterations.infinite_with_conditional_break_vertex
4763 dEQP-VKSC.glsl.loops.special.for_constant_iterations.infinite_with_conditional_break_fragment
4764 dEQP-VKSC.glsl.loops.special.for_constant_iterations.single_statement_vertex
4765 dEQP-VKSC.glsl.loops.special.for_constant_iterations.single_statement_fragment
[all …]
/third_party/vk-gl-cts/android/cts/master/vk-master-2019-03-01/
Dglsl.txt4622 dEQP-VK.glsl.loops.special.for_constant_iterations.empty_body_vertex
4623 dEQP-VK.glsl.loops.special.for_constant_iterations.empty_body_fragment
4624 dEQP-VK.glsl.loops.special.for_constant_iterations.infinite_with_unconditional_break_first_vertex
4625 dEQP-VK.glsl.loops.special.for_constant_iterations.infinite_with_unconditional_break_first_fragment
4626 dEQP-VK.glsl.loops.special.for_constant_iterations.infinite_with_unconditional_break_last_vertex
4627 dEQP-VK.glsl.loops.special.for_constant_iterations.infinite_with_unconditional_break_last_fragment
4628 dEQP-VK.glsl.loops.special.for_constant_iterations.infinite_with_conditional_break_vertex
4629 dEQP-VK.glsl.loops.special.for_constant_iterations.infinite_with_conditional_break_fragment
4630 dEQP-VK.glsl.loops.special.for_constant_iterations.single_statement_vertex
4631 dEQP-VK.glsl.loops.special.for_constant_iterations.single_statement_fragment
[all …]

12345678910>>...79