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

<<21222324252627282930>>

  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
MappedByteBufferFactory.java 53 long size, int offset) throws Exception {
59 new Integer((int) size), new Integer(offset),
  /dalvik/libcore/support/src/test/java/tests/support/
Support_ASimpleReader.java 56 public int read(char[] dest, int offset, int count) throws IOException {
63 System.arraycopy(buf, pos, dest, offset, readable);
ThrowingReader.java 45 @Override public int read(char[] buf, int offset, int count)
53 int returned = super.read(buf, offset, count);
  /dalvik/vm/mterp/x86-atom/
OP_GOTO_16.S 24 * The branch uses a 16-bit offset that cannot be zero.
32 shl $$1, %edx # %edx is doubled to get the byte offset
  /external/bluetooth/bluez/audio/
gstsbcdec.c 62 guint size, codesize, offset = 0; local
79 while (offset < size) {
92 consumed = sbc_decode(&dec->sbc, data + offset, size - offset,
126 offset += consumed;
129 if (offset < size)
131 offset, size - offset);
  /external/e2fsprogs/util/
copy_sparse.c 95 off64_t offset = 0, should_be; local
153 if (offset != should_be) {
164 offset = should_be;
178 offset += bs;
187 offset += got;
189 offset = fileinfo.st_size;
194 if (fileinfo.st_size != offset) {
195 lseek64(ofd, offset-1, SEEK_CUR);
  /external/elfutils/libdw/
dwarf_getpubnames.c 66 /* Now we know the offset of the first offset/name pair. */
82 /* Get the CU offset. */
121 dwarf_getpubnames (dbg, callback, arg, offset)
125 ptrdiff_t offset;
130 /* Make sure it is a valid offset. */
132 || offset >= dbg->sectiondata[IDX_debug_pubnames]->d_size))
142 if (offset == 0)
145 offset = dbg->pubnames_sets[0].set_start;
150 if (offset >= dbg->pubnames_sets[cnt].set_start
    [all...]
  /external/freetype/include/freetype/internal/services/
svsfnt.h 42 FT_Long offset,
61 FT_ULong *offset,
  /external/icu4c/layout/
IndicLayoutEngine.h 109 * @param offset - the index of the first character to process
123 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
137 * @param offset - the index of the first character to process
154 virtual le_int32 glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
LEFontInstance.cpp 33 const LEFontInstance *LEFontInstance::getSubFont(const LEUnicode chars[], le_int32 *offset, le_int32 limit,
40 if (chars == NULL || *offset < 0 || limit < 0 || *offset >= limit || script < 0 || script >= scriptCodeCount) {
45 *offset = limit;
49 void LEFontInstance::mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count,
59 for (i = offset; i < offset + count; i += 1, out += dir) {
63 if (i < offset + count - 1 && high >= 0xD800 && high <= 0xDBFF) {
  /external/icu4c/test/intltest/
tztest.h 28 * Test the offset of the PRT timezone.
99 static UnicodeString& formatOffset(int32_t offset, UnicodeString& rv);
100 static UnicodeString& formatTZID(int32_t offset, UnicodeString& rv);
  /external/opencore/android/samples/
android_surface_output_fb.h 32 uint32 offset; member in struct:PLATFORM_PRIVATE_PMEM_INFO
70 bool getOffset(OsclAny *private_data_ptr, uint32 *offset);
  /external/proguard/src/proguard/classfile/attribute/preverification/
LessZeroFrame.java 71 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor)
73 stackMapFrameVisitor.visitLessZeroFrame(clazz, method, codeAttribute, offset, this);
  /external/proguard/src/proguard/classfile/instruction/
SimpleInstruction.java 186 protected void readInfo(byte[] code, int offset)
193 readSignedValue(code, offset, constantSize);
197 protected void writeInfo(byte[] code, int offset)
203 throw new IllegalArgumentException("Instruction has invalid constant size ("+this.toString(offset)+")");
206 writeSignedValue(code, offset, constant, constantSize);
210 public int length(int offset)
216 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor)
218 instructionVisitor.visitSimpleInstruction(clazz, method, codeAttribute, offset, this);
  /external/proguard/src/proguard/evaluation/
BasicBranchUnit.java 86 int offset,
98 int offset,
  /external/qemu/android/utils/
mapfile.h 76 /* Reads from a specific offset in a file opened with mapfile_open routine.
80 * offset - Offset in the file where to start reading from.
84 size_t offset,
92 * offset - Offset in the file where mapping should begin.
93 * size - Number of bytes starting with offset that should be mapped.
97 * mapped_offset - Upon success, contains pointer to the requested offset
112 size_t offset,
  /external/qemu/hw/
smc91c111.c 248 static void smc91c111_writeb(void *opaque, target_phys_addr_t offset,
253 if (offset == 14) {
257 if (offset == 15)
261 switch (offset) {
283 switch (offset) {
315 switch (offset) {
382 p += (offset & 3);
401 switch (offset) {
417 hw_error("smc91c111_write: Bad reg %d:%x\n", s->bank, (int)offset);
420 static uint32_t smc91c111_readb(void *opaque, target_phys_addr_t offset)
    [all...]
  /external/webkit/JavaScriptCore/bytecompiler/
Label.h 58 int bind(int opcode, int offset) const
61 m_unresolvedJumps.append(std::make_pair(opcode, offset));
  /external/webkit/WebCore/dom/
DynamicNodeList.h 76 Node* itemForwardsFromCurrent(Node* start, unsigned offset, int remainingOffset) const;
77 Node* itemBackwardsFromCurrent(Node* start, unsigned offset, int remainingOffset) const;
  /external/webkit/WebCore/editing/
DeleteFromTextNodeCommand.cpp 33 DeleteFromTextNodeCommand::DeleteFromTextNodeCommand(PassRefPtr<Text> node, unsigned offset, unsigned count)
36 , m_offset(offset)
SplitTextNodeContainingElementCommand.cpp 36 SplitTextNodeContainingElementCommand::SplitTextNodeContainingElementCommand(PassRefPtr<Text> text, int offset)
37 : CompositeEditCommand(text->document()), m_text(text), m_offset(offset)
  /external/webkit/WebCore/html/canvas/
WebGLArray.idl 33 WebGLArray slice(in unsigned long offset, in unsigned long length);
  /external/webkit/WebCore/platform/graphics/chromium/
GlyphPageTreeNodeLinux.cpp 43 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
65 setGlyphDataForIndex(offset + i, glyphs[i], glyphs[i] ? fontData : NULL);
  /external/webkit/WebKit/android/nav/
CachedLayer.h 57 void setOffset(const IntPoint& offset) { mOffset = offset; }
  /external/webkit/WebKit/mac/Plugins/
WebNetscapeDeprecatedFunctions.h 34 extern OSErr WebGetDiskFragment(const FSSpec *fileSpec, UInt32 offset, UInt32 length, ConstStr63Param fragName, CFragLoadOptions options, CFragConnectionID *connID, Ptr *mainAddr, Str255 errMessage);

Completed in 638 milliseconds

<<21222324252627282930>>