Searched defs:offset (Results 76 - 100 of 575) sorted by last modified time

1234567891011>>

/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp506 void GLTrace_glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const void * data) { argument
518 // copy argument offset
522 arg_offset->add_intvalue(offset);
539 glContext->hooks->gl.glBufferSubData(target, offset, size, data);
7056 void * GLTrace_glMapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access) { argument
7068 // copy argument offset
7072 arg_offset->add_intvalue(offset);
7089 void * retValue = glContext->hooks->gl.glMapBufferRange(target, offset, length, access);
7111 void GLTrace_glFlushMappedBufferRange(GLenum target, GLintptr offset, GLsizeiptr length) { argument
7123 // copy argument offset
7376 GLTrace_glBindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size) argument
13239 GLTrace_glBindVertexBuffer(GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride) argument
17498 GLTrace_glMapBufferRangeEXT(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access) argument
17553 GLTrace_glFlushMappedBufferRangeEXT(GLenum target, GLintptr offset, GLsizeiptr length) argument
20632 GLTrace_glTexBufferRangeEXT(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size) argument
[all...]
H A Dgltrace_context.cpp274 void GLTraceContext::updateBufferSubData(GLuint bufferId, GLintptr offset, GLvoid *data, argument
278 buffer->updateSubBuffer(offset, data, size);
308 void ElementArrayBuffer::updateSubBuffer(GLintptr offset, const GLvoid* data, GLsizeiptr size) { argument
309 if (offset + size <= mSize) {
310 memcpy((char*)mBuf + offset, data, size);
H A Dgltrace_fixup.cpp498 /* void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid* data) */
500 GLintptr offset = glmsg->args(1).intvalue(0); local
505 context->updateBufferSubData(bufferId, offset, datap, size);
895 /* void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid* data) */
/frameworks/native/opengl/tools/glgen/src/
H A DJniCodeEmitter.java201 "offset", "_remaining", iii);
205 String offset, String remaining, String iii) {
217 (isBuffer ? "remaining()" : "length - " + offset) +
352 boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) {
364 offset, remaining, iii);
391 offset) + " < " + checks[index + 2] +
430 boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) {
820 // (JNIEnv *_env, jobject this, jint plane, jfloatArray equation_ref, jint offset) {
1018 String offset = "offset";
204 printIfcheckPostamble(PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
351 emitNativeBoundsChecks(CFunc cfunc, String cname, PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
429 emitSentinelCheck(CFunc cfunc, String cname, PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
[all...]
/frameworks/native/opengl/tools/glgen/stubs/egl/
H A DeglCreatePbufferFromClientBuffer.cpp4 (JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jlong buffer, jobject config, jintArray attrib_list_ref, jint offset) {
22 if (offset < 0) {
25 _exceptionMessage = "offset < 0";
28 _remaining = _env->GetArrayLength(attrib_list_ref) - offset;
31 attrib_list = attrib_list_base + offset;
67 (JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jint buffer, jobject config, jintArray attrib_list_ref, jint offset) {
72 return android_eglCreatePbufferFromClientBuffer(_env, _this, dpy, buftype, buffer, config, attrib_list_ref, offset);
3 android_eglCreatePbufferFromClientBuffer(JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jlong buffer, jobject config, jintArray attrib_list_ref, jint offset) argument
66 android_eglCreatePbufferFromClientBufferInt(JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jint buffer, jobject config, jintArray attrib_list_ref, jint offset) argument
H A DeglCreateWindowSurface.cpp4 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) {
23 if (offset < 0) {
26 _exceptionMessage = "offset < 0";
42 _remaining = _env->GetArrayLength(attrib_list_ref) - offset;
45 attrib_list = attrib_list_base + offset;
81 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) {
101 if (offset < 0) {
104 _exceptionMessage = "offset < 0";
124 _remaining = _env->GetArrayLength(attrib_list_ref) - offset;
127 attrib_list = attrib_list_base + offset;
3 android_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
80 android_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
[all...]
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A Dcommon.cpp77 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset) argument
97 *offset = _env->CallStaticIntMethod(nioAccessClass,
209 (JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) {
224 if (offset < 0) {
227 _exceptionMessage = "offset < 0";
230 _remaining = _env->GetArrayLength(params_ref) - offset;
238 _exceptionMessage = "length - offset < needed";
243 params = params_base + offset;
208 get(JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) argument
H A DglBindVertexBuffer.cpp1 /* void glBindVertexBuffer ( GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride ) */
4 (JNIEnv *_env, jobject _this, jint bindingindex, jint buffer, jlong offset, jint stride) {
5 if (sizeof(GLintptr) != sizeof(jlong) && (offset < LONG_MIN || offset > LONG_MAX)) {
6 jniThrowException(_env, "java/lang/IllegalArgumentException", "offset too large");
12 (GLintptr)offset,
3 android_glBindVertexBuffer__IIJI(JNIEnv *_env, jobject _this, jint bindingindex, jint buffer, jlong offset, jint stride) argument
H A DglBindVertexBuffer.java1 // C function void glBindVertexBuffer ( GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride )
6 long offset,
3 glBindVertexBuffer( int bindingindex, int buffer, long offset, int stride ) argument
H A DglGetBooleanv.cpp4 (JNIEnv *_env, jobject _this, jint pname, jbooleanArray params_ref, jint offset) {
5 get<jbooleanArray, GLboolean, glGetBooleanv>(_env, _this, pname, params_ref, offset);
3 android_glGetBooleanv__I_3ZI(JNIEnv *_env, jobject _this, jint pname, jbooleanArray params_ref, jint offset) argument
H A DglGetFloatv.cpp4 (JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) {
5 get<jfloatArray, GLfloat, glGetFloatv>(_env, _this, pname, params_ref, offset);
3 android_glGetFloatv__I_3FI(JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) argument
H A DglGetIntegerv.cpp4 (JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) {
5 get<jintArray, GLint, glGetIntegerv>(_env, _this, pname, params_ref, offset);
3 android_glGetIntegerv__I_3II(JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) argument
H A DglMapBufferRange.cpp1 /* GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access ) */
4 (JNIEnv *_env, jobject _this, jint target, jint offset, jint length, jint access) {
6 (GLintptr)offset, (GLsizeiptr)length, (GLbitfield)access);
3 android_glMapBufferRange__IIII(JNIEnv *_env, jobject _this, jint target, jint offset, jint length, jint access) argument
H A DglMapBufferRange.java1 // C function GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access )
5 int offset,
3 glMapBufferRange( int target, int offset, int length, int access ) argument
/frameworks/native/opengl/tools/glgen/stubs/jsr239/
H A DGLCHeader.cpp116 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset) argument
139 *offset = _env->CallStaticIntMethod(nioAccessClass,
180 jint offset; local
181 buf = getPointer(_env, buffer, &array, &remaining, &offset);
185 buf = (char*)buf + offset;
/frameworks/native/services/inputflinger/
H A DInputReader.h1790 float offset; // offset to add after scaling for normalization member in struct:android::JoystickInputMapper::Axis
1792 float highOffset; // offset to add after scaling for normalization of high split
1807 bool explicitlyMapped, float scale, float offset,
1814 this->offset = offset;
1806 initialize(const RawAbsoluteAxisInfo& rawAxisInfo, const AxisInfo& axisInfo, bool explicitlyMapped, float scale, float offset, float highScale, float highOffset, float min, float max, float flat, float fuzz, float resolution) argument
/frameworks/native/services/surfaceflinger/
H A DFrameTracker.cpp125 const size_t offset = mOffset; local
127 const size_t index = (offset + i) % NUM_FRAME_RECORDS;
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DExif.java51 int tag = pack(jpeg, offset, 4, false);
52 count = pack(jpeg, offset - 2, 2, littleEndian);
62 has(jpeg, byteSize, offset + length - 1)
73 int offset = 0;
86 while (has(jpeg, byteSize, offset + 3) && (jpeg.get(offset++) & 0xFF) == 0xFF) {
87 final int marker = jpeg.get(offset) & 0xFF;
93 offset++;
102 jpeg.advanceTo(offset - readBackwards);
107 length = pack(jpeg, offset,
187 pack(final InputStreamBuffer bytes, int offset, int length, final boolean littleEndian) argument
[all...]
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DFragmentRef.h38 /// @param pOffset - the offset, can be larger than the fragment, but can not
40 /// @return if the offset is legal, return the fragment reference. Otherwise,
59 /// @pNBytes - copies pNBytes from the fragment[offset()+pOffset]
60 /// @pOffset - additional offset.
61 /// the start address offset from fragment[offset()]
73 Offset offset() const function in class:mcld::FragmentRef
H A DStub.h42 DWord offset() const { return m_Offset; } function in class:mcld::Stub::Fixup
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFSegment.h60 uint64_t offset() const { return m_Offset; } function in class:mcld::ELFSegment
116 uint64_t m_Offset; // File offset where segment is located, in bytes
H A DLDSection.h89 /// offset - An integer specifying the offset of this section in the file.
90 /// Before layouting, output's LDSection::offset() should return zero.
91 uint64_t offset() const function in class:mcld::LDSection
96 /// Before layouting, output's LDSection::offset() should return zero.
/frameworks/compile/mclinker/lib/Fragment/
H A DFragmentRef.cpp48 /// @param pOffset - the offset, can be larger than the fragment, but can not
50 /// @return if the offset is legal, return the fragment reference. Otherwise,
54 int64_t offset = pOffset; local
58 offset -= frag->size();
59 if (offset <= 0)
64 if (offset == 0)
67 offset += frag->size();
74 new (result) FragmentRef(*frag, offset);
128 // check if the offset is still in a legal range.
H A DRelocation.cpp78 m_TargetAddress.assign(*pTargetRef->frag(), pTargetRef->offset()) ;
157 uint32_t offset = m_pSymInfo->outSymbol()->fragRef()->getOutputOffset(); local
158 m_Addend += offset;
/frameworks/compile/mclinker/lib/LD/
H A DBranchIsland.cpp66 uint64_t BranchIsland::offset() const function in class:BranchIsland

Completed in 3927 milliseconds

1234567891011>>