Searched refs:offset (Results 51 - 75 of 6810) sorted by relevance

1234567891011>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
H A DDexReader.java37 public DexReader(@Nonnull DexBackedDexFile dexFile, int offset) { argument
38 super(dexFile, offset);
H A DBaseDexReader.java41 private int offset; field in class:BaseDexReader
43 public BaseDexReader(@Nonnull T dexBuf, int offset) { argument
45 this.offset = offset;
48 public int getOffset() { return offset; }
49 public void setOffset(int offset) { this.offset = offset; } argument
53 int end = offset;
80 "Invalid sleb128 integer encountered at offset
280 readSmallUint(int offset) argument
281 readUshort(int offset) argument
282 readUbyte(int offset) argument
283 readLong(int offset) argument
284 readInt(int offset) argument
285 readShort(int offset) argument
286 readByte(int offset) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleSurroundData.cpp35 , offset(o.offset)
44 return offset == o.offset && margin == o.margin && padding == o.padding && border == o.border;
/external/clang/test/CodeGenCXX/
H A D2008-05-07-CrazyOffsetOf.cpp8 int offset = (char *) &(((struct bork *) 0x10)->query) - (char *) 0x10; variable
/external/elfutils/0.153/libdw/
H A Ddwarf_haspc.c67 ptrdiff_t offset = 0; local
68 while ((offset = INTUSE(dwarf_ranges) (die, offset, &base,
73 return offset;
H A Ddwarf_getstring.c60 dwarf_getstring (dbg, offset, lenp)
62 Dwarf_Off offset;
69 || offset >= dbg->sectiondata[IDX_debug_str]->d_size)
77 + offset);
79 dbg->sectiondata[IDX_debug_str]->d_size - offset);
/external/fio/
H A Dhelpers.h9 extern int fallocate(int fd, int mode, off_t offset, off_t len);
10 extern int posix_fallocate(int fd, off_t offset, off_t len);
11 extern int sync_file_range(int fd, off64_t offset, off64_t nbytes,
13 extern int posix_fadvise(int fd, off_t offset, off_t len, int advice);
/external/valgrind/main/coregrind/m_gdbserver/
H A Dregdef.h35 /* The offset (in bits) of the value of this register in the buffer. */
36 int offset; member in struct:reg
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Dmtp_device_async_delegate.cc10 uint32 file_id, net::IOBuffer* buf, int64 offset, int buf_len,
15 offset(offset),
9 ReadBytesRequest( uint32 file_id, net::IOBuffer* buf, int64 offset, int buf_len, const ReadBytesSuccessCallback& success_callback, const ErrorCallback& error_callback) argument
/external/chromium_org/net/disk_cache/blockfile/
H A Dmapped_file.cc16 size_t offset = block->offset() + view_size_; local
17 return Read(block->buffer(), block->size(), offset);
21 size_t offset = block->offset() + view_size_; local
22 return Write(block->buffer(), block->size(), offset);
28 size_t offset = block->offset() + view_size_; local
29 return Read(block->buffer(), block->size(), offset, callback, completed);
35 size_t offset local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTextContentElement.idl39 [RaisesException] float getSubStringLength(unsigned long offset, unsigned long length);
40 [RaisesException] SVGPoint getStartPositionOfChar(unsigned long offset);
41 [RaisesException] SVGPoint getEndPositionOfChar(unsigned long offset);
42 [RaisesException] SVGRect getExtentOfChar(unsigned long offset);
43 [RaisesException] float getRotationOfChar(unsigned long offset);
45 [RaisesException] void selectSubString(unsigned long offset, unsigned long length);
/external/libvpx/libvpx/third_party/libmkv/
H A DEbmlBufferWriter.c13 src += glob->offset;
15 glob->offset += len;
21 memcpy(&(glob->buf[glob->offset]), q, 1);
22 glob->offset++;
38 ebmlLoc->offset = glob->offset;
45 unsigned long long size = glob->offset - ebmlLoc->offset - 8;
46 unsigned long long curOffset = glob->offset;
47 glob->offset
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollation.cpp29 Collation::incTwoBytePrimaryByOffset(uint32_t basePrimary, UBool isCompressible, int32_t offset) { argument
31 // plus the offset, modulo the number of usable byte values, plus the minimum.
35 offset += ((int32_t)(basePrimary >> 16) & 0xff) - 4;
36 primary = (uint32_t)((offset % 251) + 4) << 16;
37 offset /= 251;
39 offset += ((int32_t)(basePrimary >> 16) & 0xff) - 2;
40 primary = (uint32_t)((offset % 254) + 2) << 16;
41 offset /= 254;
44 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24));
48 Collation::incThreeBytePrimaryByOffset(uint32_t basePrimary, UBool isCompressible, int32_t offset) { argument
123 int32_t offset = (c - (lower32 >> 8)) * (lower32 & 0x7f); // delta * increment local
[all...]
H A Dregextxt.cpp18 uregex_utext_unescape_charAt(int32_t offset, void *ct) { argument
21 if (offset == context->lastOffset + 1) {
24 } else if (offset == context->lastOffset) {
28 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
30 context->lastOffset = offset;
42 uregex_ucstr_unescape_charAt(int32_t offset, void *context) { argument
43 return ((UChar *)context)[offset];
/external/proguard/src/proguard/optimize/evaluation/
H A DEvaluationSimplifier.java144 for (int offset = 0; offset < codeLength; offset++)
146 if (partialEvaluator.isTraced(offset))
149 offset);
151 instruction.accept(clazz, method, codeAttribute, offset, this);
162 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
188 replaceIntegerPushInstruction(clazz, offset, simpleInstruction);
207 replaceLongPushInstruction(clazz, offset, simpleInstruction);
220 replaceFloatPushInstruction(clazz, offset, simpleInstructio
243 visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
304 visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
336 visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
357 visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction) argument
376 replaceAnyPushInstruction(Clazz clazz, int offset, Instruction instruction) argument
409 replaceIntegerPushInstruction(Clazz clazz, int offset, Instruction instruction) argument
424 replaceIntegerPushInstruction(Clazz clazz, int offset, Instruction instruction, int maxVariableIndex) argument
478 replaceLongPushInstruction(Clazz clazz, int offset, Instruction instruction) argument
493 replaceLongPushInstruction(Clazz clazz, int offset, Instruction instruction, int maxVariableIndex) argument
550 replaceFloatPushInstruction(Clazz clazz, int offset, Instruction instruction) argument
565 replaceFloatPushInstruction(Clazz clazz, int offset, Instruction instruction, int maxVariableIndex) argument
621 replaceDoublePushInstruction(Clazz clazz, int offset, Instruction instruction) argument
636 replaceDoublePushInstruction(Clazz clazz, int offset, Instruction instruction, int maxVariableIndex) argument
694 replaceReferencePushInstruction(Clazz clazz, int offset, Instruction instruction) argument
715 replaceConstantPushInstruction(Clazz clazz, int offset, Instruction instruction, byte replacementOpcode, int value) argument
732 replaceVariablePushInstruction(Clazz clazz, int offset, Instruction instruction, byte replacementOpcode, int variableIndex) argument
750 replaceJsrInstruction(Clazz clazz, int offset, BranchInstruction branchInstruction) argument
777 deleteReferencePopInstruction(Clazz clazz, int offset, Instruction instruction) argument
797 replaceBranchInstruction(Clazz clazz, int offset, Instruction instruction) argument
829 replaceSwitchInstruction(Clazz clazz, int offset, SwitchInstruction switchInstruction) argument
877 replaceByInfiniteLoop(Clazz clazz, int offset, Instruction instruction) argument
902 replaceInstruction(Clazz clazz, int offset, Instruction instruction, Instruction replacementInstruction) argument
932 insertPopInstructions(int offset, int popCount) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DMediaQueryInputStream.h42 unsigned skipWhilePredicate(unsigned offset) argument
44 while ((m_offset + offset) < m_string.length() && characterPredicate(m_string[m_offset + offset]))
45 ++offset;
46 return offset;
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLBIOInputStream.java54 int offset = 0;
56 while (offset < buffer.length) {
63 if (offset == 0) {
71 buffer[offset++] = (byte) inputByte;
74 return offset;
/external/elfutils/0.153/libelf/
H A Delf_rand.c62 elf_rand (elf, offset)
64 size_t offset;
72 /* Save the old offset and set the offset. */
73 elf->state.ar.offset = elf->start_offset + offset;
85 return offset;
/external/lldb/source/Core/
H A DDataEncoder.cpp24 WriteInt16(const unsigned char* ptr, unsigned offset, uint16_t value) argument
26 *(uint16_t *)(ptr + offset) = value;
29 WriteInt32 (const unsigned char* ptr, unsigned offset, uint32_t value) argument
31 *(uint32_t *)(ptr + offset) = value;
35 WriteInt64(const unsigned char* ptr, unsigned offset, uint64_t value) argument
37 *(uint64_t *)(ptr + offset) = value;
41 WriteSwappedInt16(const unsigned char* ptr, unsigned offset, uint16_t value) argument
43 *(uint16_t *)(ptr + offset) = llvm::ByteSwap_16(value);
47 WriteSwappedInt32 (const unsigned char* ptr, unsigned offset, uint32_t value) argument
49 *(uint32_t *)(ptr + offset)
53 WriteSwappedInt64(const unsigned char* ptr, unsigned offset, uint64_t value) argument
228 PutU8(uint32_t offset, uint8_t value) argument
239 PutU16(uint32_t offset, uint16_t value) argument
254 PutU32(uint32_t offset, uint32_t value) argument
269 PutU64(uint32_t offset, uint64_t value) argument
294 PutMaxU64(uint32_t offset, uint32_t byte_size, uint64_t value) argument
310 PutData(uint32_t offset, const void *src, uint32_t src_len) argument
324 PutAddress(uint32_t offset, lldb::addr_t addr) argument
330 PutCString(uint32_t offset, const char *cstr) argument
[all...]
/external/strace/tests/
H A Duio.c9 const off_t offset = 0xdefaceddeadbeefLL; local
15 assert(pread(fd, buf, sizeof buf, offset) == 4);
16 assert(preadv(fd, &iov, 1, offset) == 4);
20 assert(pwrite(fd, buf, sizeof buf, offset) == 4);
21 assert(pwritev(fd, &iov, 1, offset) == 4);
/external/chromium_org/v8/src/ic/ia32/
H A Dstub-cache-ia32.cc22 Register offset, Register extra) {
30 __ lea(offset, Operand(offset, offset, times_2, 0));
34 __ mov(extra, Operand::StaticArray(offset, times_1, value_offset));
37 __ cmp(name, Operand::StaticArray(offset, times_1, key_offset));
41 __ mov(offset, Operand::StaticArray(offset, times_1, map_offset));
42 __ cmp(offset, FieldOperand(receiver, HeapObject::kMapOffset));
46 __ mov(offset, FieldOperan
18 ProbeTable(Isolate* isolate, MacroAssembler* masm, Code::Flags flags, bool leave_frame, StubCache::Table table, Register name, Register receiver, Register offset, Register extra) argument
141 Register offset = scratch; local
163 offset, extra); local
176 offset, extra); local
[all...]
/external/chromium_org/v8/src/ic/x87/
H A Dstub-cache-x87.cc22 Register offset, Register extra) {
30 __ lea(offset, Operand(offset, offset, times_2, 0));
34 __ mov(extra, Operand::StaticArray(offset, times_1, value_offset));
37 __ cmp(name, Operand::StaticArray(offset, times_1, key_offset));
41 __ mov(offset, Operand::StaticArray(offset, times_1, map_offset));
42 __ cmp(offset, FieldOperand(receiver, HeapObject::kMapOffset));
46 __ mov(offset, FieldOperan
18 ProbeTable(Isolate* isolate, MacroAssembler* masm, Code::Flags flags, bool leave_frame, StubCache::Table table, Register name, Register receiver, Register offset, Register extra) argument
141 Register offset = scratch; local
163 offset, extra); local
176 offset, extra); local
[all...]
/external/proguard/src/proguard/preverify/
H A DCodeSubroutineInliner.java116 int offset = 0;
117 while (offset < codeAttribute.u4codeLength)
119 Instruction instruction = InstructionFactory.create(codeAttribute.code, offset);
120 int instructionLength = instruction.length(offset);
123 if (branchTargetFinder.isSubroutine(offset) &&
124 branchTargetFinder.isSubroutineReturning(offset))
129 System.out.println(" Skipping original subroutine instruction "+instruction.toString(offset));
132 // Append a label at this offset instead.
133 codeAttributeComposer.appendLabel(offset);
138 instruction.accept(clazz, method, codeAttribute, offset, thi
229 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
236 visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
286 visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dregextxt.cpp18 uregex_utext_unescape_charAt(int32_t offset, void *ct) { argument
21 if (offset == context->lastOffset + 1) {
24 } else if (offset == context->lastOffset) {
28 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
30 context->lastOffset = offset;
42 uregex_ucstr_unescape_charAt(int32_t offset, void *context) { argument
43 return ((UChar *)context)[offset];
/external/deqp/executor/
H A DxeContainerFormatParser.cpp109 void ContainerFormatParser::getData (deUint8* dst, int numBytes, int offset) argument
111 DE_ASSERT(de::inBounds(offset, 0, m_elementLen) && numBytes > 0 && de::inRange(numBytes+offset, 0, m_elementLen));
114 dst[ndx] = m_buf.peekBack(offset+ndx);
117 int ContainerFormatParser::getChar (int offset) const
119 DE_ASSERT(de::inRange(offset, 0, m_buf.getNumElements()));
121 if (offset < m_buf.getNumElements())
122 return m_buf.peekBack(offset);
207 int offset = 1; local
216 int bufChar = (offset
[all...]

Completed in 1366 milliseconds

1234567891011>>