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

1 2 34 5 6 7 8 91011>>

  /external/e2fsprogs/lib/ext2fs/
llseek.c 42 extern long long llseek (int fd, long long offset, int origin);
70 static ext2_loff_t my_llseek (int fd, ext2_loff_t offset, int origin)
76 retval = _llseek(fd, ((unsigned long long) offset) >> 32,
78 retval = syscall(__NR__llseek, fd, (unsigned long long) (offset >> 32),
80 ((unsigned long long) offset) & 0xffffffff,
90 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin)
96 (offset < ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1))))
97 return lseek(fd, (off_t) offset, origin);
104 result = my_llseek (fd, offset, origin);
122 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin
    [all...]
  /external/opencore/baselibs/gen_data_structures/src/
buf_frag_group.cpp 32 int & offset,
45 int32 first_frag_size = fragments[idx+num_reserved_frags].len - offset;
63 offset += delta_in_bytes;
65 ptr = (uint8 *) frag->ptr + offset;
66 // ptr = (this->GetMediaFragment(idx))->ptr + offset + delta_in_bytes;
79 offset = remain;
91 offset = frag->len;
92 ptr = (uint8 *) frag->ptr + offset - 1;
98 if (offset >= oscl_abs(delta_in_bytes))
100 offset += delta_in_bytes
    [all...]
  /external/opencore/codecs_v2/audio/aac/dec/src/
getbits.h 103 UInt offset; local
107 offset = (pInputStream->usedBits) >> INBUF_ARRAY_INDEX_SHIFT;
109 pElem = pInputStream->pBuffer + offset;
113 offset = pInputStream->inputBufferCurrentLength - offset;
115 if (offset > 3)
132 switch (offset)
175 UInt offset; local
179 offset = (pInputStream->usedBits) >> INBUF_ARRAY_INDEX_SHIFT;
181 pElem = pInputStream->pBuffer + offset;
210 UInt offset; local
274 UInt offset; local
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
ReachableCodeMarker.java 49 * Returns whether the instruction at the given offset is reachable in
52 public boolean isReachable(int offset)
54 return isReachable[offset];
65 for (int offset = startOffset; offset < endOffset; offset++)
67 if (isReachable[offset])
116 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
132 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
137 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
getbits.h 103 UInt offset; local
107 offset = (pInputStream->usedBits) >> INBUF_ARRAY_INDEX_SHIFT;
109 pElem = pInputStream->pBuffer + offset;
113 offset = pInputStream->inputBufferCurrentLength - offset;
115 if (offset > 3)
132 switch (offset)
175 UInt offset; local
179 offset = (pInputStream->usedBits) >> INBUF_ARRAY_INDEX_SHIFT;
181 pElem = pInputStream->pBuffer + offset;
210 UInt offset; local
274 UInt offset; local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
SuballocatedIntVector.java 162 int offset=m_firstFree&m_MASK; local
174 block[offset]=value;
179 m_buildCacheStartIndex = m_firstFree-offset;
200 int offset=m_firstFree&m_MASK; local
214 int copied=(m_blocksize-offset < numberOfElements)
215 ? m_blocksize-offset : numberOfElements;
218 block[offset++]=value;
220 ++index;offset=0;
272 int offset=at&m_MASK; local
273 block[offset]=value
281 int offset=at&m_MASK; local
352 int offset=at&m_MASK; local
394 int offset=at&m_MASK; local
    [all...]
  /external/elfutils/libelf/
