Searched refs:maxOffset (Results 1 – 9 of 9) sorted by relevance
/external/proguard/src/proguard/optimize/evaluation/ |
D | LivenessAnalyzer.java | 253 checkAgain |= offset < maxOffset(partialEvaluator.branchOrigins(offset)); in visitCodeAttribute() 497 private int maxOffset(Value instructionOffsets) 499 return maxOffset(instructionOffsets, Integer.MIN_VALUE); 506 private int maxOffset(Value instructionOffsets, int maxOffset) 517 if (maxOffset < offset) 519 maxOffset = offset; 524 return maxOffset;
|
D | PartialEvaluator.java | 646 int maxOffset = startOffset; in evaluateSingleInstructionBlock() local 651 if (maxOffset < instructionOffset) in evaluateSingleInstructionBlock() 653 maxOffset = instructionOffset; in evaluateSingleInstructionBlock()
|
/external/icu/icu4c/source/test/intltest/ |
D | colldata.cpp | 515 int32_t maxOffset = ceList->size(); in minLengthInChars() local 539 if (roffset < maxOffset) { in minLengthInChars() 572 if (roffset < maxOffset) { in minLengthInChars() 587 for (int32_t j = 0; roffset < maxOffset && j < 4; j += 1, roffset += 1) { in minLengthInChars() 609 if (roffset < maxOffset && isContinuation(ceList->get(roffset))) { in minLengthInChars() 614 if (roffset < maxOffset) { in minLengthInChars()
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | ArrayBufferView.h | 118 unsigned maxOffset = (UINT_MAX - arrayByteOffset) / sizeof(T); in clampOffsetAndNumElements() local 119 if (*offset > maxOffset) { in clampOffsetAndNumElements()
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | colldata.cpp | 877 int32_t maxOffset = ceList->size(); in minLengthInChars() local 904 if (roffset < maxOffset) { in minLengthInChars() 940 if (roffset < maxOffset) { in minLengthInChars() 955 for (int32_t j = 0; roffset < maxOffset && j < 4; j += 1, roffset += 1) { in minLengthInChars() 977 if (roffset < maxOffset && isContinuation(ceList->get(roffset))) { in minLengthInChars() 982 if (roffset < maxOffset) { in minLengthInChars()
|
/external/deqp/modules/glshared/ |
D | glsUniformBlockCase.cpp | 1844 int maxOffset = 0; in checkLayoutBounds() local 1851 maxOffset = de::max(maxOffset, vecSize); in checkLayoutBounds() 1852 maxOffset = de::max(maxOffset, (numVecs-1)*uniform.matrixStride + vecSize); in checkLayoutBounds() 1853 maxOffset = de::max(maxOffset, (numElements-1)*uniform.arrayStride + vecSize); in checkLayoutBounds() 1854 …maxOffset = de::max(maxOffset, (numElements-1)*uniform.arrayStride + (numVecs-1)*uniform.matrixStr… in checkLayoutBounds() 1856 if (uniform.offset+minOffset < 0 || uniform.offset+maxOffset > block.size) in checkLayoutBounds()
|
/external/deqp/modules/gles31/functional/ |
D | es31fSSBOLayoutCase.cpp | 2554 int maxOffset = 0; in checkLayoutBounds() local 2561 maxOffset = de::max(maxOffset, vecSize); in checkLayoutBounds() 2562 maxOffset = de::max(maxOffset, (numVecs-1)*var.matrixStride + vecSize); in checkLayoutBounds() 2563 maxOffset = de::max(maxOffset, (numElements-1)*arrayStride + vecSize); in checkLayoutBounds() 2564 …maxOffset = de::max(maxOffset, (topLevelSize-1)*topLevelStride + (numElements-1)*arrayStride + vec… in checkLayoutBounds() 2565 …maxOffset = de::max(maxOffset, (topLevelSize-1)*topLevelStride + (numElements-1)*arrayStride + (nu… in checkLayoutBounds() 2567 if (var.offset+minOffset < 0 || var.offset+maxOffset > block.size) in checkLayoutBounds()
|
D | es31fVertexAttributeBindingTests.cpp | 1458 glw::GLint maxOffset = -1; in iterate() local 1461 gl.glGetIntegerv(GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET, &maxOffset); in iterate() 1464 largeOffset = maxOffset + 1; in iterate() 1467 if (maxOffset == -1 || maxOffset == 0x7FFFFFFF) in iterate()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderText.cpp | 1651 int maxOffset = box->start() + box->len(); in caretMaxOffset() local 1653 maxOffset = max<int>(maxOffset, box->start() + box->len()); in caretMaxOffset() 1654 return maxOffset; in caretMaxOffset()
|