Searched defs:offset (Results 251 - 275 of 4056) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_texture.h78 unsigned long offset; member in struct:softpipe_transfer
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_vdecl.c60 * We can't set the VDECL offset to something negative, so we
66 * buffer offset below. The important thing is that all vertex buffer
78 unsigned int offset = vb->buffer_offset + ve[i].src_offset; local
85 if (buffer->uploaded.start > offset) {
86 tmp_neg_bias = buffer->uploaded.start - offset;
116 decl.array.offset = (vb->buffer_offset
121 assert(decl.array.offset >= 0);
/external/mesa3d/src/gallium/state_trackers/clover/tgsi/
H A Dcompiler.cpp42 module::size_t offset; local
48 if (!(ts >> offset))
74 m.syms.push_back({ name, 0, offset, args });
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Ddxbc_parse.cpp43 unsigned offset = bswap_le32(chunk_offsets[i]); local
44 dxbc_chunk_header* chunk = (dxbc_chunk_header*)((char*)data + offset);
61 unsigned offset = bswap_le32(chunk_offsets[i]); local
62 dxbc_chunk_header* chunk = (dxbc_chunk_header*)((char*)data + offset);
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_buffer_objects.h44 GLuint offset; /* any offset into that buffer */ member in struct:intel_buffer_object
66 GLuint *offset);
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_array.h40 unsigned offset; member in struct:nouveau_array
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...]
H A Dnouveau_surface.h38 unsigned offset; member in struct:nouveau_surface
/external/mesa3d/src/mesa/main/
H A Duniforms.h188 const GLchar *name, unsigned *offset);
255 * access other elements of the array by adding an offset to the
261 * by adding an offset to the returned array location. And some apps
272 * b) an array/field offset (0 for simple types)
275 * By putting the uniform number in the high part and the offset in the
281 * Combine the uniform's base location and the offset
284 _mesa_uniform_merge_location_offset(unsigned base_location, unsigned offset) argument
286 return (base_location << 16) | offset;
290 * Separate the uniform base location and parameter offset
294 unsigned *offset)
293 _mesa_uniform_split_location_offset(GLint location, unsigned *base_location, unsigned *offset) argument
[all...]
/external/okhttp/okio/src/main/java/okio/
H A DUtil.java27 public static void checkOffsetAndCount(long arrayLength, long offset, long count) { argument
28 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) {
/external/oprofile/daemon/liblegacy/
H A Dopd_mapping.h32 /** mapping offset */
33 unsigned long offset; member in struct:opd_map
65 * @param offset file offset of mapping
72 unsigned long start, unsigned long offset, unsigned long end);
97 * opd_map_offset - return offset of sample against map
101 * Returns the offset of the EIP value @eip into
102 * the map @map, which is the same as the file offset
108 return (eip - map->start) + map->offset;
/external/oprofile/libdb/
H A Ddb_insert.c59 unsigned long int offset)
70 if (node->value + offset != 0) {
71 node->value += offset;
102 return add_node(data, key, offset);
57 odb_update_node_with_offset(odb_t * odb, odb_key_t key, unsigned long int offset) argument
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2arrst.c231 size_t offset = arrstack->count * arrstack->sizeItem; local
232 void* newPtr = (FT_Byte*)arrstack->ptr + offset;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cid/
H A Dcidparse.c57 FT_ULong base_offset, offset, ps_len; local
93 for ( offset = FT_STREAM_POS(); ; offset += 256 )
119 /* save offset of binary data after `StartData' */
120 offset += (FT_ULong)( p - buffer + 10 );
125 offset += (FT_ULong)( p - buffer + 7 );
141 ps_len = offset - base_offset;
146 parser->data_offset = offset;
202 if ( !FT_STREAM_SEEK( offset ) )
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DSameZeroFrame.java62 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor) argument
64 stackMapFrameVisitor.visitSameZeroFrame(clazz, method, codeAttribute, offset, this);
/external/proguard/src/proguard/classfile/editor/
H A DInstructionAdder.java58 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
61 codeAttributeComposer.appendInstruction(offset, instruction);
65 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
74 codeAttributeComposer.appendInstruction(offset, newConstantInstruction);
/external/proguard/src/proguard/classfile/instruction/
H A DSwitchInstruction.java71 public String toString(int offset) argument
73 return "["+offset+"] "+toString()+" (target="+(offset+defaultOffset)+")";
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DInstructionConstantVisitor.java57 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
60 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
H A DInstructionCounter.java54 int offset,
51 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
/external/proguard/src/proguard/evaluation/
H A DBranchUnit.java34 * Sets the new instruction offset.
38 int offset,
43 * Sets the new instruction offset, depending on the certainty of the
48 int offset,
36 branch(Clazz clazz, CodeAttribute codeAttribute, int offset, int branchTarget) argument
46 branchConditionally(Clazz clazz, CodeAttribute codeAttribute, int offset, int branchTarget, int conditional) argument
H A DInvocationUnit.java59 int offset,
56 invokeMember(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction, Stack stack) argument
/external/proguard/src/proguard/optimize/info/
H A DExceptionInstructionChecker.java50 public boolean mayThrowExceptions(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
54 instruction.accept(clazz, method, codeAttribute, offset, this);
62 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
65 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
108 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
H A DSuperInvocationMarker.java47 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
50 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
/external/proguard/src/proguard/optimize/peephole/
H A DGotoGotoReplacer.java72 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
75 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
85 int targetOffset = offset + branchOffset;
88 branchOffset != branchInstruction.length(offset) &&
89 !codeAttributeEditor.isModified(offset) &&
103 codeAttributeEditor.replaceInstruction(offset,
109 extraInstructionVisitor.visitBranchInstruction(clazz, method, codeAttribute, offset, branchInstruction);
H A DGotoReturnReplacer.java72 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
75 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
83 int targetOffset = offset + branchInstruction.branchOffset;
85 if (!codeAttributeEditor.isModified(offset) &&
101 codeAttributeEditor.replaceInstruction(offset,
107 extraInstructionVisitor.visitBranchInstruction(clazz, method, codeAttribute, offset, branchInstruction);

Completed in 5849 milliseconds

<<11121314151617181920>>