HomeSort by relevance Sort by last modified time
    Searched refs:offset (Results 101 - 125 of 5384) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/main/java/java/net/
DatagramPacket.java 48 private int offset = 0; field in class:DatagramPacket
65 * {@code length} bytes with a specified buffer offset.
69 * @param offset
70 * the offset of the byte array where the bytes is written.
74 public DatagramPacket(byte[] data, int offset, int length) {
75 setData(data, offset, length);
82 * length} bytes from the byte array position {@code offset} are sent.
86 * @param offset
87 * the offset of {@code data} where to read from.
95 public DatagramPacket(byte[] data, int offset, int length, InetAddress host, int aPort)
    [all...]
  /external/elfutils/libdw/
dwarf_formref_die.c 66 Dwarf_Off offset;
69 /* This has an absolute offset. */
76 offset = read_8ubyte_unaligned (attr->cu->dbg, attr->valp);
78 offset = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
82 /* Other forms produce an offset from the CU. */
83 if (unlikely (__libdw_formref (attr, &offset) != 0))
85 offset += attr->cu->start;
88 return INTUSE(dwarf_offdie) (attr->cu->dbg, offset, die_mem);
  /external/elfutils/libelf/
gelf_getverdaux.c 1 /* Get additional symbol version definition information at the given offset.
63 gelf_getverdaux (data, offset, dst)
65 int offset;
88 if (unlikely (offset < 0)
89 || unlikely (offset + sizeof (GElf_Verdaux) > data->d_size)
90 || unlikely (offset % __alignof__ (GElf_Verdaux) != 0))
96 result = (GElf_Verdaux *) memcpy (dst, (char *) data->d_buf + offset,
gelf_getverdef.c 1 /* Get symbol version definition information at the given offset.
63 gelf_getverdef (data, offset, dst)
65 int offset;
88 if (unlikely (offset < 0)
89 || unlikely (offset + sizeof (GElf_Verdef) > data->d_size)
90 || unlikely (offset % __alignof__ (GElf_Verdef) != 0))
96 result = (GElf_Verdef *) memcpy (dst, (char *) data->d_buf + offset,
gelf_getvernaux.c 1 /* Get additional required symbol version information at the given offset.
63 gelf_getvernaux (data, offset, dst)
65 int offset;
91 if (unlikely (offset < 0)
92 || unlikely (offset + sizeof (GElf_Vernaux) > data->d_size)
93 || unlikely (offset % sizeof (GElf_Vernaux) != 0))
99 result = (GElf_Vernaux *) memcpy (dst, (char *) data->d_buf + offset,
gelf_getverneed.c 1 /* Get required symbol version information at the given offset.
63 gelf_getverneed (data, offset, dst)
65 int offset;
91 if (unlikely (offset < 0)
92 || unlikely (offset + sizeof (GElf_Verneed) > data->d_size)
93 || unlikely (offset % sizeof (GElf_Verneed) != 0))
99 result = (GElf_Verneed *) memcpy (dst, (char *) data->d_buf + offset,
  /external/elfutils/tests/
dwfl-bug-getmodules.c 63 ptrdiff_t offset = dwfl_getmodules (dwfl, &iterate, dwfl, 0); local
64 if (offset <= 0)
67 offset = dwfl_getmodules (dwfl, &iterate, NULL, offset);
68 if (offset != 0)
69 error (1, 0, "dwfl_getmodules (%d): %s", (int) offset, dwfl_errmsg (-1));
  /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);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
InterruptableOutputStream.java 43 public void write(byte[] buffer, int offset, int count) throws IOException {
44 int end = offset + count;
45 while (offset < end) {
47 int bytesCount = Math.min(MAX_WRITE_BYTES, end - offset);
48 mOutputStream.write(buffer, offset, bytesCount);
49 offset += bytesCount;
  /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;
113 int offset = 0; local
123 for (offset = 1; offset < 15; offset++
130 (*(png_ptr->warning_fn))(png_ptr, warning_message + offset); local
256 int offset; local
320 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...]
  /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.cpp 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/webkit/Source/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/Source/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/vm/mterp/c/
OP_FILL_ARRAY_DATA.cpp 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/chromium/chrome/browser/ui/cocoa/
browser_frame_view.h 51 offset:(NSPoint)offset
  /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...]
  /external/emma/core/java12/com/vladium/jcd/opcodes/
IOpcodeVisitor.java 20 void visit (int opcode, boolean wide, int offset, Object ctx);
  /external/oprofile/libabi/
op_abi.h 19 /// offset or size of the named entry
20 int offset; member in struct:op_abi_entry
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
Section.java 56 * The offset of this section within the <code>DexFile</code>
58 protected int offset = 0; field in class:Section
82 * Finalize the location of all items, and place them starting at the given offset
83 * @param offset The offset where this section should be placed
84 * @return the offset of the byte immediate after the last item in this section
86 protected int placeAt(int offset) {
88 offset = AlignmentUtils.alignOffset(offset, ItemType.ItemAlignment);
89 assert !DexFile.getInplace() || offset == this.offset
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
s_mp3bits.h 94 uint32 offset; member in struct:__anon16547

Completed in 990 milliseconds

1 2 3 45 6 7 8 91011>>