Home
last modified time | relevance | path

Searched refs:special (Results 1 - 25 of 111) sorted by relevance

12345

/third_party/skia/tests/
H A DDeviceTest.cpp52 // Create a raster-backed special image from a raster-backed SkBitmap
53 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());
60 // Create a raster-backed special image from a raster-backed SkImage
62 special = DeviceTestingAccess::MakeSpecial(bmDev.get(), image.get());
63 SkASSERT(!special
96 sk_sp<SkSpecialImage> special = DeviceTestingAccess::MakeSpecial(device.get(), bm); DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local
[all...]
/third_party/node/benchmark/fixtures/
H A 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
[all...]
/third_party/musl/src/linux/
H A Dmount.c4 int mount(const char *special, const char *dir, const char *fstype, unsigned long flags, const void *data) 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()
H A 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/
H A 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()
293 /// If `special` is `None`, then all file systems with active quotas are sync'd.
296 special: Option<&P>, in quotactl_sync()
300 special, in quotactl_sync()
309 special in quotactl_get()
[all...]
/third_party/python/Lib/test/
H A Dtest_pprint.py907 # With some special characters
912 special = "Portons dix bons \"whiskys\"\nĂ  l'avocat goujat\t qui fumait au zoo"
913 self.assertEqual(pprint.pformat(special, width=68), repr(special))
914 self.assertEqual(pprint.pformat(special, width=31), """\
918 self.assertEqual(pprint.pformat(special, width=20), """\
924 self.assertEqual(pprint.pformat([[[[[special]]]]], width=35), """\
928 self.assertEqual(pprint.pformat([[[[[special]]]]], width=25), """\
934 self.assertEqual(pprint.pformat([[[[[special]]]]], width=23), """\
946 special *
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/linux/
H A 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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
H A 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/
H A 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/
H A 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/ltp/tools/sparse/sparse-src/
H A 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...]
H A Dtoken.h192 unsigned int special; member
237 return token->pos.type == TOKEN_SPECIAL && token->special == op; in match_op()
H A Dtokenize.c210 return show_special(token->special); in show_token()
268 return show_special(token->special); in quote_token()
446 static const char special[256] = { in nextchar() local
449 if (!special[c]) { in nextchar()
790 token->special = value; in get_one_special()
/third_party/pcre2/pcre2/src/
H A Dpcre2_substitute.c397 doing the special after-empty-match global rematch, or when at the end of the in pcre2_substitute()
435 /* Copy what we have advanced past (unless not required), reset the special in pcre2_substitute()
539 uint32_t special = 0; in pcre2_substitute() local
623 special = *(++ptr); in pcre2_substitute()
624 if (special != CHAR_PLUS && special != CHAR_MINUS) in pcre2_substitute()
631 rc = find_text_end(code, &ptr, repend, special == CHAR_MINUS); in pcre2_substitute()
635 if (special == CHAR_PLUS && *ptr == CHAR_COLON) in pcre2_substitute()
721 the captured string. If a group in a non-special substitution is unset in pcre2_substitute()
733 if (special in pcre2_substitute()
[all...]
/third_party/ffmpeg/tests/fate/
H A Dwavpack.mak72 # special cases
75 fate-wavpack-clipping: CMD = md5pipe -i $(TARGET_SAMPLES)/wavpack/special/clipping.wv -f s16le -af aresample
78 fate-wavpack-cuesheet: CMD = md5pipe -i $(TARGET_SAMPLES)/wavpack/special/cue_sheet.wv -f s16le -af aresample
82 fate-wavpack-cuesheet-tags: CMD = probetags $(TARGET_SAMPLES)/wavpack/special/cue_sheet.wv
85 fate-wavpack-falsestereo: CMD = md5pipe -i $(TARGET_SAMPLES)/wavpack/special/false_stereo.wv -f s16le -af aresample
88 fate-wavpack-zerolsbs: CMD = md5pipe -i $(TARGET_SAMPLES)/wavpack/special/zero_lsbs.wv -f s16le -af aresample
91 fate-wavpack-matroskamode: CMD = md5pipe -i $(TARGET_SAMPLES)/wavpack/special/matroska_mode.mka -f s16le -af aresample
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
H A 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/ninja/src/
H A Deval_env.cc141 bool special = (i->second == SPECIAL); in Unparse() local
142 if (special) in Unparse()
145 if (special) in Unparse()
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_dict.py67 special = not tail and self.in_special_context(node, isiter)
74 if not (special or isview):
/third_party/node/deps/v8/src/objects/
H A Dswiss-hash-table-helpers.h265 auto special = _mm_set1_epi8(kSentinel);
267 _mm_movemask_epi8(_mm_cmpgt_epi8_fixed(special, ctrl)));
272 auto special = _mm_set1_epi8(kSentinel);
274 _mm_movemask_epi8(_mm_cmpgt_epi8_fixed(special, ctrl)) + 1);
/third_party/node/deps/v8/src/strings/
H A Dstring-builder.cc15 void StringBuilderConcatHelper(String special, sinkchar* sink, in StringBuilderConcatHelper() argument
37 String::WriteToFlat(special, sink + position, pos, len); in StringBuilderConcatHelper()
48 template void StringBuilderConcatHelper<uint8_t>(String special, uint8_t* sink,
52 template void StringBuilderConcatHelper<base::uc16>(String special,
/third_party/skia/src/gpu/v1/
H A DDevice_drawTexture.cpp708 void Device::drawSpecial(SkSpecialImage* special, in drawSpecial() argument
713 SkASSERT(special->isTextureBacked()); in drawSpecial()
715 SkRect src = SkRect::Make(special->subset()); in drawSpecial()
716 SkRect dst = SkRect::MakeWH(special->width(), special->height()); in drawSpecial()
723 SkColorInfo colorInfo(special->colorType(), in drawSpecial()
724 special->alphaType(), in drawSpecial()
725 sk_ref_sp(special->getColorSpace())); in drawSpecial()
727 GrSurfaceProxyView view = special->view(this->recordingContext()); in drawSpecial()
728 SkImage_Gpu image(sk_ref_sp(special in drawSpecial()
[all...]
/third_party/mesa3d/src/panfrost/bifrost/valhall/
H A Dva_validate.c32 * An instruction may access no more than a single special immediate (e.g. lane_id).
36 * An instruction may only access a single page of (special or uniform) FAU.
87 bool special = !bi_is_null(buf) && fau_is_special(buf.value); in fau_state_special() local
89 if (special && !bi_is_equiv(buf, idx)) in fau_state_special()
/third_party/mesa3d/src/panfrost/midgard/
H A Dmir_promote_uniforms.c233 /* Bitset of indices that will be used as a special register -- inputs to a
244 /* Look for special instructions */ in mir_special_indices()
252 /* Anything read by a special instruction is itself special */ in mir_special_indices()
283 /* First, figure out special indices a priori so we don't recompute a lot */ in midgard_promote_uniforms()
284 BITSET_WORD *special = mir_special_indices(ctx); in midgard_promote_uniforms() local
322 * we're being fed into a special class */ in midgard_promote_uniforms()
327 needs_move |= BITSET_TEST(special, ins->dest); in midgard_promote_uniforms()
345 free(special); in midgard_promote_uniforms()
/third_party/node/deps/v8/src/runtime/
H A Druntime-strings.cc206 Handle<String> special = args.at<String>(2); in RUNTIME_FUNCTION() local
219 int special_length = special->length(); in RUNTIME_FUNCTION()
225 bool one_byte = special->IsOneByteRepresentation(); in RUNTIME_FUNCTION()
256 StringBuilderConcatHelper(*special, answer->GetChars(no_gc), in RUNTIME_FUNCTION()
265 StringBuilderConcatHelper(*special, answer->GetChars(no_gc), in RUNTIME_FUNCTION()
446 int prev_index = -1; // Start at -1 to avoid special-casing the first match. in RUNTIME_FUNCTION()
/third_party/rust/crates/glob/src/
H A Dlib.rs338 // Shouldn't happen, but we're using -1 as a special index. in next()
665 // note that ! does not need escaping because it is only special in escape()
809 // special-casing patterns to match `.` and `..`, and avoiding `readdir()`
852 let special = "." == s || ".." == s; in fill_todo()
858 if (special && is_dir) || (!special && fs::metadata(&next_path).is_ok()) { in fill_todo()
880 // Matching the special directory entries . and .. that in fill_todo()
886 for &special in &[".", ".."] { in fill_todo()
887 if pattern.matches_with(special, options) { in fill_todo()
888 add(todo, path.join(special)); in fill_todo()
[all...]

Completed in 16 milliseconds

12345