Searched refs:offset (Results 276 - 300 of 4102) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_upload_mgr.c52 unsigned offset; /* Aligned offset to the upload buffer, pointing member in struct:u_upload_mgr
79 if (upload->offset > box->x) {
82 box->x, upload->offset - box->x);
152 upload->offset = 0;
165 unsigned offset; local
176 if (MAX2(upload->offset, alloc_offset) + alloc_size > upload->size) {
183 offset = MAX2(upload->offset, alloc_offset);
187 offset, uploa
237 u_upload_buffer( struct u_upload_mgr *upload, unsigned min_out_offset, unsigned offset, unsigned size, struct pipe_resource *inbuf, unsigned *out_offset, struct pipe_resource **outbuf) argument
[all...]
/external/okhttp/okio/okio/src/main/java/okio/
H A DUtil.java27 public static void checkOffsetAndCount(long size, long offset, long byteCount) { argument
28 if ((offset | byteCount) < 0 || offset > size || size - offset < byteCount) {
30 String.format("size=%s offset=%s byteCount=%s", size, offset, byteCount));
H A DSegmentedByteString.java36 * <p>The second half of the directory is the offset in {@code segments} of the first content byte.
37 * Bytes preceding this offset are unused, as are bytes beyond the segment's effective size.
47 * <p>This structure is chosen so that the segment holding a particular offset can be found by
59 int offset = 0;
61 for (Segment s = buffer.head; offset < byteCount; s = s.next) {
65 offset += s.limit - s.pos;
72 offset = 0;
74 for (Segment s = buffer.head; offset < byteCount; s = s.next) {
76 offset += s.limit - s.pos;
77 directory[segmentCount] = offset;
184 rangeEquals( int offset, ByteString other, int otherOffset, int byteCount) argument
202 rangeEquals(int offset, byte[] other, int otherOffset, int byteCount) argument
[all...]
/external/proguard/src/proguard/optimize/peephole/
H A DNopRemover.java71 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
74 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
78 !codeAttributeEditor.isModified(offset))
80 codeAttributeEditor.deleteInstruction(offset);
85 extraInstructionVisitor.visitSimpleInstruction(clazz, method, codeAttribute, offset, simpleInstruction);
/external/sfntly/cpp/src/sfntly/data/
H A Dgrowable_memory_byte_array.h31 virtual int32_t CopyTo(OutputStream* os, int32_t offset, int32_t length);
35 virtual int32_t CopyTo(ByteArray* array, int32_t offset, int32_t length) { argument
36 return ByteArray::CopyTo(array, offset, length);
50 int32_t offset,
55 int32_t offset,
H A Dmemory_byte_array.h43 virtual int32_t CopyTo(OutputStream* os, int32_t offset, int32_t length);
47 virtual int32_t CopyTo(ByteArray* array, int32_t offset, int32_t length) { argument
48 return ByteArray::CopyTo(array, offset, length);
62 int32_t offset,
67 int32_t offset,
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DStaticInitialValueIterator.java52 public static StaticInitialValueIterator newOrEmpty(@Nonnull DexBackedDexFile dexFile, int offset) { argument
53 if (offset == 0) {
56 return new StaticInitialValueIteratorImpl(dexFile, offset);
64 public StaticInitialValueIteratorImpl(@Nonnull DexBackedDexFile dexFile, int offset) { argument
65 this.reader = dexFile.readerAt(offset);
H A DVariableSizeList.java42 private final int offset; field in class:VariableSizeList
45 public VariableSizeList(@Nonnull DexBackedDexFile dexFile, int offset, int size) { argument
47 this.offset = offset;
64 VariableSizeListIterator<T> iterator = new VariableSizeListIterator<T>(dexFile, offset, size) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableSwitchElement.java44 protected final int offset; field in class:ImmutableSwitchElement
47 int offset) {
49 this.offset = offset;
63 @Override public int getOffset() { return offset; }
46 ImmutableSwitchElement(int key, int offset) argument
/external/toybox/toys/other/
H A Dshred.c33 long offset;
85 if (pos < TT.offset) {
86 if (TT.offset != lseek(fd, TT.offset, SEEK_SET)) {
90 pos = TT.offset;
/external/jetty/src/java/org/eclipse/jetty/http/
H A DHttpURI.java109 public HttpURI(byte[] raw,int offset, int length) argument
111 parse2(raw,offset,length);
126 public void parse(byte[] raw,int offset, int length) argument
129 parse2(raw,offset,length);
133 public void parseConnect(byte[] raw,int offset, int length) argument
138 int i=offset;
139 int e=offset+length;
141 _end=offset+length;
142 _scheme=offset;
143 _authority=offset;
205 parse2(byte[] raw,int offset, int length) argument
500 toUtf8String(int offset,int length) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationdatareader.cpp87 int32_t offset; // byte offset for the index part local
108 offset = getIndex(inIndexes, indexesLength, index);
109 length = getIndex(inIndexes, indexesLength, index + 1) - offset;
117 reorderCodes = reinterpret_cast<const int32_t *>(inBytes + offset);
140 offset = getIndex(inIndexes, indexesLength, index);
141 length = getIndex(inIndexes, indexesLength, index + 1) - offset;
147 reorderTable = inBytes + offset;
160 offset = getIndex(inIndexes, indexesLength, index);
161 length = getIndex(inIndexes, indexesLength, index + 1) - offset;
[all...]
/external/pdfium/core/src/fxcrt/
H A Dextension.h69 virtual FX_BOOL SetRange(FX_FILESIZE offset, FX_FILESIZE size) FX_OVERRIDE
71 if (offset < 0 || size < 0) {
76 pos += offset;
82 m_nOffset = offset, m_nSize = size;
91 virtual FX_BOOL ReadBlock(void* buffer, FX_FILESIZE offset, size_t size) FX_OVERRIDE
93 if (m_bUseRange && offset < 0) {
96 FX_SAFE_FILESIZE pos = offset;
116 virtual FX_BOOL WriteBlock(const void* buffer, FX_FILESIZE offset, size_t size) FX_OVERRIDE
119 offset += m_nOffset;
121 return (FX_BOOL)m_pFile->WritePos(buffer, size, offset);
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_bufferobjects.c90 * specified by size + offset extends beyond the end of the buffer or
96 GLintptrARB offset,
103 ASSERT(offset >= 0);
105 ASSERT(offset + size <= obj->Size);
131 offset, size, data);
140 GLintptrARB offset,
147 ASSERT(offset >= 0);
149 ASSERT(offset + size <= obj->Size);
160 offset, size, data);
251 GLintptr offset, GLsizeipt
95 st_bufferobj_subdata(struct gl_context *ctx, GLintptrARB offset, GLsizeiptrARB size, const GLvoid * data, struct gl_buffer_object *obj) argument
139 st_bufferobj_get_subdata(struct gl_context *ctx, GLintptrARB offset, GLsizeiptrARB size, GLvoid * data, struct gl_buffer_object *obj) argument
250 st_bufferobj_map_range(struct gl_context *ctx, GLintptr offset, GLsizeiptr length, GLbitfield access, struct gl_buffer_object *obj) argument
307 st_bufferobj_flush_mapped_range(struct gl_context *ctx, GLintptr offset, GLsizeiptr length, struct gl_buffer_object *obj) argument
[all...]
/external/squashfs-tools/kernel/fs/squashfs/
H A Dblock.c47 u64 *cur_index, int *offset, int *length)
56 if (msblk->devblksize - *offset == 1) {
57 *length = (unsigned char) bh->b_data[*offset];
63 *offset = 1;
65 *length = (unsigned char) bh->b_data[*offset] |
66 (unsigned char) bh->b_data[*offset + 1] << 8;
67 *offset += 2;
87 int offset = index & ((1 << msblk->devblksize_log2) - 1); local
101 bytes = -offset;
128 bh[0] = get_block_length(sb, &cur_index, &offset,
46 get_block_length(struct super_block *sb, u64 *cur_index, int *offset, int *length) argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGLErrorLogger.java180 public void glDeleteTextures(int n, int[] textures, int offset) { argument
181 ((GL10)mGL).glDeleteTextures(n, textures, offset);
255 public void glFogfv(int pname, float[] params, int offset) { argument
256 ((GL10)mGL).glFogfv(pname, params, offset);
270 public void glFogxv(int pname, int[] params, int offset) { argument
271 ((GL10)mGL).glFogxv(pname, params, offset);
299 public void glGenTextures(int n, int[] textures, int offset) { argument
300 ((GL10)mGL).glGenTextures(n, textures, offset);
313 public void glGetIntegerv(int pname, int[] params, int offset) { argument
314 ((GL10)mGL).glGetIntegerv(pname, params, offset);
339 glLightModelfv(int pname, float[] params, int offset) argument
354 glLightModelxv(int pname, int[] params, int offset) argument
369 glLightfv(int light, int pname, float[] params, int offset) argument
384 glLightxv(int light, int pname, int[] params, int offset) argument
409 glLoadMatrixf(float[] m, int offset) argument
419 glLoadMatrixx(int[] m, int offset) argument
439 glMaterialfv(int face, int pname, float[] params, int offset) argument
454 glMaterialxv(int face, int pname, int[] params, int offset) argument
469 glMultMatrixf(float[] m, int offset) argument
479 glMultMatrixx(int[] m, int offset) argument
638 glTexEnvfv(int target, int pname, float[] params, int offset) argument
653 glTexEnvxv(int target, int pname, int[] params, int offset) argument
758 glDeleteBuffers(int n, int[] buffers, int offset) argument
763 glDrawElements(int mode, int count, int type, int offset) argument
773 glGenBuffers(int n, int[] buffers, int offset) argument
783 glGetBooleanv(int pname, boolean[] params, int offset) argument
795 glGetBufferParameteriv(int target, int pname, int[] params, int offset) argument
807 glGetClipPlanef(int pname, float[] eqn, int offset) argument
817 glGetClipPlanex(int pname, int[] eqn, int offset) argument
827 glGetFixedv(int pname, int[] params, int offset) argument
837 glGetFloatv(int pname, float[] params, int offset) argument
847 glGetLightfv(int light, int pname, float[] params, int offset) argument
859 glGetLightxv(int light, int pname, int[] params, int offset) argument
869 glGetMaterialfv(int face, int pname, float[] params, int offset) argument
881 glGetMaterialxv(int face, int pname, int[] params, int offset) argument
898 glGetTexEnviv(int env, int pname, int[] params, int offset) argument
908 glGetTexEnvxv(int env, int pname, int[] params, int offset) argument
920 glGetTexParameterfv(int target, int pname, float[] params, int offset) argument
932 glGetTexParameteriv(int target, int pname, int[] params, int offset) argument
944 glGetTexParameterxv(int target, int pname, int[] params, int offset) argument
969 glNormalPointer(int type, int stride, int offset) argument
984 glPointParameterfv(int pname, float[] params, int offset) argument
999 glPointParameterxv(int pname, int[] params, int offset) argument
1009 glTexCoordPointer(int size, int type, int stride, int offset) argument
1024 glTexEnviv(int target, int pname, int[] params, int offset) argument
1034 glTexParameterfv(int target, int pname, float[] params, int offset) argument
1051 glTexParameteriv(int target, int pname, int[] params, int offset) argument
1059 glTexParameterxv(int target, int pname, int[] params, int offset) argument
1066 glVertexPointer(int size, int type, int stride, int offset) argument
1088 glDrawTexfvOES(float[] coords, int offset) argument
1105 glDrawTexivOES(int[] coords, int offset) argument
1126 glDrawTexsvOES(short[] coords, int offset) argument
1145 glDrawTexxvOES(int[] coords, int offset) argument
1167 glMatrixIndexPointerOES(int size, int type, int stride, int offset) argument
1181 glWeightPointerOES(int size, int type, int stride, int offset) argument
[all...]
/external/e2fsprogs/intl/
H A Dgmo.h113 nls_uint32 offset; member in struct:string_desc
124 nls_uint32 offset; member in struct:sysdep_segment
131 nls_uint32 offset; member in struct:sysdep_string
/external/elfutils/src/tests/
H A Drun-readelf-loc.sh65 DWARF section [33] '.debug_loc' at offset 0xd2a:
70 DWARF section [34] '.debug_ranges' at offset 0xd94:
81 DWARF section [33] '.debug_loc' at offset 0xd2a:
86 DWARF section [34] '.debug_ranges' at offset 0xd94:
97 DWARF section [33] '.debug_loc' at offset 0xd2a:
102 DWARF section [34] '.debug_ranges' at offset 0xd94:
/external/fio/
H A Dmemalign.c8 unsigned int offset; member in struct:align_footer
25 f->offset = (uintptr_t) ret - (uintptr_t) ptr;
35 free(ptr - f->offset);
/external/google-breakpad/src/common/
H A Ddwarf_cfi_to_module.cc145 bool DwarfCFIToModule::Entry(size_t offset, uint64 address, uint64 length, argument
158 entry_offset_ = offset;
226 int base_register, long offset) {
228 s << RegisterName(base_register) << " " << offset << " + ^";
234 int base_register, long offset) {
236 s << RegisterName(base_register) << " " << offset << " +";
269 void DwarfCFIToModule::Reporter::UnnamedRegister(size_t offset, int reg) { argument
271 "the call frame entry at offset 0x%zx refers to register %d,"
273 file_.c_str(), section_.c_str(), offset, reg);
276 void DwarfCFIToModule::Reporter::UndefinedNotSupported(size_t offset, argument
225 OffsetRule(uint64 address, int reg, int base_register, long offset) argument
233 ValOffsetRule(uint64 address, int reg, int base_register, long offset) argument
285 ExpressionsNotSupported(size_t offset, const string &reg) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DDiffer.java47 public int getALine(int offset) { argument
48 return aLine + maxSame + offset;
51 public T getA(int offset) { argument
52 if (offset < 0) return last;
53 if (offset > aTop-maxSame) return next;
54 return a[offset];
65 public int getBLine(int offset) { argument
66 return bLine + maxSame + offset;
69 public T getB(int offset) { argument
70 if (offset <
[all...]
/external/iproute2/tc/
H A Dem_u32.c41 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);
113 mask <<= 24 - ((offset
[all...]
/external/kernel-headers/original/uapi/drm/
H A Dsis_drm.h54 unsigned long offset; member in struct:__anon6636
60 unsigned long offset, size; member in struct:__anon6637
64 unsigned long offset, size; member in struct:__anon6638
/external/libdrm/include/drm/
H A Dsis_drm.h54 unsigned int offset; member in struct:__anon7914
60 unsigned int offset, size; member in struct:__anon7915
64 unsigned int offset, size; member in struct:__anon7916
/external/mesa3d/src/mapi/glapi/gen/
H A Dgl_x86-64_asm.py33 for [reg, offset] in registers:
78 def save_reg(reg, offset, use_move):
80 if offset == 0:
83 print '\tmovq\t%s, %u(%%rsp)' % (reg, offset)
90 def restore_reg(reg, offset, use_move):
92 if offset == 0:
95 print '\tmovq\t%u(%%rsp), %s' % (offset, reg)
252 print '\tmovq\t%u(%%rax), %%r11' % (f.offset * 8)
260 if f.offset == 0:
263 print '\tmovq\t%u(%%rax), %%r11' % (f.offset *
[all...]

Completed in 1723 milliseconds

<<11121314151617181920>>