Searched refs:subLen (Results 1 – 9 of 9) sorted by relevance
/external/lzma/CPP/Windows/ |
D | FileLink.cpp | 230 unsigned subLen = Get16(p + 2); in Parse() local 246 if ((subOffs & 1) != 0 || subOffs > len || len - subOffs < subLen) in Parse() 250 GetString(p + subOffs, subLen >> 1, SubsName); in Parse() 290 unsigned subLen = Get16(p + 2); in Parse() local 306 if ((subOffs & 1) != 0 || subOffs > len || len - subOffs < subLen) in Parse() 312 Size = subLen; in Parse()
|
/external/okhttp/okio/okio/src/main/java/okio/ |
D | ByteString.java | 262 int subLen = endIndex - beginIndex; in substring() local 263 if (subLen < 0) throw new IllegalArgumentException("endIndex < beginIndex"); in substring() 269 byte[] copy = new byte[subLen]; in substring() 270 System.arraycopy(data, beginIndex, copy, 0, subLen); in substring()
|
/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/ |
D | ByteString.java | 264 int subLen = endIndex - beginIndex; in substring() local 265 if (subLen < 0) throw new IllegalArgumentException("endIndex < beginIndex"); in substring() 271 byte[] copy = new byte[subLen]; in substring() 272 System.arraycopy(data, beginIndex, copy, 0, subLen); in substring()
|
/external/llvm-project/mlir/lib/IR/ |
D | OperationSupport.cpp | 430 MutableOperandRange::slice(unsigned subStart, unsigned subLen, in slice() argument 432 assert((subStart + subLen) <= length && "invalid sub-range"); in slice() 433 MutableOperandRange subSlice(owner, start + subStart, subLen, in slice() 466 void MutableOperandRange::erase(unsigned subStart, unsigned subLen) { in erase() argument 467 assert((subStart + subLen) <= length && "invalid sub-range"); in erase() 470 owner->eraseOperands(start + subStart, subLen); in erase() 471 updateLength(length - subLen); in erase()
|
/external/okio/okio/src/commonMain/kotlin/okio/internal/ |
D | SegmentedByteString.kt | 103 val subLen = endIndex - beginIndex in commonSubstring() constant 104 require(subLen >= 0) { "endIndex=$endIndex < beginIndex=$beginIndex" } in commonSubstring() 118 newDirectory[index] = minOf(directory[s] - beginIndex, subLen) in commonSubstring()
|
D | ByteString.kt | 129 val subLen = endIndex - beginIndex in commonSubstring() constant 130 require(subLen >= 0) { "endIndex < beginIndex" } in commonSubstring()
|
/external/icu/icu4c/source/i18n/ |
D | ulocdata.cpp | 335 static const int32_t subLen = 3; in ulocdata_getLocaleSeparator() local 374 separator = (const UChar *)p0 + subLen; in ulocdata_getLocaleSeparator()
|
/external/icu/icu4c/source/common/ |
D | locdispnames.cpp | 484 static const int32_t subLen = 3; in uloc_getDisplayName() local 554 separator = (const UChar *)p0 + subLen; in uloc_getDisplayName() 736 patPos+=subLen; in uloc_getDisplayName()
|
/external/llvm-project/mlir/include/mlir/IR/ |
D | OperationSupport.h | 719 MutableOperandRange slice(unsigned subStart, unsigned subLen, 732 void erase(unsigned subStart, unsigned subLen = 1);
|