Searched defs:split (Results 1 - 25 of 182) sorted by relevance

12345678

/external/chromium_org/v8/test/message/
H A Doverwritten-builtins.js28 String.prototype.split = function() { return "SPLIT ERROR"; };
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DQuadraticParameterization_Test.cpp21 // split large quadratic
25 QuadraticPair split; local
26 chop_at(test, split, 0.5);
30 &test, &midThird, &split.first(), &split.second()
H A DCubicParameterization_Test.cpp22 // split large quadratic
27 QuadraticPair split; local
28 chop_at(test, split, 0.5);
33 quad_to_cubic(split.first(), first);
34 quad_to_cubic(split.second(), second);
/external/skia/experimental/Intersection/
H A DQuadraticParameterization_Test.cpp21 // split large quadratic
25 QuadraticPair split; local
26 chop_at(test, split, 0.5);
30 &test, &midThird, &split.first(), &split.second()
H A DCubicParameterization_Test.cpp22 // split large quadratic
27 QuadraticPair split; local
28 chop_at(test, split, 0.5);
33 quad_to_cubic(split.first(), first);
34 quad_to_cubic(split.second(), second);
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dblock_splitter.h15 // Block split point selection utilities.
38 explicit BlockSplitIterator(const BlockSplit& split) argument
39 : split_(split), idx_(0), type_(0), length_(0) {
40 if (!split.lengths_.empty()) {
41 length_ = split.lengths_[0];
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow_swizzles.c37 struct rc_swizzle_split split; local
47 c->SwizzleCaps->Split(inst->U.I.SrcReg[src], usemask, &split);
49 for(unsigned int phase = 0; phase < split.NumPhases; ++phase) {
57 mov->U.I.DstReg.WriteMask = split.Phase[phase];
63 if (!GET_BIT(split.Phase[phase], chan))
71 masked_negate = split.Phase[phase] & mov->U.I.SrcReg[0].Negate;
74 else if (masked_negate == split.Phase[phase])
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow_swizzles.c37 struct rc_swizzle_split split; local
47 c->SwizzleCaps->Split(inst->U.I.SrcReg[src], usemask, &split);
49 for(unsigned int phase = 0; phase < split.NumPhases; ++phase) {
57 mov->U.I.DstReg.WriteMask = split.Phase[phase];
63 if (!GET_BIT(split.Phase[phase], chan))
71 masked_negate = split.Phase[phase] & mov->U.I.SrcReg[0].Negate;
74 else if (masked_negate == split.Phase[phase])
/external/okhttp/okio/src/main/java/okio/
H A DSegment.java81 public Segment split(int byteCount) { method in class:Segment
86 // Which side of the split is larger? We want to copy as few bytes as possible.
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStrings.java273 public static String[] split(String input, char delimiter) method in class:Strings
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DTransitions.py57 i = self.split(code0)
58 j = self.split(code1)
73 i = self.split(code0)
74 j = self.split(code1)
116 def split(self, code, member in class:TransitionMap
119 Search the list for the position of the split point for |code|,
120 inserting a new split point if necessary. Returns index |i| such
/external/chromium_org/third_party/libwebp/utils/
H A Dbit_reader_inl.h119 const range_t split = (range * prob) >> 8; local
122 const int bit = ((int)(split - value) >> 31) & 1;
123 if (value > split) {
124 range -= split + 1;
125 br->value_ -= (bit_t)(split + 1) << pos;
127 range = split;
130 int bit; // Don't use 'const int bit = (value > split);", it's slower.
131 if (value > split) {
132 range -= split + 1;
133 br->value_ -= (bit_t)(split
157 const range_t split = br->range_ >> 1; local
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPathOpsQuadParameterizationTest.cpp30 // split large quadratic
34 SkDQuadPair split = test.chopAt(0.5); local
37 &test, &midThird, &split.first(), &split.second()
/external/llvm/lib/MC/MCAnalysis/
H A DMCAtom.cpp60 MCDataAtom *MCDataAtom::split(uint64_t SplitPt) { function in class:MCDataAtom
97 MCTextAtom *MCTextAtom::split(uint64_t SplitPt) { function in class:MCTextAtom
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTextUtils.java68 public static String[] split(String text, String expression) { method in class:ShadowTextUtils
73 return text.split(expression);
/external/skia/tests/
H A DPathOpsQuadParameterizationTest.cpp30 // split large quadratic
34 SkDQuadPair split = test.chopAt(0.5); local
37 &test, &midThird, &split.first(), &split.second()
/external/webp/src/utils/
H A Dbit_reader_inl.h118 const range_t split = (range * prob) >> 8; local
121 const int bit = ((int)(split - value) >> 31) & 1;
122 if (value > split) {
123 range -= split + 1;
124 br->value_ -= (bit_t)(split + 1) << pos;
126 range = split;
129 int bit; // Don't use 'const int bit = (value > split);", it's slower.
130 if (value > split) {
131 range -= split + 1;
132 br->value_ -= (bit_t)(split
156 const range_t split = br->range_ >> 1; local
[all...]
/external/chromium-libpac/src/
H A Dnet_util.cc66 unsigned int split = cidr_literal.find('/'); local
67 if (split == std::string::npos)
69 parts.push_back(cidr_literal.substr(0, split));
70 parts.push_back(cidr_literal.substr(split + 1));
/external/chromium_org/extensions/common/features/
H A Dbase_feature_provider.cc40 std::vector<std::string> split; local
41 base::SplitString(iter.key(), '.', &split);
49 while (!split.empty()) {
50 std::string parent_name = JoinString(split, '.');
51 split.pop_back();
146 std::vector<std::string> split;
147 base::SplitString(feature->name(), '.', &split);
148 if (split.size() < 2)
150 split.pop_back();
151 return GetFeature(JoinString(split, '
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Ddboolhuff.h61 unsigned int split; local
66 split = 1 + (((br->range - 1) * probability) >> 8);
74 bigsplit = (VP8_BD_VALUE)split << (VP8_BD_VALUE_SIZE - 8);
76 range = split;
80 range = br->range - split;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dboolhuff.h64 unsigned int split; local
81 split = 1 + (((range - 1) * probability) >> 8);
83 range = split;
87 lowvalue += split;
88 range = br->range - split;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_reader.h61 unsigned int split = (r->range * prob + (256 - prob)) >> CHAR_BIT; local
69 bigsplit = (BD_VALUE)split << (BD_VALUE_SIZE - CHAR_BIT);
71 range = split;
74 range = r->range - split;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_writer.h34 unsigned int split; local
40 split = 1 + (((range - 1) * probability) >> 8);
42 range = split;
45 lowvalue += split;
46 range = br->range - split;
/external/chromium_org/third_party/opus/src/src/
H A Drepacketizer_demo.c67 int merge = 1, split=0; local
90 } else if (strcmp(argv[i], "-split")==0)
91 split = 1;
158 if (!split)
/external/clang/utils/
H A Dtoken-delta.py46 return self.delta(changes, self.split(changes))
48 def split(self, S): member in class:DeltaAlgorithm
49 """split(set) -> [sets]
54 # There are many ways to split, we could do a better job with more
76 refined = sum(map(list, map(self.split, sets)), [])
86 return self.delta(S, self.split(S))
118 for ln in err.split('\n'):

Completed in 797 milliseconds

12345678