HomeSort by relevance Sort by last modified time
    Searched defs:oend (Results 1 - 6 of 6) sorted by null

  /frameworks/base/core/java/android/text/
Selection.java 73 int oend = getSelectionEnd(text); local
75 if (ostart != start || oend != stop) {
SpannableStringInternal.java 108 int oend = data[i * COLUMNS + END]; local
114 sendSpanChanged(what, ostart, oend, nstart, nend);
149 int oend = data[i * COLUMNS + END]; local
159 sendSpanRemoved(what, ostart, oend);
SpannableStringBuilder.java 243 int oend = mSpanEnds[i]; local
247 if (oend > mGapStart)
248 oend -= mGapLength;
253 sendSpanRemoved(what, ostart, oend);
723 int oend = mSpanEnds[i]; local
727 if (oend > mGapStart)
728 oend -= mGapLength;
736 sendSpanChanged(what, ostart, oend, nstart, nend);
    [all...]
  /external/lz4/lib/
lz4hc.c 293 BYTE* oend)
305 if ((limitedOutputBuffer) && ((*op + (length>>8) + length + (2 + 1 + LASTLITERALS)) > oend)) return 1; /* Check output limit */
318 if ((limitedOutputBuffer) && (*op + (length>>8) + (1 + LASTLITERALS) > oend)) return 1; /* Check output limit */
348 BYTE* const oend = op + maxOutputSize; local
387 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
441 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
443 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml2, ref2, limit, oend)) return 0;
465 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
506 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
lz4.c 962 BYTE* const oend = op + outputSize; local
    [all...]
  /external/lz4/programs/
frametest.c 229 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; local
246 size_t oSize = oend-op;
287 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; local
300 size_t oSize = oend-op;
449 BYTE* const oend = op + LZ4F_compressFrameBound(srcDataLength, NULL); local
451 result = LZ4F_compressBegin(cCtx, op, oend-op, prefsPtr);
470 result = LZ4F_flush(cCtx, op, oend-op, &cOptions);
475 result = LZ4F_compressEnd(cCtx, op, oend-op, &cOptions);
485 BYTE* const oend = op + srcDataLength; local
497 if (oSize > (size_t)(oend-op)) oSize = oend-op
    [all...]

Completed in 305 milliseconds