Searched refs:offset (Results 101 - 125 of 6810) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
H A Dsvga3d_caps.h68 * Header field leading each caps block record. Contains the offset (in
121 uint32 offset; local
126 for (offset = 0; capsBlock[offset] != 0; offset += capsBlock[offset]) {
127 record = (SVGA3dCapsRecord *) (capsBlock + offset);
/external/elfutils/0.153/libelf/
H A Dgelf_getverdaux.c1 /* 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,
H A Dgelf_getverdef.c1 /* 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,
H A Dgelf_getvernaux.c1 /* 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,
H A Dgelf_getverneed.c1 /* 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/lzma/CPP/7zip/Common/
H A DOffsetStream.cpp8 HRESULT COffsetOutStream::Init(IOutStream *stream, UInt64 offset) argument
10 _offset = offset;
12 return _stream->Seek(offset, STREAM_SEEK_SET, NULL);
20 STDMETHODIMP COffsetOutStream::Seek(Int64 offset, UInt32 seekOrigin, argument
25 offset += _offset;
26 HRESULT result = _stream->Seek(offset, seekOrigin, &absoluteNewPosition);
/external/lzma/CS/7zip/Common/
H A DCRC.cs34 public void Update(byte[] data, uint offset, uint size) argument
37 _value = Table[(((byte)(_value)) ^ data[offset + i])] ^ (_value >> 8);
42 static uint CalculateDigest(byte[] data, uint offset, uint size) argument
46 crc.Update(data, offset, size);
50 static bool VerifyDigest(uint digest, byte[] data, uint offset, uint size) argument
52 return (CalculateDigest(data, offset, size) == digest);
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga3d_caps.h68 * Header field leading each caps block record. Contains the offset (in
121 uint32 offset; local
126 for (offset = 0; capsBlock[offset] != 0; offset += capsBlock[offset]) {
127 record = (SVGA3dCapsRecord *) (capsBlock + offset);
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DInstructionVisitor.java36 public void visitSimpleInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction); argument
37 public void visitVariableInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction); argument
38 public void visitConstantInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction); argument
39 public void visitBranchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction); argument
40 public void visitTableSwitchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction); argument
41 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction); argument
/external/chromium_org/third_party/libpng/
H A Dpngerror.c52 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 < 1
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.46/
H A Dpngerror.c52 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 < 1
130 (*(png_ptr->warning_fn))(png_ptr, warning_message + offset); local
256 int offset; local
320 int offset; local
[all...]
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dbindings_serialization.cc38 void EncodePointer(const void* ptr, uint64_t* offset) { argument
40 *offset = 0;
45 const char* p_slot = reinterpret_cast<const char*>(offset);
48 *offset = static_cast<uint64_t>(p_obj - p_slot);
51 const void* DecodePointerRaw(const uint64_t* offset) { argument
52 if (!*offset)
54 return reinterpret_cast<const char*>(offset) + *offset;
57 bool ValidateEncodedPointer(const uint64_t* offset) { argument
59 return reinterpret_cast<uintptr_t>(offset)
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSplitTextNodeContainingElementCommand.h35 static PassRefPtrWillBeRawPtr<SplitTextNodeContainingElementCommand> create(PassRefPtrWillBeRawPtr<Text> node, int offset) argument
37 return adoptRefWillBeNoop(new SplitTextNodeContainingElementCommand(node, offset));
43 SplitTextNodeContainingElementCommand(PassRefPtrWillBeRawPtr<Text>, int offset);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFELighting.h64 inline void topLeft(int offset, IntPoint& normalVector);
65 inline void topRow(int offset, IntPoint& normalVector);
66 inline void topRight(int offset, IntPoint& normalVector);
67 inline void leftColumn(int offset, IntPoint& normalVector);
68 inline void interior(int offset, IntPoint& normalVector);
69 inline void rightColumn(int offset, IntPoint& normalVector);
70 inline void bottomLeft(int offset, IntPoint& normalVector);
71 inline void bottomRow(int offset, IntPoint& normalVector);
72 inline void bottomRight(int offset, IntPoint& normalVector);
94 inline void inlineSetPixel(int offset, LightingDat
[all...]
/external/chromium_org/v8/test/webkit/
H A Ddfg-intrinsic-unused-this-method-check.js37 var offset = 0; variable
41 offset = 42;
48 shouldBe("baz(object, " + i + ", " + (i * 2) + ")", "" + (offset + Math.max(i, i * 2)));
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIMethodCollection.java30 * 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); argument
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' i
88 set(int offset, Method_info method) argument
101 remove(int offset) argument
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Ddropdown_bar_host_delegate.h15 virtual void SetAnimationOffset(int offset) = 0;
/external/chromium_org/mojo/embedder/
H A Dsimple_platform_shared_buffer.cc52 size_t offset,
54 if (!IsValidMap(offset, length))
57 return MapNoCheck(offset, length);
60 bool SimplePlatformSharedBuffer::IsValidMap(size_t offset, size_t length) { argument
61 if (offset > num_bytes_ || length == 0)
64 // Note: This is an overflow-safe check of |offset + length > num_bytes_|
65 // (that |num_bytes >= offset| is verified above).
66 if (length > num_bytes_ - offset)
73 size_t offset,
75 DCHECK(IsValidMap(offset, lengt
51 Map( size_t offset, size_t length) argument
72 MapNoCheck( size_t offset, size_t length) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimationElement.idl41 void beginElementAt(float offset);
43 void endElementAt(float offset);
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dprefix.h23 /* [offset, offset + 2^nbits) */
25 int offset; member in struct:PrefixCodeRange
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dflagparser.c111 int32_t offset=0; local
115 /* Get the offset (i.e. position after the '=') */
116 offset = getFlagOffset(buffer, bufferSize);
117 pBuffer = buffer+offset;
140 if (flagNames != NULL && offset>0) {
141 offset--; /* Move offset back 1 because of '='*/
143 if (uprv_strncmp(buffer, flagNames[i], offset) == 0) {
157 int32_t offset = 0; local
159 for (offset
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_batch.h44 #define OUT_RELOC(buf, usage, offset) \
45 i915_winsys_batchbuffer_reloc(i915->batch, buf, usage, offset, false)
47 #define OUT_RELOC_FENCED(buf, usage, offset) \
48 i915_winsys_batchbuffer_reloc(i915->batch, buf, usage, offset, true)
H A Di915_debug_private.h36 unsigned offset; /* current gtt offset */ member in struct:debug_stream
37 char *ptr; /* pointer to gtt offset zero */
38 char *end; /* pointer to gtt offset zero */
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_scratch.c32 * and 'offset' will point to the returned memory.
36 struct nouveau_bo **bo, unsigned *offset)
43 if (scratch->buf && size <= NOUVEAU_SCRATCH_SIZE - scratch->offset) {
46 buf = scratch->buf + scratch->offset;
47 *offset = scratch->offset;
48 scratch->offset += size;
57 *offset = 0;
58 scratch->offset = size;
67 *offset
35 nouveau_get_scratch(struct gl_context *ctx, unsigned size, struct nouveau_bo **bo, unsigned *offset) argument
[all...]
/external/chromium_org/v8/src/compiler/
H A Dframe.h75 // Represents an offset from either the stack pointer or frame pointer.
80 inline int offset() { return offset_ & ~1; } function in class:v8::internal::compiler::FrameOffset
82 inline static FrameOffset FromStackPointer(int offset) { argument
83 DCHECK((offset & 1) == 0);
84 return FrameOffset(offset | kFromSp);
87 inline static FrameOffset FromFramePointer(int offset) { argument
88 DCHECK((offset & 1) == 0);
89 return FrameOffset(offset | kFromFp);
93 explicit FrameOffset(int offset) : offset_(offset) {} argument
[all...]

Completed in 560 milliseconds

1234567891011>>