Searched refs:offset (Results 51 - 75 of 837) sorted by relevance

1234567891011>>

/frameworks/base/opengl/java/android/opengl/
H A DGLES11.java170 // C function void glBufferSubData ( GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data )
174 int offset,
184 int offset
199 int offset
218 // C function void glColorPointer ( GLint size, GLenum type, GLsizei stride, GLint offset )
224 int offset
232 int offset
242 // C function void glDrawElements ( GLenum mode, GLsizei count, GLenum type, GLint offset )
248 int offset
256 int offset
172 glBufferSubData( int target, int offset, int size, java.nio.Buffer data ) argument
[all...]
H A DGLES11Ext.java200 int offset
213 int offset
226 int offset
249 int offset
299 int offset
337 int offset
363 int offset
378 int offset
394 int offset
411 int offset
[all...]
H A DGLErrorWrapper.java207 public void glDeleteTextures(int n, int[] textures, int offset) { argument
209 mgl.glDeleteTextures(n, textures, offset);
297 public void glFogfv(int pname, float[] params, int offset) { argument
299 mgl.glFogfv(pname, params, offset);
315 public void glFogxv(int pname, int[] params, int offset) { argument
317 mgl.glFogxv(pname, params, offset);
347 public void glGenTextures(int n, int[] textures, int offset) { argument
349 mgl.glGenTextures(n, textures, offset);
365 public void glGetIntegerv(int pname, int[] params, int offset) { argument
367 mgl.glGetIntegerv(pname, params, offset);
396 glLightModelfv(int pname, float[] params, int offset) argument
414 glLightModelxv(int pname, int[] params, int offset) argument
432 glLightfv(int light, int pname, float[] params, int offset) argument
450 glLightxv(int light, int pname, int[] params, int offset) argument
480 glLoadMatrixf(float[] m, int offset) argument
492 glLoadMatrixx(int[] m, int offset) argument
516 glMaterialfv(int face, int pname, float[] params, int offset) argument
534 glMaterialxv(int face, int pname, int[] params, int offset) argument
552 glMultMatrixf(float[] m, int offset) argument
564 glMultMatrixx(int[] m, int offset) argument
749 glTexEnvfv(int target, int pname, float[] params, int offset) argument
767 glTexEnvxv(int target, int pname, int[] params, int offset) argument
800 glTexParameteriv(int target, int pname, int[] params, int offset) argument
846 glClipPlanef(int plane, float[] equation, int offset) argument
858 glClipPlanex(int plane, int[] equation, int offset) argument
879 glDrawTexfvOES(float[] coords, int offset) argument
897 glDrawTexivOES(int[] coords, int offset) argument
916 glDrawTexsvOES(short[] coords, int offset) argument
934 glDrawTexxvOES(int[] coords, int offset) argument
974 glBufferSubData(int target, int offset, int size, Buffer data) argument
985 glColorPointer(int size, int type, int stride, int offset) argument
991 glDeleteBuffers(int n, int[] buffers, int offset) argument
1003 glDrawElements(int mode, int count, int type, int offset) argument
1009 glGenBuffers(int n, int[] buffers, int offset) argument
1021 glGetBooleanv(int pname, boolean[] params, int offset) argument
1033 glGetBufferParameteriv(int target, int pname, int[] params, int offset) argument
1046 glGetClipPlanef(int pname, float[] eqn, int offset) argument
1058 glGetClipPlanex(int pname, int[] eqn, int offset) argument
1070 glGetFixedv(int pname, int[] params, int offset) argument
1082 glGetFloatv(int pname, float[] params, int offset) argument
1094 glGetLightfv(int light, int pname, float[] params, int offset) argument
1106 glGetLightxv(int light, int pname, int[] params, int offset) argument
1118 glGetMaterialfv(int face, int pname, float[] params, int offset) argument
1130 glGetMaterialxv(int face, int pname, int[] params, int offset) argument
1148 glGetTexEnviv(int env, int pname, int[] params, int offset) argument
1160 glGetTexEnvxv(int env, int pname, int[] params, int offset) argument
1172 glGetTexParameterfv(int target, int pname, float[] params, int offset) argument
1185 glGetTexParameteriv(int target, int pname, int[] params, int offset) argument
1198 glGetTexParameterxv(int target, int pname, int[] params, int offset) argument
1232 glNormalPointer(int type, int stride, int offset) argument
1244 glPointParameterfv(int pname, float[] params, int offset) argument
1262 glPointParameterxv(int pname, int[] params, int offset) argument
1280 glTexCoordPointer(int size, int type, int stride, int offset) argument
1292 glTexEnviv(int target, int pname, int[] params, int offset) argument
1304 glTexParameterfv(int target, int pname, float[] params, int offset) argument
1323 glTexParameterxv(int target, int pname, int[] params, int offset) argument
1335 glVertexPointer(int size, int type, int stride, int offset) argument
1360 glMatrixIndexPointerOES(int size, int type, int stride, int offset) argument
1374 glWeightPointerOES(int size, int type, int stride, int offset) argument
1425 glDeleteFramebuffersOES(int n, int[] framebuffers, int offset) argument
1439 glDeleteRenderbuffersOES(int n, int[] renderbuffers, int offset) argument
1476 glGenFramebuffersOES(int n, int[] framebuffers, int offset) argument
1490 glGenRenderbuffersOES(int n, int[] renderbuffers, int offset) argument
1504 glGetFramebufferAttachmentParameterivOES(int target, int attachment, int pname, int[] params, int offset) argument
1520 glGetRenderbufferParameterivOES(int target, int pname, int[] params, int offset) argument
1536 glGetTexGenfv(int coord, int pname, float[] params, int offset) argument
1550 glGetTexGeniv(int coord, int pname, int[] params, int offset) argument
1564 glGetTexGenxv(int coord, int pname, int[] params, int offset) argument
1609 glTexGenfv(int coord, int pname, float[] params, int offset) argument
1630 glTexGeniv(int coord, int pname, int[] params, int offset) argument
1651 glTexGenxv(int coord, int pname, int[] params, int offset) argument
[all...]
/frameworks/base/tools/preload/
H A DRecord.java150 int offset = result.indexOf("\\u");
151 while (offset >= 0) {
152 String before = result.substring(0, offset);
153 String escaped = result.substring(offset+2, offset+6);
154 String after = result.substring(offset+6);
159 offset = result.indexOf("\\u", offset + 1);
/frameworks/minikin/include/minikin/
H A DGraphemeBreak.h33 // Determine whether the given offset is a grapheme break.
37 static bool isGraphemeBreak(const uint16_t* buf, size_t start, size_t count, size_t offset);
42 size_t offset, MoveOpt opt);
/frameworks/native/opengl/tools/glgen/stubs/gles11/
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
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11.java161 int offset,
169 int offset
180 int offset
199 int offset
205 int offset
217 int offset
223 int offset
234 int offset
246 int offset
258 int offset
159 glBufferSubData( int target, int offset, int size, java.nio.Buffer data ) argument
[all...]
H A DGL11Ext.java40 void glTexParameterfv(int target, int pname, float[] param, int offset); argument
56 int offset
73 int offset
90 int offset
107 int offset
136 int offset
150 int offset
/frameworks/wilhelm/src/android/
H A DAacBqToPcmCbRenderer.cpp30 * Note that if the returned value + offset > size, it means that a partial frame starts at that
31 * offset, but this function will still return the size of the full frame.
33 * @param offset offset in bytes relative to data of where the frame is supposed to start
35 * @return the size in bytes of the AAC ADTS frame starting at the given offset of the given
38 static size_t getAdtsFrameSize(const uint8_t *data, off64_t offset, size_t size) { argument
41 if (!(offset + ADTS_HEADER_SIZE_UP_TO_FRAMESIZE < size)) {
47 const uint8_t *syncword = data + offset;
53 const uint8_t protectionAbsent = data[offset+1] & 0x1;
55 const uint8_t* header = data + offset
85 off64_t offset = 0; local
[all...]
H A Dandroid_AudioToCbRenderer.cpp65 size_t offset = 0; local
66 while (offset < full) {
69 + offset + mDecodeBuffer->range_offset(),
70 mDecodeBuffer->range_length() - offset,
72 offset += consumed;
73 //SL_LOGV("consumed=%u, offset=%u, full=%u", consumed, offset, full);
/frameworks/av/media/libstagefright/id3/
H A Dtestid3.cpp34 size_t offset = 0; local
35 while (offset < size) {
36 printf("0x%04zx ", offset);
38 size_t n = size - offset;
48 if (offset + i < size) {
49 printf("%02x ", data[offset + i]);
58 if (isprint(data[offset + i])) {
59 printf("%c", data[offset + i]);
67 offset += 16;
/frameworks/base/core/java/android/hardware/camera2/params/
H A DLensShadingMap.java163 final int offset = (row * mColumns + column) * COUNT;
166 mElements[RED + offset];
168 mElements[GREEN_EVEN + offset];
170 mElements[GREEN_ODD + offset];
172 mElements[BLUE + offset];
184 * elements after the {@code offset}
185 * @param offset
186 * a non-negative offset into the array
190 * If offset was negative
193 * offset
197 copyGainFactors(final float[] destination, final int offset) argument
[all...]
H A DRggbChannelVector.java137 * {@code offset}
138 * @param offset
139 * a non-negative offset into the array
145 * offset.
147 public void copyTo(final float[] destination, final int offset) { argument
149 if (destination.length - offset < COUNT) {
153 destination[offset + RED] = mRed;
154 destination[offset + GREEN_EVEN] = mGreenEven;
155 destination[offset + GREEN_ODD] = mGreenOdd;
156 destination[offset
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DCryptoPlugin.cpp46 size_t offset = 0; local
58 memcpy(reinterpret_cast<uint8_t*>(dstPtr) + offset,
59 reinterpret_cast<const uint8_t*>(srcPtr) + offset,
61 offset += subSample.mNumBytesOfClearData;
64 return static_cast<ssize_t>(offset);
/frameworks/av/media/libstagefright/foundation/
H A DParsedMessage.cpp92 size_t offset = 0; local
94 while (offset < size) {
95 size_t lineEndOffset = offset;
106 AString line(&data[offset], lineEndOffset - offset);
108 if (offset == 0) {
112 offset = lineEndOffset + 2;
117 if (lineEndOffset == offset) {
120 offset += 2;
135 offset
185 size_t offset = 0; local
[all...]
/frameworks/native/libs/gui/tests/
H A DSurfaceTextureFBO.h64 off_t offset = (y * stride + x) * PIXEL_SIZE; local
65 buf[offset + 0] = r;
66 buf[offset + 1] = g;
67 buf[offset + 2] = b;
68 buf[offset + 3] = a;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_MCReconBlock_s.s86 ;// M_LOAD_X $pSrc, $srcStep, $out0, $out1, $scratch, $offset
93 ;// $offset Difference of source data location to the source pointer
94 ;// Use when $offset != 0 (unaligned load)
103 ;// register numbering. In case offset is 0, $scratch is not modified.
106 M_LOAD_X $pSrc, $srcStep, $out0, $out1, $scratch, $offset
107 IF $offset = 0
114 MOV $out0, $out0, LSR #8 * $offset
115 ORR $out0, $out0, $out1, LSL #(32 - 8 * ($offset))
116 MOV $out1, $out1, LSR #8 * $offset
117 ORR $out1, $out1, $scratch, LSL #(32 - 8 * ($offset))
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DLiveDataSource.h35 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
36 ssize_t readAtNonBlocking(off64_t offset, void *data, size_t size);
57 ssize_t readAt_l(off64_t offset, void *data, size_t size);
/frameworks/base/core/java/android/content/pm/
H A DMacAuthenticatedInputStream.java71 public int read(byte[] buffer, int offset, int count) throws IOException { argument
72 int numRead = super.read(buffer, offset, count);
74 mMac.update(buffer, offset, numRead);
/frameworks/base/media/mca/filterfw/native/core/
H A Dnative_frame.cpp30 bool NativeFrame::WriteData(const uint8_t* data, int offset, int size) { argument
31 if (size_ >= (offset + size)) {
32 memcpy(data_ + offset, data, size);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DPixelUtils.java28 * <p>The transformation is specified by specifying the initial offset in the output buffer, the
40 * @param offset The start offset in the output (in pixels)
48 int offset,
64 nativeCopyPixels(input, output, width, height, offset, pixStride, rowStride);
71 int offset,
44 copyPixels(ByteBuffer input, ByteBuffer output, int width, int height, int offset, int pixStride, int rowStride) argument
67 nativeCopyPixels(ByteBuffer input, ByteBuffer output, int width, int height, int offset, int pixStride, int rowStride) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/libcore/io/
H A DBridgeBufferIterator.java37 public void seek(int offset) { argument
38 assert offset <= mSize;
39 mByteBuffer.position(offset);

Completed in 527 milliseconds

1234567891011>>