Searched defs:split (Results 1 - 25 of 189) sorted by last modified time

12345678

/external/webrtc/webrtc/modules/video_coding/utility/
H A Dvp8_header_parser.cc80 const uint8_t split = (range * prob) >> 8; local
83 if (value > split) {
84 range -= split + 1;
85 br->value_ -= static_cast<uint32_t>(split + 1) << pos;
88 range = split;
/external/webrtc/webrtc/base/
H A Dstringencode.cc649 size_t split(const std::string& source, char delimiter, function in namespace:rtc
/external/webp/src/utils/
H A Dbit_reader_inl_utils.h117 const range_t split = (range * prob) >> 8; local
119 const int bit = (value > split);
121 range -= split;
122 br->value_ -= (bit_t)(split + 1) << pos;
124 range = split + 1;
144 const range_t split = br->range_ >> 1; local
146 const int32_t mask = (int32_t)(split - value) >> 31; // -1 or 0
150 br->value_ -= (bit_t)((split + 1) & mask) << pos;
165 const range_t split = (range * prob) >> 8; local
167 int bit; // Don't use 'const int bit = (value > split);", i
[all...]
H A Dbit_writer_utils.c109 const int split = (bw->range_ * prob) >> 8; local
111 bw->value_ += split + 1;
112 bw->range_ -= split + 1;
114 bw->range_ = split;
127 const int split = bw->range_ >> 1; local
129 bw->value_ += split + 1;
130 bw->range_ -= split + 1;
132 bw->range_ = split;
/external/vogar/src/vogar/
H A DOutcome.java95 return Arrays.asList(output.split("\n"));
102 return Arrays.asList(writer.toString().split("\\n"));
110 int split = split(outcomeName);
111 return split == -1 ? "defaultpackage" : outcomeName.substring(0, split);
118 int split = split(outcomeName);
119 return split == -1 ? outcomeName : outcomeName.substring(split
122 private static int split(String name) { method in class:Outcome
[all...]
/external/v8/tools/sanitizers/
H A Dsancov_formatter.py11 split: Split json file into separate files per covered source file.
141 file_name, number, _ = line.split(':')
375 def split(options): function
376 """Implements the 'split' action of this tool."""
413 help='Directory where to put split output files to.')
414 parser.add_argument('action', choices=['all', 'merge', 'split'],
434 elif options.action.lower() == 'split':
441 split(options)
/external/v4l2_codec2/vda/
H A Dvp8_bool_decoder.cc127 size_t split = 1 + (((range_ - 1) * probability) >> 8); local
130 size_t bigsplit = static_cast<size_t>(split) << (VP8_BD_VALUE_BIT - 8);
133 range_ -= split;
137 range_ = split;
H A Dvp9_bool_decoder.cc98 unsigned int split = (bool_range_ * prob + (256 - prob)) >> kBoolSize; local
99 BigBool big_split = static_cast<BigBool>(split)
104 bool_range_ = split;
107 bool_range_ -= split;
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/v8/src/
H A Dobjects.cc2833 FILE* file, const char* reason, int modify_index, int split,
2868 os << "+" << (descriptors - split) << " maps";
8979 // In case the map did not own its own descriptors, a split is forced by
19990 // Maybe split special_exports into indirect_exports and star_exports.
2832 PrintGeneralization( FILE* file, const char* reason, int modify_index, int split, int descriptors, bool descriptor_to_field, Representation old_representation, Representation new_representation, MaybeHandle<FieldType> old_field_type, MaybeHandle<Object> old_value, MaybeHandle<FieldType> new_field_type, MaybeHandle<Object> new_value) argument
/external/toybox/toys/pending/
H A Dfold.c42 int pos = 0, split = -1; local
54 split = -1;
73 split = pos;
80 if (!(toys.optflags & FLAG_s) || split < 0) split = pos;
81 xwrite(1, buf, split + 1);
83 bufsz -= split + 1;
84 buf += split + 1;
86 split = -1;
/external/toybox/generated/
H A Dglobals.h1315 // toys/posix/split.c
1527 struct split_data split; member in union:global_union
/external/testng/ant/3rdparty/
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...
/external/testng/ant/
H A Divy-2.1.0.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE fr/ fr/ ...
/external/testng/src/main/java/org/testng/internal/
H A DUtils.java65 * @param s the string to split
66 * @return the split token
69 // TODO CQ would s.split() be a better way of doing this?
96 // Bug in split when passed " " : returns one too many result
97 // result = line.split(" ");
428 public static String[] split(String string, String sep) { method in class:Utils
434 // return string.split(sep);
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DParser.java837 String[] v = split(s);
888 // Recognises quotes around a phrase and doesn't split it.
889 private static String[] split(String val) throws IllegalArgumentException { method in class:Parser
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DSplitter.cpp59 "Cannot split physical registers.");
79 assert(valid && "Attempt to apply invalid split.");
574 assert(splitBlock != 0 && "Failed to create split block.");
705 void LoopSplitter::processHeader(LoopSplit &split) { argument
706 MachineBasicBlock &header = *split.getLoop().getHeader();
709 if (!lis->isLiveInToMBB(split.getLI(), &header))
712 MachineBasicBlock *preHeader = split.getLoop().getLoopPreheader();
715 if (!canInsertPreHeader(split.getLoop())) {
716 split.invalidate();
723 if (lis->isLiveOutOfMBB(split
733 processLoopExits(LoopSplit &split) argument
759 processLoopUses(LoopSplit &split) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCAtom.cpp34 MCAtom *MCAtom::split(uint64_t SplitPt) { function in class:MCAtom
/external/swiftshader/third_party/LLVM/lib/Support/
H A DStringExtras.cpp61 void llvm::StringRef::split(SmallVectorImpl<StringRef> &A, function in class:llvm::StringRef
71 std::pair<llvm::StringRef, llvm::StringRef> p = rest.split(Separators);
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DInlineFunction.cpp113 // split unwind edge and then inlining it; but that can do almost
120 // transforms which split edges deal with that.
161 // Otherwise, we have to split at the first non-dominating block.
179 // br label %split // from lastDominated
184 // br label %split
185 // split:
186 // phis_2 (edge from lastDominated, edge from split)
203 BasicBlock *split = local
208 cast<BranchInst>(lastDominated->back()).setSuccessor(0, split);
214 Instruction *splitIP = &split
[all...]
/external/svox/pico/lib/
H A Dpicopr.c3345 picoos_bool split; local
3397 split = FALSE;
3412 split = TRUE;
3415 if (split) {
3416 /* split the token, eg. start a new item */
3435 split = FALSE;
3438 if (split) {
3439 /* split the token, eg. start a new item */
3451 split = FALSE;
/external/smali/util/src/main/java/org/jf/util/jcommander/
H A DColonParameterSplitter.java44 public List<String> split(String value) { method in class:ColonParameterSplitter
45 return Arrays.asList(value.split(":"));
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/
H A DEmitter.java797 boolean split = !simpleKeyContext && splitLines;
799 writePlain(analysis.scalar, split);
803 writeDoubleQuoted(analysis.scalar, split);
806 writeSingleQuoted(analysis.scalar, split);
809 writeFolded(analysis.scalar, split);
1150 private void writeSingleQuoted(String text, boolean split) throws IOException { argument
1163 if (start + 1 == end && this.column > this.bestWidth && split && start != 0
1213 private void writeDoubleQuoted(String text, boolean split) throws IOException { argument
1262 && (this.column + (end - start)) > this.bestWidth && split) {
1302 void writeFolded(String text, boolean split) throw argument
1412 writePlain(String text, boolean split) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
H A DTryListBuilder.java132 public MutableTryBlock<EH> split(int splitAddress) { method in class:TryListBuilder.MutableTryBlock
207 of an existing try range. We need to split the existing range
209 startBlock = tryBlock.split(startAddress);
260 existing range. We need to split the existing range
262 tryBlock.split(endAddress);
/external/skia/src/pathops/
H A DSkOpEdgeBuilder.cpp284 Splitsville* split = &splits[index]; local
285 split->fT[0] = index ? splitT[index - 1] : 0;
286 split->fT[1] = index < breaks ? splitT[index] : 1;
287 SkDCubic part = SkDCubic::SubDivide(pointsPtr, split->fT[0], split->fT[1]);
288 if (!part.toFloatPoints(split->fPts)) {
291 split->fVerb = SkReduceOrder::Cubic(split->fPts, split->fReduced);
293 ? split
297 Splitsville* split = &splits[index]; local
[all...]

Completed in 1199 milliseconds

12345678