HomeSort by relevance Sort by last modified time
    Searched refs:offset (Results 601 - 625 of 2990) sorted by null

<<21222324252627282930>>

  /external/elfutils/libdw/
dwarf_siblingof.c 53 Dwarf_Off offset; local
55 if (dwarf_formref (&sibattr, &offset) != 0)
62 + sibattr.cu->start + offset);
  /external/kernel-headers/original/asm-generic/bitops/
le.h 22 #define generic_find_next_zero_le_bit(addr, size, offset) find_next_zero_bit(addr, size, offset)
44 unsigned long size, unsigned long offset);
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/common/src/
lsp_lsf.cpp 174 Word16 i, ind, offset;
180 offset = lsf[i] & 0x00ff; // offset = b0-b7 of lsf[i]
182 // lsp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 256
184 L_tmp = L_mult (sub (table[ind + 1], table[ind]), offset);
221 Word16 i, ind, offset; local
227 offset = lsf[i] & 0x00ff; /* offset = b0-b7 of lsf[i] */
229 /* lsp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 256 */
231 L_tmp = ((Word32)(table[ind + 1] - table[ind]) * offset) >> 8
    [all...]
  /external/openssl/crypto/asn1/
a_utctm.c 232 int offset; local
238 offset=0;
241 offset = g2(s->data+13)*60+g2(s->data+15);
243 offset = -offset;
246 t -= offset*60; /* FIXME: may overflow in extreme cases */
271 int offset;
285 offset=0;
288 offset=g2(s->data+13)*60+g2(s->data+15);
290 offset= -offset
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/
StackMapTableAttribute.java 80 int offset = 0; local
86 // Note that the byte code offset is computed differently for the
88 offset += stackMapFrame.getOffsetDelta() + (index == 0 ? 0 : 1);
90 stackMapFrame.accept(clazz, method, codeAttribute, offset, stackMapFrameVisitor);
  /external/proguard/src/proguard/classfile/editor/
VariableSizeUpdater.java 77 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
80 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
94 System.out.println("Max locals: "+codeAttribute.u2maxLocals+" <- "+variableInstruction.toString(offset));
  /external/proguard/src/proguard/optimize/info/
BackwardBranchMarker.java 41 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
44 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
50 public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction)
64 * Marks the given method if the given branch offset is negative.
  /external/qemu/hw/
