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

12 3 4 5 6 7 8 91011>>

  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ScanHandler.java 29 public void adup(char[] buff, int offset, int length) throws SAXException;
35 public void aname(char[] buff, int offset, int length) throws SAXException;
41 public void aval(char[] buff, int offset, int length) throws SAXException;
46 public void cdsect(char[] buff, int offset, int length) throws SAXException;
52 public void decl(char[] buff, int offset, int length) throws SAXException;
58 public void entity(char[] buff, int offset, int length) throws SAXException;
64 public void eof(char[] buff, int offset, int length) throws SAXException;
70 public void etag(char[] buff, int offset, int length) throws SAXException;
76 public void gi(char[] buff, int offset, int length) throws SAXException;
82 public void pcdata(char[] buff, int offset, int length) throws SAXException
    [all...]
  /dalvik/libdex/
DexDataMap.h 44 * Add a new element to the map. The offset must be greater than the
47 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type);
50 * Get the type associated with the given offset. This returns -1 if
51 * there is no entry for the given offset.
53 int dexDataMapGet(DexDataMap* map, u4 offset);
56 * Verify that there is an entry in the map, mapping the given offset to
60 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type);
63 * Like dexDataMapVerify(), but also accept a 0 offset as valid.
65 DEX_INLINE bool dexDataMapVerify0Ok(DexDataMap* map, u4 offset, u2 type) {
66 if (offset == 0)
    [all...]
  /external/opencore/codecs_v2/audio/aac/dec/src/
sbr_decode_envelope.cpp 110 Int32 offset,
114 Int32 indexLow2High(Int32 offset,
148 Int32 offset = hFrameData->offset; local
164 offset,
175 offset,
185 *iEnvelope += sfb_nrg_prev[ indexLow2High(offset, band, freqRes)];
189 offset,
203 Int32 offset,
211 if (offset >= 0
    [all...]
calc_gsfb_table.cpp 115 offset = 0;
119 pFrameInfo->group_len[group_idx] = group[group_idx] - offset;
120 offset = group[group_idx];
123 WHILE (offset < NUM_SHORT_WINDOWS);
129 offset = 0;
137 offset += pFrameInfo->sfb_width_128[sfb] * len;
138 *pFrameSfbTop++ = offset;
217 Int offset; local
232 offset = 0;
236 pFrameInfo->group_len[ngroups] = group[ngroups] - offset;
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
sbr_decode_envelope.cpp 110 Int32 offset,
114 Int32 indexLow2High(Int32 offset,
148 Int32 offset = hFrameData->offset; local
164 offset,
175 offset,
185 *iEnvelope += sfb_nrg_prev[ indexLow2High(offset, band, freqRes)];
189 offset,
203 Int32 offset,
211 if (offset >= 0
    [all...]
calc_gsfb_table.cpp 115 offset = 0;
119 pFrameInfo->group_len[group_idx] = group[group_idx] - offset;
120 offset = group[group_idx];
123 WHILE (offset < NUM_SHORT_WINDOWS);
129 offset = 0;
137 offset += pFrameInfo->sfb_width_128[sfb] * len;
138 *pFrameSfbTop++ = offset;
217 Int offset; local
232 offset = 0;
236 pFrameInfo->group_len[ngroups] = group[ngroups] - offset;
    [all...]
  /external/icu4c/tools/toolutil/
flagparser.c 47 int32_t offset; local
51 /* Get the offset (i.e. position after the '=') */
52 offset = getFlagOffset(buffer, bufferSize);
53 pBuffer = buffer+offset;
77 int32_t offset = 0; local
79 for (offset = 0; offset < bufferSize;offset++) {
80 if (buffer[offset] == '=') {
81 offset++
    [all...]
  /dalvik/libcore/text/src/main/java/java/text/
StringCharacterIterator.java 27 int start, end, offset; field in class:StringCharacterIterator
39 start = offset = 0;
64 offset = location;
93 offset = location;
119 if (offset == end) {
122 return string.charAt(offset);
144 && offset == it.offset;
158 offset = start;
159 return string.charAt(offset);
    [all...]
RuleBasedBreakIterator.java 64 public int following(int offset) {
65 validateOffset(offset);
66 return wrapped.following(offset);
70 * check the offset, throw exception if it is invalid
72 private void validateOffset(int offset) {
74 if (offset < it.getBeginIndex() || offset >= it.getEndIndex()) {
147 public boolean isBoundary(int offset) {
148 validateOffset(offset);
149 return wrapped.isBoundary(offset);
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
LogReceiver.java 73 * @param offset the offset into the buffer signaling the beginning of the new data.
76 public void newData(byte[] data, int offset, int length);
84 /** Offset in the partial header buffer */
86 /** Offset in the partial entry data */
109 * @param offset the offset into the buffer signaling the beginning of the new data.
112 public void parseNewData(byte[] data, int offset, int length) {
115 mListener.newData(data, offset, length);
125 System.arraycopy(data, offset, mEntryHeaderBuffer, mEntryHeaderOffset, length)
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
BerOutputStream.java 40 * current offset
42 protected int offset; field in class:BerOutputStream
59 encoded[offset++] = (byte) tag; //FIXME long form?
68 encoded[offset] = (byte) (numOctets | 0x80);
69 offset++;
72 int numOffset = offset + numOctets - 1;
76 offset += numOctets;
78 encoded[offset++] = (byte) length;
83 System.arraycopy(content, 0, encoded, offset, length);
84 offset += length
    [all...]
  /external/elfutils/libelf/
gelf_rawchunk.c 31 gelf_rawchunk (elf, offset, size)
33 GElf_Off offset;
43 if (offset >= elf->maximum_size
44 || offset + size >= elf->maximum_size
45 || offset + size < offset)
54 return (char *) elf->map_address + elf->start_offset + offset;
62 if ((size_t) pread (elf->fildes, result, size, elf->start_offset + offset)
  /external/icu4c/common/unicode/
rep.h 44 * offset and a limit offset. The range of characters thus specified
45 * includes the characters at offset start..limit-1. That is, the
46 * start offset is inclusive, and the limit offset is exclusive.
88 * Returns the 16-bit code unit at the given offset into the text.
89 * @param offset an integer between 0 and <code>length()</code>-1
91 * @return 16-bit code unit of text at given offset
94 inline UChar charAt(int32_t offset) const;
97 * Returns the 32-bit code point at the given 16-bit offset int
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
EndianUtils.java 112 * Writes a "short" value to a byte array at a given offset. The value is
115 * @param offset starting offset in the byte array
118 public static void writeSwappedShort(byte[] data, int offset, short value) {
119 data[ offset + 0 ] = (byte)( ( value >> 0 ) & 0xff );
120 data[ offset + 1 ] = (byte)( ( value >> 8 ) & 0xff );
124 * Reads a "short" value from a byte array at a given offset. The value is
127 * @param offset starting offset in the byte array
130 public static short readSwappedShort(byte[] data, int offset) {
    [all...]
  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementTimeControl.java 42 * constraints), at the passed offset from the current time when the
43 * method is called. If the offset is &gt;= 0, the semantics are
44 * equivalent to an event-base begin with the specified offset. If the
45 * offset is &lt; 0, the semantics are equivalent to beginElement(), but
47 * begun at the passed (negative) offset from the current time when the
49 * @param offset The offset in seconds at which to begin the element.
64 public boolean beginElementAt(float offset)
85 * constraints) at the specified offset from the current time when the
87 * @param offset The offset in seconds at which to end the element. Must
    [all...]
  /dalvik/libcore/xml/src/main/java/org/w3c/dom/
CharacterData.java 68 * @param offset Start offset of substring to extract.
70 * @return The specified substring. If the sum of <code>offset</code> and
74 * INDEX_SIZE_ERR: Raised if the specified <code>offset</code> is
81 public String substringData(int offset,
97 * Insert a string at the specified 16-bit unit offset.
98 * @param offset The character offset at which to insert.
101 * INDEX_SIZE_ERR: Raised if the specified <code>offset</code> is
106 public void insertData(int offset,
    [all...]
  /external/webkit/WebCore/rendering/style/
StyleSurroundData.cpp 35 , offset(o.offset)
44 return offset == o.offset && margin == o.margin && padding == o.padding && border == o.border;
StyleDashboardRegion.h 38 LengthBox offset; member in struct:WebCore::StyleDashboardRegion
49 return type == o.type && offset == o.offset && label == o.label;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
IShellOutputReceiver.java 27 * @param offset The offset at which the new data starts.
30 public void addOutput(byte[] data, int offset, int length);
  /bionic/libc/unistd/
pread.c 28 extern int __pread64(int fd, void *buf, size_t nbytes, loff_t offset);
30 ssize_t pread(int fd, void *buf, size_t nbytes, off_t offset)
32 return __pread64(fd, buf, nbytes, offset);
pwrite.c 31 extern int __pwrite64(int fd, void *buf, size_t nbytes, loff_t offset);
33 ssize_t pwrite(int fd, void *buf, size_t nbytes, off_t offset)
35 return __pwrite64(fd, buf, nbytes, offset);
  /external/proguard/src/proguard/preverify/
CodeSubroutineInliner.java 115 int offset = 0; local
116 while (offset < codeAttribute.u4codeLength)
118 Instruction instruction = InstructionFactory.create(codeAttribute.code, offset);
119 int instructionLength = instruction.length(offset);
122 if (branchTargetFinder.isSubroutine(offset) &&
123 branchTargetFinder.isSubroutineReturning(offset))
128 System.out.println(" Skipping original subroutine instruction "+instruction.toString(offset));
131 // Append a label at this offset instead.
132 codeAttributeComposer.appendLabel(offset);
137 instruction.accept(clazz, method, codeAttribute, offset, this)
    [all...]
  /external/webkit/JavaScriptCore/bytecode/
JumpTable.cpp 38 int32_t offset = branchOffsets[value - min]; local
39 if (offset)
40 return offset;
  /external/webkit/WebCore/editing/
SplitTextNodeCommand.h 37 static PassRefPtr<SplitTextNodeCommand> create(PassRefPtr<Text> node, int offset)
39 return adoptRef(new SplitTextNodeCommand(node, offset));
43 SplitTextNodeCommand(PassRefPtr<Text>, int offset);
SplitTextNodeContainingElementCommand.h 35 static PassRefPtr<SplitTextNodeContainingElementCommand> create(PassRefPtr<Text> node, int offset)
37 return adoptRef(new SplitTextNodeContainingElementCommand(node, offset));
41 SplitTextNodeContainingElementCommand(PassRefPtr<Text>, int offset);

Completed in 823 milliseconds

12 3 4 5 6 7 8 91011>>