Searched refs:offset (Results 176 - 200 of 6810) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/blob/
H A DBlobData.h70 , offset(0)
80 , offset(0)
90 , offset(0)
97 BlobDataItem(const String& path, long long offset, long long length, double expectedModificationTime) argument
100 , offset(offset)
107 BlobDataItem(PassRefPtr<BlobDataHandle> blobDataHandle, long long offset, long long length) argument
110 , offset(offset)
117 BlobDataItem(const KURL& fileSystemURL, long long offset, lon argument
141 long long offset; member in struct:blink::BlobDataItem
149 BlobDataItem(PassRefPtr<RawData> data, long long offset, long long length) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
H A Dos_mman.h64 static INLINE void *os_mmap(void *addr, size_t length, int prot, int flags, int fd, loff_t offset) argument
66 /* offset must be aligned to 4096 (not necessarily the page size) */
67 if (unlikely(offset & 4095)) {
72 return __mmap2(addr, length, prot, flags, fd, (size_t) (offset >> 12));
77 # define os_mmap(addr, length, prot, flags, fd, offset) mmap(addr, length, prot, flags, fd, offset)
/external/elfutils/0.153/libelf/
H A Dgelf_update_verdaux.c63 gelf_update_verdaux (data, offset, src)
65 int offset;
78 if (unlikely (offset < 0)
79 || unlikely ((offset + sizeof (GElf_Verdaux)) > data_scn->d.d_size))
94 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Verdaux));
H A Dgelf_update_verdef.c63 gelf_update_verdef (data, offset, src)
65 int offset;
78 if (unlikely (offset < 0)
79 || unlikely ((offset + sizeof (GElf_Verdef)) > data_scn->d.d_size))
94 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Verdef));
H A Dgelf_update_vernaux.c63 gelf_update_vernaux (data, offset, src)
65 int offset;
78 if (unlikely (offset < 0)
79 || unlikely ((offset + sizeof (GElf_Vernaux)) > data_scn->d.d_size))
94 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Vernaux));
H A Dgelf_update_verneed.c63 gelf_update_verneed (data, offset, src)
65 int offset;
78 if (unlikely (offset < 0)
79 || unlikely ((offset + sizeof (GElf_Verneed)) > data_scn->d.d_size))
94 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Verneed));
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_mman.h64 static INLINE void *os_mmap(void *addr, size_t length, int prot, int flags, int fd, loff_t offset) argument
66 /* offset must be aligned to 4096 (not necessarily the page size) */
67 if (unlikely(offset & 4095)) {
72 return __mmap2(addr, length, prot, flags, fd, (size_t) (offset >> 12));
77 # define os_mmap(addr, length, prot, flags, fd, offset) mmap(addr, length, prot, flags, fd, offset)
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
H A DStackMapFrameVisitor.java35 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame); argument
36 public void visitSameOneFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame); argument
37 public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame); argument
38 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame); argument
39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame); argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DVariableSizeCollection.java42 private final int offset; field in class:VariableSizeCollection
45 public VariableSizeCollection(@Nonnull DexBackedDexFile dexFile, int offset, int size) { argument
47 this.offset = offset;
56 return new VariableSizeIterator<T>(dexFile, offset, size) {
H A DVariableSizeSet.java42 private final int offset; field in class:VariableSizeSet
45 public VariableSizeSet(@Nonnull DexBackedDexFile dexFile, int offset, int size) { argument
47 this.offset = offset;
56 return new VariableSizeIterator<T>(dexFile, offset, size) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderTypeList.java45 int offset = DexWriter.NO_OFFSET; field in class:BuilderTypeList
60 return offset;
63 public void setOffset(int offset) { argument
64 this.offset = offset;
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DKeyframeEffectModel.cpp75 double offset = keyframes[i]->offset(); local
76 if (!isNull(offset)) {
77 ASSERT(offset >= 0);
78 ASSERT(offset <= 1);
79 ASSERT(offset >= lastOffset);
80 lastOffset = offset;
89 if (isNull(result.last()->offset()))
92 if (result.size() > 1 && isNull(result[0]->offset()))
96 lastOffset = result[0]->offset();
98 double offset = result[i]->offset(); local
187 PropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> easing, AnimationEffect::CompositeOperation composite) argument
210 double offset = m_keyframes[i]->offset(); local
[all...]
H A DKeyframe.h24 void setOffset(double offset) { m_offset = offset; } argument
25 double offset() const { return m_offset; } function in class:blink::Keyframe
35 return a->offset() < b->offset();
41 PassRefPtrWillBeRawPtr<Keyframe> cloneWithOffset(double offset) const
44 theClone->setOffset(offset);
56 double offset() const { return m_offset; } function in class:blink::Keyframe::PropertySpecificKeyframe
59 virtual PassOwnPtrWillBeRawPtr<PropertySpecificKeyframe> cloneWithOffset(double offset) const = 0;
66 virtual PassOwnPtrWillBeRawPtr<PropertySpecificKeyframe> neutralKeyframe(double offset, PassRefPt
88 Keyframe(double offset, AnimationEffect::CompositeOperation composite, PassRefPtr<TimingFunction> easing) argument
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dcommon_decoder.h44 // Buckets by making your API always take an offset and a size
60 // Gets a pointer to a section the bucket. Returns NULL if offset or size is
62 void* GetData(size_t offset, size_t size) const;
65 T GetDataAs(size_t offset, size_t size) const { argument
66 return reinterpret_cast<T>(GetData(offset, size));
73 // Returns false if offset or size is out of range.
74 bool SetData(const void* src, size_t offset, size_t size);
86 bool OffsetSizeValid(size_t offset, size_t size) const { argument
87 size_t temp = offset + size;
88 return temp <= size_ && temp >= offset;
129 GetSharedMemoryAs(unsigned int shm_id, unsigned int offset, unsigned int size) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DOpenTypeVerticalDataTest.cpp42 template <typename T> const T* validateOffset(const SharedBuffer& buffer, uint16_t offset) const
44 return TableBase::validateOffset<T>(buffer, offset);
73 for (uint16_t offset = 0; offset < sizeof(TestTable); offset++)
74 EXPECT_TRUE(table->validateOffset<uint8_t>(*buffer, offset));
79 for (uint16_t offset = 0; offset < sizeof(TestTable) - 1; offset++)
80 EXPECT_TRUE(table->validateOffset<uint16_t>(*buffer, offset));
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dbytecode.py8 # The offset of this bytecode in the code object.
9 self.offset = -1
17 # The offset in the code object of the next bytecode.
20 # The offset to jump to.
32 self.offset = 0
45 if self.offset >= len(self.code):
49 bc.op = self[self.offset]
50 bc.offset = self.offset
52 next_offset = self.offset
[all...]
/external/libpcap/
H A Dpcap-common.c1087 bpf_u_int32 offset = 0; local
1092 * "offset" is the offset *past* the field we're swapping;
1101 offset += 8; /* skip past id */
1102 if (hdr->caplen < offset)
1106 offset += 4; /* skip past various 1-byte fields */
1108 offset += 2; /* skip past bus_id */
1109 if (hdr->caplen < offset)
1113 offset += 2; /* skip past various 1-byte fields */
1115 offset
[all...]
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DDecoder.java21 * types from a {@link Message} object at a given offset into it's byte buffer.
91 * The base offset in the byte buffer.
117 * Deserializes a {@link DataHeader} at the given offset.
140 * Deserializes a {@link DataHeader} at the given offset and checks if it is correct for an
148 * Deserializes a byte at the given offset.
150 public byte readByte(int offset) { argument
151 validateBufferSize(offset, 1);
152 return mMessage.getData().get(mBaseOffset + offset);
156 * Deserializes a boolean at the given offset, re-using any partially read byte.
158 public boolean readBoolean(int offset, in argument
166 readShort(int offset) argument
174 readInt(int offset) argument
182 readFloat(int offset) argument
190 readLong(int offset) argument
198 readDouble(int offset) argument
207 readPointer(int offset, boolean nullable) argument
226 readBooleans(int offset, int arrayNullability, int expectedLength) argument
250 readBytes(int offset, int arrayNullability, int expectedLength) argument
265 readShorts(int offset, int arrayNullability, int expectedLength) argument
280 readInts(int offset, int arrayNullability, int expectedLength) argument
295 readFloats(int offset, int arrayNullability, int expectedLength) argument
310 readLongs(int offset, int arrayNullability, int expectedLength) argument
325 readDoubles(int offset, int arrayNullability, int expectedLength) argument
340 readHandle(int offset, boolean nullable) argument
356 readUntypedHandle(int offset, boolean nullable) argument
363 readConsumerHandle(int offset, boolean nullable) argument
370 readProducerHandle(int offset, boolean nullable) argument
377 readMessagePipeHandle(int offset, boolean nullable) argument
384 readSharedBufferHandle(int offset, boolean nullable) argument
393 readServiceInterface(int offset, boolean nullable, Interface.Manager<?, P> manager) argument
405 readInterfaceRequest(int offset, boolean nullable) argument
417 readString(int offset, boolean nullable) argument
429 readHandles(int offset, int arrayNullability, int expectedLength) argument
447 readUntypedHandles( int offset, int arrayNullability, int expectedLength) argument
466 readConsumerHandles( int offset, int arrayNullability, int expectedLength) argument
485 readProducerHandles( int offset, int arrayNullability, int expectedLength) argument
505 readMessagePipeHandles( int offset, int arrayNullability, int expectedLength) argument
525 readSharedBufferHandles( int offset, int arrayNullability, int expectedLength) argument
545 readServiceInterfaces( int offset, int arrayNullability, int expectedLength, Interface.Manager<S, P> manager) argument
568 readInterfaceRequests( int offset, int arrayNullability, int expectedLength) argument
588 getDecoderAtPosition(int offset) argument
625 validateBufferSize(int offset, int size) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DCSSPreloadScanner.cpp169 size_t offset = 0; local
172 while (reducedLength && isHTMLSpace<UChar>(string[offset])) {
173 ++offset;
176 while (reducedLength && isHTMLSpace<UChar>(string[offset + reducedLength - 1]))
180 && (string[offset] == 'u' || string[offset] == 'U')
181 && (string[offset + 1] == 'r' || string[offset + 1] == 'R')
182 && (string[offset + 2] == 'l' || string[offset
[all...]
/external/ltrace/sysdeps/linux-gnu/arm/
H A Dplt.c73 GElf_Xword offset = 0; local
75 if (elf_read_next_u8(data, &offset, &version) < 0) {
88 if (elf_read_u32(data, offset, &sec_len) < 0
89 || !elf_can_read_next(data, offset, sec_len)) {
92 const GElf_Xword next_offset = offset + sec_len;
93 offset += 4;
96 || strcmp(signature, data->d_buf + offset) != 0)
98 offset += sizeof signature;
100 const GElf_Xword offset0 = offset;
103 if (elf_read_next_uleb128(data, &offset,
[all...]
/external/proguard/src/proguard/optimize/peephole/
H A DGotoCommonCodeReplacer.java94 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
97 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
104 !branchTargetFinder.isBranchTarget(offset))
107 int targetOffset = offset + branchOffset;
110 int commonCount = commonByteCodeCount(codeAttribute, offset, targetOffset);
113 !exceptionBoundary(codeAttribute, offset, targetOffset))
117 System.out.println("GotoCommonCodeReplacer: "+clazz.getName()+"."+method.getName(clazz)+" (["+(offset-commonCount)+"] - "+branchInstruction.toString(offset)+" -> "+targetOffset+")");
123 int deleteOffset = offset - delta;
133 if (newBranchOffset != branchInstruction.length(offset))
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DIndexRangeCache.cpp51 void IndexRangeCache::addRange(GLenum type, unsigned int offset, GLsizei count, const RangeUI &range, argument
54 mIndexRangeCache[IndexRange(type, offset, count)] = IndexBounds(range, streamOffset);
57 void IndexRangeCache::invalidateRange(unsigned int offset, unsigned int size) argument
59 unsigned int invalidateStart = offset;
60 unsigned int invalidateEnd = offset + size;
79 bool IndexRangeCache::findRange(GLenum type, unsigned int offset, GLsizei count, argument
82 IndexRangeMap::const_iterator i = mIndexRangeCache.find(IndexRange(type, offset, count));
103 : type(GL_NONE), offset(0), count(0)
108 : type(typ), offset(off), count(c)
114 return std::make_tuple(type, offset, coun
123 IndexBounds(const RangeUI &rangeIn, unsigned int offset) argument
[all...]
/external/elfutils/0.153/backends/
H A Di386_corenote.c43 { .offset = at * 4, .regno = dwreg, .count = n, .bits = 32 }
45 { .offset = at * 4, .regno = dwreg, .count = n, .bits = 16, .pad = 2 }
84 .offset = offsetof (struct EBLHOOK(prstatus), pr_reg) + (4 * 11), \
90 { .offset = 0, .regno = 37, .count = 2, .bits = 32 }, /* fctrl-fstat */
91 { .offset = 7 * 4, .regno = 11, .count = 8, .bits = 80 }, /* stN */
97 { .offset = 0, .regno = 37, .count = 2, .bits = 16 }, /* fctrl-fstat */
98 { .offset = 24, .regno = 39, .count = 1, .bits = 32 }, /* mxcsr */
99 { .offset = 32, .regno = 11, .count = 8, .bits = 80, .pad = 6 }, /* stN */
100 { .offset = 32 + 128, .regno = 21, .count = 8, .bits = 128 }, /* xmm */
112 { .type = ELF_T_WORD, .offset
[all...]
/external/proguard/src/proguard/optimize/evaluation/
H A DVariableOptimizer.java252 // Create new arrays for storing information at each instruction offset.
268 for (int offset = 0; offset < codeLength; offset++)
270 if ((livenessAnalyzer.isAliveBefore(offset, variableIndex1) &&
271 livenessAnalyzer.isAliveBefore(offset, variableIndex2)) ||
273 (livenessAnalyzer.isAliveAfter(offset, variableIndex1) &&
274 livenessAnalyzer.isAliveAfter(offset, variableIndex2)) ||
277 livenessAnalyzer.isCategory2(offset, variableIndex1))
296 for (int offset
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DPYXWriter.java37 public void adup(char[] buff, int offset, int length) throws SAXException { argument
42 public void aname(char[] buff, int offset, int length) throws SAXException { argument
44 theWriter.write(buff, offset, length);
46 attrName = new String(buff, offset, length);
49 public void aval(char[] buff, int offset, int length) throws SAXException { argument
50 theWriter.write(buff, offset, length);
55 public void cmnt(char [] buff, int offset, int length) throws SAXException { argument
57 // theWriter.write(buff, offset, length);
61 public void entity(char[] buff, int offset, int length) throws SAXException { } argument
65 public void eof(char[] buff, int offset, in argument
69 etag(char[] buff, int offset, int length) argument
75 decl(char[] buff, int offset, int length) argument
78 gi(char[] buff, int offset, int length) argument
84 cdsect(char[] buff, int offset, int length) argument
88 pcdata(char[] buff, int offset, int length) argument
122 pitarget(char[] buff, int offset, int length) argument
128 pi(char[] buff, int offset, int length) argument
133 stagc(char[] buff, int offset, int length) argument
137 stage(char[] buff, int offset, int length) argument
143 characters(char[] buff, int offset, int length) argument
159 ignorableWhitespace(char[] buff, int offset, int length) argument
[all...]

Completed in 647 milliseconds

1234567891011>>