goldfish_timer.c 74 static uint32_t goldfish_timer_read(void *opaque, target_phys_addr_t offset)
77 switch(offset) {
84 cpu_abort (cpu_single_env, "goldfish_timer_read: Bad offset %x\n", offset);
89 static void goldfish_timer_write(void *opaque, target_phys_addr_t offset, uint32_t value)
93 switch(offset) {
117 cpu_abort (cpu_single_env, "goldfish_timer_write: Bad offset %x\n", offset);
159 static uint32_t goldfish_rtc_read(void *opaque, target_phys_addr_t offset)
162 switch(offset) {
    [all...]
  /external/skia/src/core/
SkMMapStream.cpp 19 off_t offset = lseek(fildes, 0, SEEK_END); // find the file size local
20 if (offset == -1)
26 (void)lseek(fildes, 0, SEEK_SET); // restore file offset to beginning
29 size_t size = static_cast<size_t>(offset);
  /external/webkit/WebCore/bindings/js/
JSWebGLByteArrayCustom.cpp 65 // void set(in WebGLByteArray array, [Optional] in unsigned long offset);
66 unsigned offset = 0; local
68 offset = args.at(1).toInt32(exec);
70 impl()->set(array, offset, ec);
JSWebGLFloatArrayCustom.cpp 63 // void set(in WebGLFloatArray array, [Optional] in unsigned long offset);
64 unsigned offset = 0; local
66 offset = args.at(1).toInt32(exec);
68 impl()->set(array, offset, ec);
JSWebGLIntArrayCustom.cpp 63 // void set(in WebGLIntArray array, [Optional] in unsigned long offset);
64 unsigned offset = 0; local
66 offset = args.at(1).toInt32(exec);
68 impl()->set(array, offset, ec);
JSWebGLShortArrayCustom.cpp 63 // void set(in WebGLShortArray array, [Optional] in unsigned long offset);
64 unsigned offset = 0; local
66 offset = args.at(1).toInt32(exec);
68 impl()->set(shortArray, offset, ec);
JSWebGLUnsignedByteArrayCustom.cpp 63 // void set(in WebGLUnsignedByteArray array, [Optional] in unsigned long offset);
64 unsigned offset = 0; local
66 offset = args.at(1).toInt32(exec);
68 impl()->set(array, offset, ec);
JSWebGLUnsignedIntArrayCustom.cpp 63 // void set(in WebGLUnsignedIntArray array, [Optional] in unsigned long offset);
64 unsigned offset = 0; local
66 offset = args.at(1).toInt32(exec);
68 impl()->set(array, offset, ec);
JSWebGLUnsignedShortArrayCustom.cpp 63 // void set(in WebGLUnsignedShortArray array, [Optional] in unsigned long offset);
64 unsigned offset = 0; local
66 offset = args.at(1).toInt32(exec);
68 impl()->set(array, offset, ec);
  /external/webkit/WebCore/html/canvas/
WebGLByteArray.h 52 virtual PassRefPtr<WebGLArray> slice(unsigned offset, unsigned length);
89 void set(WebGLByteArray* array, unsigned offset, ExceptionCode& ec);
93 int offset,
  /external/webkit/WebCore/page/
DOMSelection.h 62 void setPosition(Node*, int offset, ExceptionCode&);
77 void collapse(Node*, int offset, ExceptionCode&);
80 void extend(Node*, int offset, ExceptionCode&);
  /external/webkit/WebCore/platform/graphics/android/
GlyphMapAndroid.cpp 42 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
73 setGlyphDataForIndex(offset + i, glyphID, fontData);
79 setGlyphDataForIndex(offset + i, glyphID, fontData);
  /external/webkit/WebCore/platform/graphics/gtk/
GlyphPageTreeNodePango.cpp 74 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
88 setGlyphDataForIndex(offset + i, 0, 0);
90 setGlyphDataForIndex(offset + i, glyph, fontData);
  /frameworks/base/core/java/android/app/backup/
BackupDataInput.java 152 * @param offset Offset within the 'data' array at which the data will be placed
159 public int readEntityData(byte[] data, int offset, int size) throws IOException {
161 int result = readEntityData_native(mBackupReader, data, offset, size);
192 private native int readEntityData_native(int mBackupReader, byte[] data, int offset, int size);
  /frameworks/base/core/java/android/speech/srec/
MicrophoneInputStream.java 70 public int read(byte[] b, int offset, int length) throws IOException {
73 return AudioRecordRead(mAudioRecord, b, offset, length);
107 private static native int AudioRecordRead(int audioRecord, byte[] b, int offset, int length) throws IOException;
  /frameworks/base/core/java/android/widget/
ScrollBarDrawable.java 85 public void setParameters(int range, int offset, int extent, boolean vertical) {
90 if (mRange != range || mOffset != offset || mExtent != extent) {
95 mOffset = offset;
126 int offset = Math.round((float) (size - length) * mOffset / (range - extent)); local
134 if (offset + length > size) {
135 offset = size - length;
138 drawThumb(canvas, r, offset, length, vertical);
163 protected void drawThumb(Canvas canvas, Rect bounds, int offset, int length, boolean vertical) {
168 thumbRect.set(bounds.left, bounds.top + offset,
169 bounds.right, bounds.top + offset + length)
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
BitwiseInputStream.java 32 // The current position offset, in bits, from the msb in byte 0.
35 // The last valid bit offset.
76 int offset = 16 - (mPos & 0x07) - bits; // &7==%8 local
82 if (offset < 8) data |= mBuf[index + 1] & 0xFF;
83 data >>>= offset; local
BitwiseOutputStream.java 32 // The current position offset, in bits, from the msb in byte 0.
35 // The last bit offset, given the current buf length.
98 int offset = 16 - (mPos & 0x07) - bits; // &7==%8 local
99 data <<= offset; local
102 if (offset < 8) mBuf[index + 1] |= data & 0xFF;

Completed in 1789 milliseconds

<<21222324252627282930>>