HomeSort by relevance Sort by last modified time
    Searched full:newoffset (Results 1 - 25 of 258) sorted by null

1 2 3 4 5 6 7 8 91011

  /prebuilts/go/darwin-x86/src/debug/elf/
reader.go 64 var newOffset int64
67 newOffset = offset
69 newOffset = r.offset + offset
71 newOffset = r.size + offset
77 case newOffset == r.offset:
78 return newOffset, nil
80 case newOffset < 0, newOffset > r.size:
83 case newOffset == 0:
86 case newOffset == r.size
    [all...]
  /prebuilts/go/linux-x86/src/debug/elf/
reader.go 64 var newOffset int64
67 newOffset = offset
69 newOffset = r.offset + offset
71 newOffset = r.size + offset
77 case newOffset == r.offset:
78 return newOffset, nil
80 case newOffset < 0, newOffset > r.size:
83 case newOffset == 0:
86 case newOffset == r.size
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 103 public void putTypeListOffset(int oldOffset, int newOffset) {
104 if (oldOffset <= 0 || newOffset <= 0) {
107 typeListOffsets.put(oldOffset, newOffset);
110 public void putAnnotationOffset(int oldOffset, int newOffset) {
111 if (oldOffset <= 0 || newOffset <= 0) {
114 annotationOffsets.put(oldOffset, newOffset);
117 public void putAnnotationSetOffset(int oldOffset, int newOffset) {
118 if (oldOffset <= 0 || newOffset <= 0) {
121 annotationSetOffsets.put(oldOffset, newOffset);
124 public void putAnnotationSetRefListOffset(int oldOffset, int newOffset) {
    [all...]
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditor.java 79 private int newOffset;
641 newOffset = 0;
655 if (newOffset > oldOffset)
663 newInstructionOffsets[oldOffset] = newOffset;
665 return newOffset;
677 newInstructionOffsets[oldOffset] = newOffset;
683 newOffset += preInstruction.length(newOffset);
691 newOffset += replacementInstruction.length(newOffset);
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
IterCollationIterator.java 30 public void resetToOffset(int newOffset) {
32 iter.setIndex(newOffset);
UTF16CollationIterator.java 52 public void resetToOffset(int newOffset) {
54 pos = start + newOffset;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
IterCollationIterator.java 32 public void resetToOffset(int newOffset) {
34 iter.setIndex(newOffset);
UTF16CollationIterator.java 54 public void resetToOffset(int newOffset) {
56 pos = start + newOffset;
  /frameworks/support/design/src/android/support/design/widget/
HeaderBehavior.java 191 int setHeaderTopBottomOffset(CoordinatorLayout parent, V header, int newOffset) {
192 return setHeaderTopBottomOffset(parent, header, newOffset,
196 int setHeaderTopBottomOffset(CoordinatorLayout parent, V header, int newOffset,
204 newOffset = MathUtils.clamp(newOffset, minOffset, maxOffset);
206 if (curOffset != newOffset) {
207 setTopAndBottomOffset(newOffset);
209 consumed = curOffset - newOffset;
  /frameworks/base/core/jni/android/graphics/
Utils.cpp 67 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
68 if (-1 == newOffset) {
72 amount = newOffset - oldOffset;
  /prebuilts/go/darwin-x86/src/syscall/
asm_plan9_amd64.s 125 //func seek(placeholder uintptr, fd int, offset int64, whence int) (newoffset int64, err string)
127 LEAQ newoffset+32(FP), AX
135 MOVQ $-1, newoffset+32(FP)
syscall_linux_arm.go 47 // Underlying system call writes to newoffset via pointer.
49 func seek(fd int, offset int64, whence int) (newoffset int64, err Errno)
51 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
52 newoffset, errno := seek(fd, offset, whence)
56 return newoffset, nil
asm_plan9_386.s 126 //func seek(placeholder uintptr, fd int, offset int64, whence int) (newoffset int64, err string)
128 LEAL newoffset+20(FP), AX
  /prebuilts/go/linux-x86/src/syscall/
asm_plan9_amd64.s 125 //func seek(placeholder uintptr, fd int, offset int64, whence int) (newoffset int64, err string)
127 LEAQ newoffset+32(FP), AX
135 MOVQ $-1, newoffset+32(FP)
syscall_linux_arm.go 47 // Underlying system call writes to newoffset via pointer.
49 func seek(fd int, offset int64, whence int) (newoffset int64, err Errno)
51 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
52 newoffset, errno := seek(fd, offset, whence)
56 return newoffset, nil
asm_plan9_386.s 126 //func seek(placeholder uintptr, fd int, offset int64, whence int) (newoffset int64, err string)
128 LEAL newoffset+20(FP), AX
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 76 int newoffset = (lastUsed+1)*slotsize;
77 fastArray[newoffset] = w0;
78 fastArray[newoffset+1] = w1;
79 fastArray[newoffset+2] = w2;
80 fastArray[newoffset+3] = w3;
87 int newoffset = (lastUsed+1)*slotsize; local
88 int chunkpos = newoffset >> lowbits;
89 int slotpos = (newoffset & lowmask);
  /external/swiftshader/src/OpenGL/libGLESv2/
Buffer.h 71 void set(Buffer *newBuffer, int newOffset = 0, int newSize = 0)
74 offset = newOffset;
  /external/icu/icu4c/source/i18n/
coleitr.cpp 229 void CollationElementIterator::setOffset(int32_t newOffset,
233 if (0 < newOffset && newOffset < string_.length()) {
234 int32_t offset = newOffset;
244 if (offset < newOffset) {
249 // Find the last safe offset no greater than newOffset by iterating forward.
257 if (offset <= newOffset) {
260 } while (offset < newOffset);
261 newOffset = lastSafeOffset;
264 iter_->resetToOffset(newOffset);
    [all...]
uitercollationiterator.h 42 virtual void resetToOffset(int32_t newOffset);
74 virtual void resetToOffset(int32_t newOffset);
utf8collationiterator.h 43 virtual void resetToOffset(int32_t newOffset);
90 virtual void resetToOffset(int32_t newOffset);
  /external/clang/lib/StaticAnalyzer/Checkers/
PaddingChecker.cpp 234 CharUnits NewOffset = ASTContext.toCharUnitsFromBits(RL.getFieldOffset(0));
239 llvm::countTrailingZeros((unsigned long long)NewOffset.getQuantity());
240 // If NewOffset is zero, then countTrailingZeros will be 64. Shifting
257 NewOffset += Iter->Size;
263 CharUnits NextOffset = NewOffset.alignTo(Fields[0].Align);
264 NewPad += NextOffset - NewOffset;
265 NewOffset = NextOffset;
269 CharUnits NewSize = NewOffset.alignTo(RL.getAlignment());
270 NewPad += NewSize - NewOffset;
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
WavePlotView.java 190 int newOffset = sampleOffset;
193 newOffset = mCurrentOffset + sampleOffset;
199 int lastSample = newOffset + (int)getWindowSamples();
202 newOffset -= delta;
205 if (newOffset < 0)
206 newOffset = 0;
208 if (newOffset >= n)
209 newOffset = n - 1;
211 mCurrentOffset = newOffset;
  /external/llvm/lib/DebugInfo/CodeView/
StreamReader.cpp 62 uint32_t NewOffset = getOffset();
71 setOffset(NewOffset);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
cmptree.py 184 newoffset = offset + length
185 newid = remote._send('read', name, newoffset, length)
191 offset = newoffset

Completed in 2481 milliseconds

1 2 3 4 5 6 7 8 91011