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

<<11121314151617181920>>

  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
Location.java 206 * the given offset range.
210 * @param startOffset the starting offset
211 * @param endOffset the ending offset
236 for (int offset = 0; offset <= size; offset++) {
237 if (offset == startOffset) {
238 start = new DefaultPosition(line, offset - lineOffset, offset);
240 if (offset == endOffset)
286 int offset = 0; local
    [all...]
  /system/core/libdiskconfig/
write_lst.c 73 if (lseek64(fd, lst->offset, SEEK_SET) != (loff_t)lst->offset) {
74 ALOGE("Cannot seek to the specified position (%lld).", lst->offset);
81 lst->offset);
85 ALOGI("Would write %d bytes @ offset %lld.", lst->len, lst->offset);
  /system/security/keystore/
keystore_get.h 58 int offset = 0; local
60 while (offset < length) {
61 int n = recv(sock, &value[offset], length - offset, 0);
66 offset += n;
  /external/oprofile/module/ia64/
IA64minstate.h 194 .mem.offset 0, 0; st8.spill [r16]=r2, 16; \
195 .mem.offset 8, 0; st8.spill [r17]=r3, 16; \
198 .mem.offset 0, 0; st8.spill [r16]=r12, 16; \
199 .mem.offset 8, 0; st8.spill [r17]=r13, 16; \
203 .mem.offset 0, 0; st8.spill [r16]=r14, 16; \
204 .mem.offset 8, 0; st8.spill [r17]=r15, 16; \
207 .mem.offset 0, 0; st8.spill [r16]=r8, 16; \
208 .mem.offset 8, 0; st8.spill [r17]=r9, 16; \
212 .mem.offset 0, 0; st8.spill [r16]=r10, 16; \
213 .mem.offset 8, 0; st8.spill [r17]=r11, 16;
    [all...]
  /external/icu4c/test/cintltst/
utf8tst.c 189 uint32_t offset=0; local
191 for(offset=0; offset<sizeof(input); offset++) {
192 if (offset < sizeof(input) - 1) {
193 UTF8_GET_CHAR_UNSAFE(input, offset, c);
195 log_err("ERROR: UTF8_GET_CHAR_UNSAFE failed for offset=%ld. Expected:%lx Got:%lx\n", offset, result[i], c);
199 U8_GET_UNSAFE(input, offset, c);
201 log_err("ERROR: U8_GET_UNSAFE failed for offset=%ld. Expected:%lx Got:%lx\n", offset, result[i], c)
271 uint32_t offset=0; local
574 int32_t offset=0, setOffset=0; local
736 uint32_t offset; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_MCReconBlock_s.s 72 ;// M_LOAD_X $pSrc, $srcStep, $out0, $out1, $scratch, $offset
79 ;// $offset Difference of source data location to the source pointer
80 ;// Use when $offset != 0 (unaligned load)
89 ;// register numbering. In case offset is 0, $scratch is not modified.
92 M_LOAD_X $pSrc, $srcStep, $out0, $out1, $scratch, $offset
93 IF $offset = 0
100 MOV $out0, $out0, LSR #8 * $offset
101 ORR $out0, $out0, $out1, LSL #(32 - 8 * ($offset))
102 MOV $out1, $out1, LSR #8 * $offset
103 ORR $out1, $out1, $scratch, LSL #(32 - 8 * ($offset))
    [all...]
  /external/qemu/
qemu-io.c 79 dump_buffer(const void *buffer, int64_t offset, int len)
87 printf("%08" PRIx64 ": ", offset + i);
102 print_report(const char *op, struct timeval *t, int64_t offset,
111 printf("%s %d/%d bytes at offset %" PRId64 "\n",
112 op, total, count, offset);
176 static int do_read(char *buf, int64_t offset, int count, int *total)
180 ret = bdrv_read(bs, offset >> 9, (uint8_t *)buf, count >> 9);
187 static int do_write(char *buf, int64_t offset, int count, int *total)
191 ret = bdrv_write(bs, offset >> 9, (uint8_t *)buf, count >> 9);
198 static int do_pread(char *buf, int64_t offset, int count, int *total
356 int64_t offset; local
535 int64_t offset; local
660 int64_t offset; local
791 int64_t offset; local
895 int64_t offset, first_offset = 0; local
1007 int64_t offset; member in struct:aio_ctx
1311 int64_t offset; local
1434 int64_t offset; local
1489 int64_t offset; local
1540 int64_t offset; local
    [all...]
  /external/chromium/base/metrics/
stats_table.cc 80 // Calculates delta to align an offset to the size of an int
81 inline int AlignOffset(int offset) {
82 return (sizeof(int) - (offset % sizeof(int))) % sizeof(int);
210 int offset = 0; local
213 offset += sizeof(*table_header_);
214 offset += AlignOffset(offset);
219 thread_names_table_ = reinterpret_cast<char*>(data + offset);
220 offset += sizeof(char) *
222 offset += AlignOffset(offset)
    [all...]
  /external/linux-tools-perf/util/ui/
browser.c 42 void ui_browser__list_head_seek(struct ui_browser *self, off_t offset, int whence)
61 if (offset > 0) {
62 while (offset-- != 0)
65 while (offset++ != 0)
72 void ui_browser__rb_tree_seek(struct ui_browser *self, off_t offset, int whence)
91 if (offset > 0) {
92 while (offset-- != 0)
95 while (offset++ != 0)
241 off_t offset; local
271 offset = self->height
    [all...]
  /frameworks/av/media/libstagefright/httplive/
M3UParser.cpp 154 size_t offset = 0; local
156 while (offset < size) {
157 size_t offsetLF = offset;
166 if (offsetLF > offset && data[offsetLF - 1] == '\r') {
167 line.setTo(&data[offset], offsetLF - offset - 1);
169 line.setTo(&data[offset], offsetLF - offset);
175 offset = offsetLF + 1;
227 uint64_t length, offset; local
330 size_t offset = colonPos + 1; local
408 size_t offset = colonPos + 1; local
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLES11Ext.java 200 int offset
213 int offset
226 int offset
249 int offset
299 int offset
337 int offset
363 int offset
378 int offset
394 int offset
411 int offset
    [all...]
  /external/chromium/net/disk_cache/
file_win.cc 17 MyOverlapped(disk_cache::File* file, size_t offset,
56 MyOverlapped::MyOverlapped(disk_cache::File* file, size_t offset,
60 context_.overlapped.Offset = static_cast<DWORD>(offset);
123 bool File::Read(void* buffer, size_t buffer_len, size_t offset) {
125 if (buffer_len > ULONG_MAX || offset > LONG_MAX)
128 DWORD ret = SetFilePointer(sync_platform_file_, static_cast<LONG>(offset),
140 bool File::Write(const void* buffer, size_t buffer_len, size_t offset) {
142 if (buffer_len > ULONG_MAX || offset > ULONG_MAX)
145 DWORD ret = SetFilePointer(sync_platform_file_, static_cast<LONG>(offset),
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GLErrorLogger.java 180 public void glDeleteTextures(int n, int[] textures, int offset) {
181 ((GL10)mGL).glDeleteTextures(n, textures, offset);
255 public void glFogfv(int pname, float[] params, int offset) {
256 ((GL10)mGL).glFogfv(pname, params, offset);
270 public void glFogxv(int pname, int[] params, int offset) {
271 ((GL10)mGL).glFogxv(pname, params, offset);
299 public void glGenTextures(int n, int[] textures, int offset) {
300 ((GL10)mGL).glGenTextures(n, textures, offset);
313 public void glGetIntegerv(int pname, int[] params, int offset) {
314 ((GL10)mGL).glGetIntegerv(pname, params, offset);
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
X86Assembler.h 235 JmpSrc(int offset)
236 : m_offset(offset)
257 JmpDst(int offset)
258 : m_offset(offset)
261 ASSERT(m_offset == offset);
292 void push_m(int offset, RegisterID base)
294 m_formatter.oneByteOp(OP_GROUP5_Ev, GROUP5_OP_PUSH, base, offset);
297 void pop_m(int offset, RegisterID base)
299 m_formatter.oneByteOp(OP_GROUP1A_Ev, GROUP1A_OP_POP, base, offset);
322 void addl_mr(int offset, RegisterID base, RegisterID dst
1660 intptr_t offset = reinterpret_cast<intptr_t>(to) - reinterpret_cast<intptr_t>(from); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
RawAttribute.java 58 * @param offset offset in {@code data} to the attribute data
62 public RawAttribute(String name, ByteArray data, int offset,
64 this(name, data.slice(offset, offset + length), pool);
  /external/chromium/sdch/open-vcdiff/src/
vcdecoder_test.h 63 // (0x7FFFFFFF) at the given offset in the delta window.
64 void WriteMaxVarintAtOffset(int offset, int bytes_to_replace);
66 // Write a negative 32-bit VarintBE (0x80000000) at the given offset
68 void WriteNegativeVarintAtOffset(int offset, int bytes_to_replace);
71 // at the given offset in the delta window.
72 void WriteInvalidVarintAtOffset(int offset, int bytes_to_replace);
  /external/e2fsprogs/intl/
gmo.h 84 /* Offset of table with start offsets of original strings. */
86 /* Offset of table with start offsets of translated strings. */
90 /* Offset of first hash table entry. */
97 /* Offset of table describing system dependent segments. */
101 /* Offset of table with start offsets of original sysdep strings. */
103 /* Offset of table with start offsets of translated sysdep strings. */
112 /* Offset of string in file. */
113 nls_uint32 offset; member in struct:string_desc
123 /* Offset of string in file. */
124 nls_uint32 offset; member in struct:sysdep_segment
131 nls_uint32 offset; member in struct:sysdep_string
    [all...]
  /external/elfutils/libdw/
dwarf_getfuncs.c 61 void *arg, ptrdiff_t offset)
71 if (offset == 0)
75 die = INTUSE(dwarf_offdie) (cudie->cu->dbg, offset, &die_mem);
  /external/icu4c/layout/
SegmentArrayProcessor.cpp 48 le_int16 offset = SWAPW(lookupSegment->value); local
50 if (offset != 0) {
51 TTGlyphID *glyphArray = (TTGlyphID *) ((char *) subtableHeader + offset);
  /external/iproute2/tc/
em_u32.c 30 "Usage: u32(ALIGN VALUE MASK at [ nexthdr+ ] OFFSET)\n" \
41 unsigned long key, mask, offmask = 0, offset; local
83 return PARSE_ERR(a, "u32: missing offset");
90 offset = strtoul(buf, NULL, 0);
94 return PARSE_ERR(a, "u32: missing offset");
95 offset = bstrtoul(a);
97 offset = bstrtoul(a);
99 if (offset == ULONG_MAX)
100 return PARSE_ERR(a, "u32: invalid offset");
112 key <<= 24 - ((offset & 3) * 8)
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
ConstantInstruction.java 128 protected void readInfo(byte[] code, int offset)
133 constantIndex = readValue(code, offset, constantIndexSize); offset += constantIndexSize;
134 constant = readValue(code, offset, constantSize);
138 protected void writeInfo(byte[] code, int offset)
145 throw new IllegalArgumentException("Instruction has invalid constant index size ("+this.toString(offset)+")");
148 writeValue(code, offset, constantIndex, constantIndexSize); offset += constantIndexSize;
149 writeValue(code, offset, constant, constantSize);
153 public int length(int offset)
    [all...]
  /external/skia/include/core/
SkImageFilter.h 49 SkBitmap* result, SkIPoint* offset) = 0;
60 * Offset is the amount to translate the resulting image relative to the
64 * the result and offset parameters will be ignored by the caller.
67 SkBitmap* result, SkIPoint* offset);
105 SkBitmap* result, SkIPoint* offset);
  /external/skia/src/ports/
SkFontHost_tables.cpp 41 if offsetToDir is not-null, set it to the offset to the beginning of the
53 size_t offset = 0; local
61 // this is the offset to the first local SkSFNTHeader
62 offset = SkEndian_SwapBE32(shared.fCollection.fOffset0);
64 if (stream->skip(offset) != offset) {
74 *offsetToDir = offset + sizeof(SkSFNTHeader);
163 size_t offset, size_t length, void* data) {
179 // now sanity check the caller's offset/length
180 if (offset >= realLength)
    [all...]
  /external/webkit/Source/WebCore/dom/
DynamicNodeList.cpp 68 Node* DynamicNodeList::itemForwardsFromCurrent(Node* start, unsigned offset, int remainingOffset) const
75 m_caches->lastItemOffset = offset;
86 Node* DynamicNodeList::itemBackwardsFromCurrent(Node* start, unsigned offset, int remainingOffset) const
93 m_caches->lastItemOffset = offset;
104 Node* DynamicNodeList::item(unsigned offset) const
106 int remainingOffset = offset;
109 if (offset == m_caches->lastItemOffset)
111 else if (offset > m_caches->lastItemOffset || m_caches->lastItemOffset - offset < offset) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
TransparencyLayer.h 54 offset = rect.topLeft();
58 painter.translate(-offset);
71 QPoint offset; member in struct:WebCore::TransparencyLayer

Completed in 2507 milliseconds

<<11121314151617181920>>