Searched refs:startOffset (Results 1 - 25 of 84) sorted by relevance

1234

/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DBCJOptions.java14 int startOffset = 0; field in class:BCJOptions
25 public void setStartOffset(int startOffset) argument
27 if ((startOffset & (alignment - 1)) != 0)
31 this.startOffset = startOffset;
38 return startOffset;
H A DBCJDecoder.java17 private final int startOffset; field in class:BCJDecoder
25 startOffset = 0;
31 startOffset = n;
46 simpleFilter = new X86(false, startOffset);
48 simpleFilter = new PowerPC(false, startOffset);
50 simpleFilter = new IA64(false, startOffset);
52 simpleFilter = new ARM(false, startOffset);
54 simpleFilter = new ARMThumb(false, startOffset);
56 simpleFilter = new SPARC(false, startOffset);
H A DBCJEncoder.java19 int startOffset = options.getStartOffset();
21 if (startOffset == 0) {
26 props[i] = (byte)(startOffset >>> (i * 8));
H A DARMOptions.java26 return new SimpleOutputStream(out, new ARM(true, startOffset));
30 return new SimpleInputStream(in, new ARM(false, startOffset));
H A DARMThumbOptions.java26 return new SimpleOutputStream(out, new ARMThumb(true, startOffset));
30 return new SimpleInputStream(in, new ARMThumb(false, startOffset));
H A DIA64Options.java26 return new SimpleOutputStream(out, new IA64(true, startOffset));
30 return new SimpleInputStream(in, new IA64(false, startOffset));
H A DPowerPCOptions.java26 return new SimpleOutputStream(out, new PowerPC(true, startOffset));
30 return new SimpleInputStream(in, new PowerPC(false, startOffset));
H A DSPARCOptions.java26 return new SimpleOutputStream(out, new SPARC(true, startOffset));
30 return new SimpleInputStream(in, new SPARC(false, startOffset));
H A DX86Options.java26 return new SimpleOutputStream(out, new X86(true, startOffset));
30 return new SimpleInputStream(in, new X86(false, startOffset));
/external/proguard/src/proguard/classfile/visitor/
H A DExceptionHandlerFilter.java37 private final int startOffset; field in class:ExceptionHandlerFilter
44 * @param startOffset the start of the instruction offset range.
49 public ExceptionHandlerFilter(int startOffset, argument
53 this.startOffset = startOffset;
64 if (handlerPC >= startOffset &&
H A DExceptionRangeFilter.java37 private final int startOffset; field in class:ExceptionRangeFilter
44 * @param startOffset the start offset of the instruction range.
49 public ExceptionRangeFilter(int startOffset, argument
53 this.startOffset = startOffset;
63 if (exceptionInfo.isApplicable(startOffset, endOffset))
/external/lzma/C/
H A DXzIn.c142 static SRes Xz_ReadBackward(CXzStream *p, ILookInStream *stream, Int64 *startOffset, ISzAlloc *alloc) argument
147 if ((*startOffset & 3) != 0 || *startOffset < XZ_STREAM_FOOTER_SIZE)
149 *startOffset = -XZ_STREAM_FOOTER_SIZE;
150 RINOK(SeekFromCur(stream, startOffset));
157 *startOffset += XZ_STREAM_FOOTER_SIZE;
163 if (*startOffset < XZ_STREAM_FOOTER_SIZE || total > (1 << 16))
165 i = (*startOffset > TEMP_BUF_SIZE) ? TEMP_BUF_SIZE : (size_t)*startOffset;
167 *startOffset
274 Xzs_ReadBackward(CXzs *p, ILookInStream *stream, Int64 *startOffset, ICompressProgress *progress, ISzAlloc *alloc) argument
[all...]
/external/proguard/src/proguard/classfile/attribute/
H A DExceptionInfo.java82 public boolean isApplicable(int startOffset, int endOffset) argument
85 u2endPC > startOffset;
H A DCodeAttribute.java129 public void instructionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, InstructionVisitor instructionVisitor) argument
131 int offset = startOffset;
179 public void exceptionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, ExceptionInfoVisitor exceptionInfoVisitor) argument
184 if (exceptionInfo.isApplicable(startOffset, endOffset))
/external/tpm2/
H A DNVMem.c165 unsigned int startOffset, // IN: read start
170 assert(startOffset + size <= NV_MEMORY_SIZE);
172 memcpy(data, &s_NV[startOffset], size);
192 unsigned int startOffset, // IN: read start
197 return (memcmp(&s_NV[startOffset], data, size) != 0);
208 unsigned int startOffset, // IN: write start
213 assert(startOffset + size <= NV_MEMORY_SIZE);
215 memcpy(&s_NV[startOffset], data, size);
164 _plat__NvMemoryRead( unsigned int startOffset, unsigned int size, void *data ) argument
191 _plat__NvIsDifferent( unsigned int startOffset, unsigned int size, void *data ) argument
207 _plat__NvMemoryWrite( unsigned int startOffset, unsigned int size, void *data ) argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringExtensions.cs126 public static string substring( string str, int startOffset )
128 return str.Substring( startOffset );
131 public static string substring( string str, int startOffset, int endOffset ) argument
133 return str.Substring( startOffset, endOffset - startOffset );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringExtensions.cs121 public static string substring( this string str, int startOffset )
123 return str.Substring( startOffset );
127 public static string substring(this string str, int startOffset, int endOffset) argument
129 return str.Substring( startOffset, endOffset - startOffset );
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAnimation.java24 private long startOffset; field in class:ShadowAnimation
98 public void setStartOffset(long startOffset) { argument
99 this.startOffset = startOffset;
104 return startOffset;
/external/icu/icu4c/source/test/perf/ubrkperf/
H A Dubrkperf.cpp90 UniCharCount startOffset = 0, breakOffset = 0, numUniChars = textSize;
91 startOffset = 0;
94 while (startOffset < numUniChars)
97 startOffset, &breakOffset);
98 //require_action(status == noErr, EXIT, printf( "**UCFindTextBreak failed: startOffset %d, status %d\n", (int)startOffset, (int)status));
99 //require_action((breakOffset <= numUniChars),EXIT, printf("**UCFindTextBreak breakOffset too big: startOffset %d, breakOffset %d\n", (int)startOffset, (int)breakOffset));
106 startOffset = breakOffset;
110 startOffset
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DAnnotationsDirectory.java211 private final int startOffset; field in class:AnnotationsDirectory.AnnotationsDirectoryImpl.AnnotationIteratorImpl
216 public AnnotationIteratorImpl(int startOffset, int size) { argument
217 this.startOffset = startOffset;
219 this.currentItemIndex = dexFile.readSmallUint(startOffset);
226 currentItemIndex = dexFile.readSmallUint(startOffset + (currentIndex*8));
230 return dexFile.readSmallUint(startOffset + (currentIndex*8)+4);
236 this.currentItemIndex = dexFile.readSmallUint(startOffset);
H A DVariableSizeListIterator.java44 private final int startOffset; field in class:VariableSizeListIterator
50 this.startOffset = offset;
88 reader.setOffset(startOffset);
/external/tpm2/include/tpm2/
H A DPlatform.h196 unsigned int startOffset, // IN: read start
214 unsigned int startOffset, // IN: read start
226 unsigned int startOffset, // IN: read start
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
H A Dtiming-utilities.js175 function calculateScaledActiveTime(activeDuration, activeTime, startOffset, timing) {
176 return (timing.playbackRate < 0 ? activeTime - activeDuration : activeTime) * timing.playbackRate + startOffset;
179 function calculateIterationTime(iterationDuration, repeatedDuration, scaledActiveTime, startOffset, timing) {
180 if (scaledActiveTime === Infinity || scaledActiveTime === -Infinity || (scaledActiveTime - startOffset == repeatedDuration && timing.iterations && ((timing.iterations + timing.iterationStart) % 1 == 0))) {
212 var startOffset = timing.iterationStart * timing.duration;
213 var scaledActiveTime = calculateScaledActiveTime(activeDuration, activeTime, startOffset, timing);
214 var iterationTime = calculateIterationTime(timing.duration, repeatedDuration(timing), scaledActiveTime, startOffset, timing);
/external/proguard/src/proguard/optimize/evaluation/
H A DPartialEvaluator.java327 public boolean isTraced(int startOffset, int endOffset) argument
329 for (int index = startOffset; index < endOffset; index++)
533 int startOffset)
537 startOffset));
546 int startOffset)
550 startOffset));
563 int startOffset,
571 startOffset);
576 startOffset,
590 int startOffset)
531 pushCallingInstructionBlock(TracedVariables variables, TracedStack stack, int startOffset) argument
544 pushInstructionBlock(TracedVariables variables, TracedStack stack, int startOffset) argument
558 evaluateInstructionBlockAndExceptionHandlers(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int startOffset, int endOffset) argument
585 evaluateInstructionBlock(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int startOffset) argument
624 evaluateSingleInstructionBlock(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int startOffset) argument
997 evaluateExceptionHandlers(Clazz clazz, Method method, CodeAttribute codeAttribute, int startOffset, int endOffset) argument
1202 generalizeVariables(int startOffset, int endOffset, boolean includeAfterLastInstruction, TracedVariables generalizedVariables) argument
1270 private int startOffset; field in class:PartialEvaluator.MyInstructionBlock
1273 MyInstructionBlock(TracedVariables variables, TracedStack stack, int startOffset) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
H A DDexBackedEncodedValue.java46 int startOffset = reader.getOffset();
108 throw ExceptionWithContext.withContext(ex, "Error while reading encoded value at offset 0x%x", startOffset);
113 int startOffset = reader.getOffset();
151 startOffset);

Completed in 713 milliseconds

1234