gelf_getverdaux.c 1 /* Get additional symbol version definition information at the given offset.
30 gelf_getverdaux (data, offset, dst)
32 int offset;
55 if (unlikely (offset < 0)
56 || unlikely (offset + sizeof (GElf_Verdaux) > data->d_size)
57 || unlikely (offset % __alignof__ (GElf_Verdaux) != 0))
63 result = (GElf_Verdaux *) memcpy (dst, (char *) data->d_buf + offset,
gelf_getverdef.c 1 /* Get symbol version definition information at the given offset.
30 gelf_getverdef (data, offset, dst)
32 int offset;
55 if (unlikely (offset < 0)
56 || unlikely (offset + sizeof (GElf_Verdef) > data->d_size)
57 || unlikely (offset % __alignof__ (GElf_Verdef) != 0))
63 result = (GElf_Verdef *) memcpy (dst, (char *) data->d_buf + offset,
gelf_getvernaux.c 1 /* Get additional required symbol version information at the given offset.
30 gelf_getvernaux (data, offset, dst)
32 int offset;
58 if (unlikely (offset < 0)
59 || unlikely (offset + sizeof (GElf_Vernaux) > data->d_size)
60 || unlikely (offset % sizeof (GElf_Vernaux) != 0))
66 result = (GElf_Vernaux *) memcpy (dst, (char *) data->d_buf + offset,
gelf_getverneed.c 1 /* Get required symbol version information at the given offset.
30 gelf_getverneed (data, offset, dst)
32 int offset;
58 if (unlikely (offset < 0)
59 || unlikely (offset + sizeof (GElf_Verneed) > data->d_size)
60 || unlikely (offset % sizeof (GElf_Verneed) != 0))
66 result = (GElf_Verneed *) memcpy (dst, (char *) data->d_buf + offset,
  /external/proguard/src/proguard/classfile/instruction/visitor/
InstructionVisitor.java 36 public void visitSimpleInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction);
37 public void visitVariableInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction);
38 public void visitConstantInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction);
39 public void visitBranchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction);
40 public void visitTableSwitchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction);
41 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction);
  /external/libpng/
pngerror.c 52 int offset; local
53 for (offset = 1; offset<15; offset++)
54 if (error_message[offset] == ' ')
59 for (i = 0; i < offset - 1; i++)
65 error_message += offset;
108 int offset = 0; local
118 for (offset = 1; offset < 15; offset++
125 (*(png_ptr->warning_fn))(png_ptr, warning_message + offset); local
246 int offset; local
310 int offset; local
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngerror.c 46 int offset; local
47 for (offset=1; offset<15; offset++)
48 if (*(error_message+offset) == ' ')
53 for (i=0; i<offset-1; i++)
59 error_message+=offset;
90 int offset = 0; local
100 for (offset=1; offset<15; offset++
106 (*(png_ptr->warning_fn))(png_ptr, warning_message+offset); local
202 int offset; local
258 int offset; local
    [all...]
  /bionic/libc/unistd/
mmap.c 35 void* mmap( void* addr, size_t size, int prot, int flags, int fd, long offset )
37 if ( offset & ((1UL << MMAP2_SHIFT)-1) ) {
42 return __mmap2(addr, size, prot, flags, fd, (size_t)offset >> MMAP2_SHIFT);
  /dalvik/dx/src/com/android/dx/cf/iface/
ParseObserver.java 38 * @param offset offset into {@code bytes} for the start of the
43 public void startParsingMember(ByteArray bytes, int offset, String name,
50 * @param offset offset into {@code bytes} for the end of the
56 public void endParsingMember(ByteArray bytes, int offset, String name,
63 * @param offset offset into {@code bytes} for what was parsed
67 public void parsed(ByteArray bytes, int offset, int len, String human);
  /dalvik/vm/native/
org_apache_harmony_dalvik_ddmc_DdmServer.c 26 * int offset, int length)
35 int offset = args[2]; local
38 assert(offset+length <= (int)data->length);
40 dvmDbgDdmSendChunk(type, length, (const u1*)data->contents + offset);
  /external/emma/core/java12/com/vladium/jcd/cls/
IMethodCollection.java 30 * Returns {@link Method_info} descriptor at a given offset.
32 * @param offset method offset [must be in [0, size()) range; input not checked]
35 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
37 Method_info get (int offset);
77 * Replaces the Method_info descriptor at a given offset. No duplicate
82 * @param offset method offset [must be in [0, size()) range; input not checked]
84 * @return previous method descriptor at this offset [never null]
86 * @throws IndexOutOfBoundsException if 'offset' is outside of valid rang
    [all...]
  /external/opencore/fileformats/mp4/parser/src/
mediadataatom.cpp 53 int32 offset = getSize() - getDefaultSize(); local
57 if ((filePointer + offset) == fp->_fileSize)
62 AtomUtils::seekFromStart(fp, (filePointer + offset));
  /external/webkit/WebCore/editing/
DeleteFromTextNodeCommand.h 37 static PassRefPtr<DeleteFromTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, unsigned count)
39 return adoptRef(new DeleteFromTextNodeCommand(node, offset, count));
43 DeleteFromTextNodeCommand(PassRefPtr<Text>, unsigned offset, unsigned count);
InsertIntoTextNodeCommand.h 37 static PassRefPtr<InsertIntoTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, const String& text)
39 return adoptRef(new InsertIntoTextNodeCommand(node, offset, text));
43 InsertIntoTextNodeCommand(PassRefPtr<Text> node, unsigned offset, const String& text);
  /external/webkit/WebCore/svg/
SVGTextContentElement.idl 43 float getSubStringLength(in [IsIndex] unsigned long offset,
46 SVGPoint getStartPositionOfChar(in [IsIndex] unsigned long offset)
48 SVGPoint getEndPositionOfChar(in [IsIndex] unsigned long offset)
50 SVGRect getExtentOfChar(in [IsIndex] unsigned long offset)
52 float getRotationOfChar(in [IsIndex] unsigned long offset)
55 void selectSubString(in [IsIndex] unsigned long offset,
  /bionic/libc/stdlib/
setenv.c 34 char *__findenv(const char *name, int *offset);
48 int l_value, offset; local
53 if ((C = __findenv(name, &offset))) { /* find if already exists */
74 offset = cnt;
79 if (!(environ[offset] = /* name + `=' + value */
82 for (C = environ[offset]; (*C = *name++) && *C != '='; ++C)
97 int offset; local
99 while (__findenv(name, &offset)) /* if set multiple times */
100 for (P = &environ[offset];; ++P)
  /dalvik/libcore/luni/src/main/java/java/io/
ByteArrayInputStream.java 41 * The current mark position. Initially set to 0 or the <code>offset</code>
67 * {@code buf} with the initial position set to {@code offset} and the
68 * number of bytes available set to {@code offset} + {@code length}.
72 * @param offset
77 public ByteArrayInputStream(byte[] buf, int offset, int length) {
82 pos = offset;
83 mark = offset;
84 count = offset + length > buf.length ? buf.length : offset + length;
151 * them in byte array {@code b} starting at {@code offset}. Thi
    [all...]
  /dalvik/vm/mterp/c/
OP_FILL_ARRAY_DATA.c 4 s4 offset; local
9 offset = FETCH(1) | (((s4) FETCH(2)) << 16);
10 ILOGV("|fill-array-data v%d +0x%04x", vsrc1, offset);
11 arrayData = pc + offset; // offset in 16-bit units
  /external/e2fsprogs/ext2ed/
disk.c 34 int low_read (unsigned char *buffer,unsigned long length,unsigned long offset)
52 if (offset > file_system_info.file_system_size) { /* Check that the offset is within limits */
53 sprintf (temp,"Seek offset %ld is out of range",offset);
60 if ( (fseek (device_handle,offset,SEEK_SET))==-1) { /* Seek to the required offset */
61 wprintw (command_win,"Error - Failed to seek to offset %ld in device %s\n",offset,device_name);
67 wprintw (command_win,"Error - Failed to read from offset %ld in device %s\n",offset,device_name)
    [all...]

Completed in 920 milliseconds

1 2 34 5 6 7 8 91011>>