/third_party/skia/src/pathops/ |
H A D | SkOpEdgeBuilder.cpp | 279 } splits[4]; in walk() local 280 SkASSERT(SK_ARRAY_COUNT(splits) == SK_ARRAY_COUNT(splitT) + 1); in walk() 283 Splitsville* split = &splits[index]; in walk() 296 Splitsville* split = &splits[index]; in walk() 301 while (prior > 0 && !splits[prior - 1].fCanAdd) { in walk() 305 split->fT[0] = splits[prior].fT[0]; in walk() 306 split->fPts[0] = splits[prior].fPts[0]; in walk() 309 int breakLimit = std::min(breaks, (int) SK_ARRAY_COUNT(splits) - 1); in walk() 310 while (next < breakLimit && !splits[next + 1].fCanAdd) { in walk() 314 split->fT[1] = splits[nex in walk() [all...] |
/third_party/python/Tools/unicode/ |
H A D | gencodec.py | 146 splits = 1 151 splits = 0 181 if splits == 0: 187 splits = splits + 1 188 if splits == 0:
|
/third_party/mbedtls/tests/scripts/ |
H A D | test_generate_test_code.py | 1219 splits = escaped_split('', ':') 1220 self.assertEqual(splits, []) 1229 splits = escaped_split(test_str, ':') 1230 self.assertEqual(splits, test_str.split(':')) 1238 splits = escaped_split(test_str, ':') 1239 self.assertEqual(splits, [r'yahoo\:google', 'facebook']) 1247 splits = escaped_split(test_str, ':') 1248 self.assertEqual(splits, [r'yahoo\\', 'google', 'facebook']) 1256 splits = escaped_split(test_str, ':') 1257 self.assertEqual(splits, [ [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | af_acrossover.c | 68 float splits[MAX_SPLITS]; member 212 if (i > 0 && freq <= s->splits[i-1]) { in init() 217 s->splits[i] = freq; in init() 485 set_lp(&s->lp[band][0], s->splits[band], 0.5, sample_rate); in config_input() 486 set_hp(&s->hp[band][0], s->splits[band], 0.5, sample_rate); in config_input() 492 set_lp(&s->lp[band][n], s->splits[band], q[idx], sample_rate); in config_input() 493 set_hp(&s->hp[band][n], s->splits[band], q[idx], sample_rate); in config_input() 497 set_ap1(&s->ap[band][0], s->splits[band], sample_rate); in config_input() 502 set_ap(&s->ap[band][n], s->splits[band], q[idx], sample_rate); in config_input()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | fldset.cpp | 70 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) in split() argument 74 splits = 1; in split() 76 splits += 1; in split() 79 UnicodeString *result = new UnicodeString[splits]; in split()
|
H A D | csdetest.cpp | 121 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) in split() argument 125 splits = 1; in split() 127 splits += 1; in split() 130 UnicodeString *result = new UnicodeString[splits]; in split() 163 int32_t splits = 0; in checkEncoding() local 165 std::unique_ptr<UnicodeString []> eSplit(split(encoding, CH_SLASH, splits)); in checkEncoding() 216 if (splits > 1 && lang.compare(eSplit[1]) != 0) { in checkEncoding()
|
H A D | regextst.cpp | 3100 UText *splits[10] = {NULL}; in API_Pattern_UTF8() local 3101 int32_t numFields = matcher.split(textToSplit, splits, UPRV_LENGTHOF(splits), status); in API_Pattern_UTF8() 3104 REGEX_ASSERT_UTEXT_INVARIANT("first", splits[0]); in API_Pattern_UTF8() 3105 REGEX_ASSERT_UTEXT_INVARIANT(":", splits[1]); in API_Pattern_UTF8() 3106 REGEX_ASSERT_UTEXT_INVARIANT("second", splits[2]); in API_Pattern_UTF8() 3107 REGEX_ASSERT_UTEXT_INVARIANT(":", splits[3]); in API_Pattern_UTF8() 3108 REGEX_ASSERT_UTEXT_INVARIANT("third", splits[4]); in API_Pattern_UTF8() 3109 REGEX_ASSERT(splits[5] == NULL); in API_Pattern_UTF8() 3111 for (int i=0; i<UPRV_LENGTHOF(splits); in API_Pattern_UTF8() 5455 UnicodeString splits[10]; Bug7029() local [all...] |
/third_party/rust/crates/rust-cexpr/tests/ |
H A D | clang.rs | 65 let mut splits = value.split(|c| *c == b'U'); in test_definition() variables 67 s.extend_from_slice(splits.next().unwrap()); in test_definition() 68 for split in splits { in test_definition()
|
/third_party/rust/crates/version_check/src/ |
H A D | version.rs | 58 let splits = version.split('-') in parse() 65 for (i, split) in splits.enumerate() { in parse()
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | 10079 let splits: &[&[_]] = &[&[1], &[3], &[5]]; in test_splitator() 10080 assert_eq!(xs.split(|x| *x % 2 == 0).collect::<Vec<_>>(), splits); in test_splitator() 10081 let splits: &[&[_]] = &[&[], &[2, 3, 4, 5]]; in test_splitator() 10082 assert_eq!(xs.split(|x| *x == 1).collect::<Vec<_>>(), splits); in test_splitator() 10083 let splits: &[&[_]] = &[&[1, 2, 3, 4], &[]]; in test_splitator() 10084 assert_eq!(xs.split(|x| *x == 5).collect::<Vec<_>>(), splits); in test_splitator() 10085 let splits: &[&[_]] = &[&[1, 2, 3, 4, 5]]; in test_splitator() 10086 assert_eq!(xs.split(|x| *x == 10).collect::<Vec<_>>(), splits); in test_splitator() 10087 let splits: &[&[_]] = &[&[], &[], &[], &[], &[], &[]]; in test_splitator() 10088 assert_eq!(xs.split(|_| true).collect::<Vec<&[i32]>>(), splits); in test_splitator() [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_split_vars.c | 290 * This pass splits arrays of structs into multiple variables, one for each 356 struct array_split *splits; member 533 split->splits = rzalloc_array(mem_ctx, struct array_split, in create_split_array_vars() 536 create_split_array_vars(var_info, level + 1, &split->splits[i], in create_split_array_vars() 826 split = &split->splits[index]; in split_array_access_impl() 829 assert(!split->splits && split->var); in split_array_access_impl()
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_ra.cpp | 858 std::list<Instruction *> splits; member in nv50_ir::GCRA 1163 splits.push_back(insn); in doCoalesce() 1636 splits.clear(); // avoid duplicate entries on next coalesce pass in cleanup() 1980 for (std::list<Instruction *>::iterator it = splits.begin(); in resolveSplitsAndMerges() 1981 it != splits.end(); in resolveSplitsAndMerges() 1992 splits.clear(); in resolveSplitsAndMerges() 2671 // spilling splits is annoying, just make sure they're separate in insertConstraintMoves()
|
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha512-ia64.pl | 524 // Pair of mmi; splits on Itanium 1 and prevents pipeline flush 541 // Pair of mmi; splits on Itanium 1 and prevents pipeline flush
|
/third_party/openssl/crypto/sha/asm/ |
H A D | sha512-ia64.pl | 524 // Pair of mmi; splits on Itanium 1 and prevents pipeline flush 541 // Pair of mmi; splits on Itanium 1 and prevents pipeline flush
|