HomeSort by relevance Sort by last modified time
    Searched refs:offset (Results 226 - 250 of 9687) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
IExceptionHandlerTable.java 31 * Returns {@link Exception_info} descriptor at a given offset.
33 * @param offset exception offset [must be in [0, size()) range; input not checked]
36 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
38 Exception_info get (int offset);
68 * Replaces the Exception_info descriptor at a given offset. No duplicate
74 * @param offset exception offset [must be in [0, size()) range; input not checked]
76 * @return previous exception descriptor at this offset [never null]
78 * @throws IndexOutOfBoundsException if 'offset' is outside of valid rang
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
IoTestCase.java 43 * offset .. offset + size - 1.
45 protected static byte[] newPreFilledByteArray(int offset, int size) {
48 array[i] = (byte) (offset + i);
  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
Android22Workaround.java 6 public static void glVertexAttribPointer(int location, int components, int format, boolean normalize, int stride, int offset){
12 offset);
  /external/kernel-headers/original/asm-generic/bitops/
find.h 5 size, unsigned long offset);
8 long size, unsigned long offset);
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_mm.h 13 uint32_t offset; member in struct:nouveau_mm_allocation
25 struct nouveau_bo **, uint32_t *offset);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_scratch.h 37 int offset; member in struct:nouveau_scratch_state
43 struct nouveau_bo **bo, unsigned *offset);
  /external/proguard/src/proguard/evaluation/
BranchUnit.java 34 * Sets the new instruction offset.
38 int offset,
43 * Sets the new instruction offset, depending on the certainty of the
48 int offset,
  /external/sfntly/cpp/src/sfntly/data/
font_data.h 61 // @param offset the start of the new bounds
64 virtual bool Bound(int32_t offset, int32_t length);
66 // Sets limits on the size of the FontData. This is a offset bound only so if
69 // @param offset the start of the new bounds which must be within the current
72 virtual bool Bound(int32_t offset);
76 // @param offset the start of the slice
79 virtual CALLER_ATTACH FontData* Slice(int32_t offset, int32_t length) = 0;
83 // @param offset the start of the slice
85 virtual CALLER_ATTACH FontData* Slice(int32_t offset) = 0;
97 // @param offset the offset to start the wrap fro
    [all...]
  /external/sfntly/cpp/src/sfntly/port/
memory_output_stream.cc 32 int32_t offset,
35 if (offset >= 0 && length > 0) {
37 buffer->begin() + offset,
38 buffer->begin() + offset + length);
46 void MemoryOutputStream::Write(byte_t* buffer, int32_t offset, int32_t length) {
48 if (offset >= 0 && length > 0) {
49 store_.insert(store_.end(), buffer + offset, buffer + offset + length);
output_stream.h 38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length) = 0;
41 virtual void Write(byte_t* buffer, int32_t offset, int32_t length) = 0;
  /external/smack/src/org/apache/harmony/javax/security/sasl/
SaslClient.java 34 byte[] unwrap(byte[] incoming, int offset, int len) throws SaslException;
36 byte[] wrap(byte[] outgoing, int offset, int len) throws SaslException;
SaslServer.java 34 byte[] unwrap(byte[] incoming, int offset, int len) throws SaslException;
36 byte[] wrap(byte[] outgoing, int offset, int len) throws SaslException;
  /frameworks/av/libvideoeditor/vss/src/
M4VD_Tools.c 59 M4OSA_UInt8 offset, M4OSA_UInt8 nb_bits)
64 input = (input << (32 - nb_bits - offset));
71 if((j*8)+i >= offset && (j*8)+i < nb_bits + offset)
85 if((j*8)+i >= offset && (j*8)+i < nb_bits + offset)
87 temp = ((input & (0x80000000 >> offset)) >> (31-offset));
  /frameworks/av/media/libstagefright/mp4/
TrackFragment.cpp 244 FragmentedMP4Parser *parser, uint32_t type, size_t offset, uint64_t size) {
245 if (offset + 12 > size) {
249 if (parser->readU32(offset) != 0) {
253 uint32_t sampleSize = parser->readU32(offset + 4);
254 uint32_t sampleCount = parser->readU32(offset + 8);
256 if (sampleSize == 0 && offset + 12 + sampleCount * 4 != size) {
260 parser->copyBuffer(&mSampleSizes, offset, size);
268 FragmentedMP4Parser *parser, uint32_t type, size_t offset, uint64_t size) {
269 if (offset + 12 > size) {
273 if (parser->readU32(offset) != 0)
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
GLES20IdImpl.java 19 public void glGenBuffers(int n, int[] buffers, int offset) {
20 GLES20.glGenBuffers(n, buffers, offset);
25 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) {
26 GLES20.glDeleteTextures(n, textures, offset);
32 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) {
33 GLES20.glDeleteBuffers(n, buffers, offset);
38 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) {
39 GLES20.glDeleteFramebuffers(n, buffers, offset);
  /libcore/luni/src/main/java/java/lang/
ArrayIndexOutOfBoundsException.java 70 public ArrayIndexOutOfBoundsException(int sourceLength, int offset,
72 super("length=" + sourceLength + "; regionStart=" + offset
  /libcore/support/src/test/java/tests/support/
Support_StringWriter.java 99 * Writes <code>count</code> characters starting at <code>offset</code>
104 * @param offset
105 * offset in buf to retrieve characters
110 * If offset or count are outside of bounds.
113 public void write(char[] buf, int offset, int count) {
115 if (0 <= offset && offset <= buf.length && 0 <= count
116 && count <= buf.length - offset) {
118 this.buf.append(buf, offset, count);
158 * <code>offset</code> from the String <code>str</code> to thi
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES20IdImpl.java 19 public void glGenBuffers(int n, int[] buffers, int offset) {
20 GLES20.glGenBuffers(n, buffers, offset);
25 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) {
26 GLES20.glDeleteTextures(n, textures, offset);
32 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) {
33 GLES20.glDeleteBuffers(n, buffers, offset);
38 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) {
39 GLES20.glDeleteFramebuffers(n, buffers, offset);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
GLES20IdImpl.java 19 public void glGenBuffers(int n, int[] buffers, int offset) {
20 GLES20.glGenBuffers(n, buffers, offset);
25 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) {
26 GLES20.glDeleteTextures(n, textures, offset);
32 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) {
33 GLES20.glDeleteBuffers(n, buffers, offset);
38 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) {
39 GLES20.glDeleteFramebuffers(n, buffers, offset);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
FsFile.java 58 * @param offset the offset into the file where to start reading
62 public void read(long offset, ByteBuffer dest) throws IOException;
70 * @param offset the offset into the file where the first byte will be
76 public void write(long offset, ByteBuffer src)
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/
glapi_getproc.c 76 * Return dispatch table offset of the named static (built-in) function.
87 return f->Offset;
106 ? get_entrypoint_address(f->Offset)
109 return get_entrypoint_address(f->Offset);
118 * Return the name of the function at the given offset in the dispatch
122 get_static_proc_name( GLuint offset )
126 if (static_functions[i].Offset == offset) {
163 * Offset in the dispatch table where the pointer to the real function is
227 get_extension_proc_name(GLuint offset)
382 int offset = ~0; local
489 GLint offset; local
618 GLuint offset = (BeginFunc - (char *) table) \/ sizeof(void *); local
624 GLuint offset = (viewportFunc - (char *) table) \/ sizeof(void *); local
630 GLuint offset = (VertexPointerFunc - (char *) table) \/ sizeof(void *); local
636 GLuint offset = (ResetMinMaxFunc - (char *) table) \/ sizeof(void *); local
642 GLuint offset = (blendColorFunc - (char *) table) \/ sizeof(void *); local
648 GLuint offset = (secondaryColor3fFunc - (char *) table) \/ sizeof(void *); local
654 GLuint offset = (pointParameterivFunc - (char *) table) \/ sizeof(void *); local
660 GLuint offset = (setFenceFunc - (char *) table) \/ sizeof(void *); local
    [all...]
  /external/mesa3d/src/mapi/glapi/
glapi_getproc.c 76 * Return dispatch table offset of the named static (built-in) function.
87 return f->Offset;
106 ? get_entrypoint_address(f->Offset)
109 return get_entrypoint_address(f->Offset);
118 * Return the name of the function at the given offset in the dispatch
122 get_static_proc_name( GLuint offset )
126 if (static_functions[i].Offset == offset) {
163 * Offset in the dispatch table where the pointer to the real function is
227 get_extension_proc_name(GLuint offset)
382 int offset = ~0; local
489 GLint offset; local
618 GLuint offset = (BeginFunc - (char *) table) \/ sizeof(void *); local
624 GLuint offset = (viewportFunc - (char *) table) \/ sizeof(void *); local
630 GLuint offset = (VertexPointerFunc - (char *) table) \/ sizeof(void *); local
636 GLuint offset = (ResetMinMaxFunc - (char *) table) \/ sizeof(void *); local
642 GLuint offset = (blendColorFunc - (char *) table) \/ sizeof(void *); local
648 GLuint offset = (secondaryColor3fFunc - (char *) table) \/ sizeof(void *); local
654 GLuint offset = (pointParameterivFunc - (char *) table) \/ sizeof(void *); local
660 GLuint offset = (setFenceFunc - (char *) table) \/ sizeof(void *); local
    [all...]
  /bionic/libc/stdlib/
getenv.c 34 char *__findenv(const char *name, int *offset);
39 * Sets offset to be the offset of the name/value combination in the
46 __findenv(const char *name, int *offset)
63 *offset = p - environ;
77 int offset; local
79 return (__findenv(name, &offset));
  /dalvik/dx/tests/093-ssa-invoke-range/
Blort.java 58 int offset = 1; local
62 methodThatNeedsInvokeRange(src, 0, dest, offset, 5, 0);
63 return offset;
65 long offset = System.currentTimeMillis();; local
66 return offset;
  /external/chromium_org/net/disk_cache/flash/
log_store_entry.cc 43 for (int i = 0, offset = kFlashLogStoreEntryHeaderSize;
45 streams_[i].offset = offset;
47 offset += stream_sizes[i];
77 int LogStoreEntry::ReadData(int index, int offset, net::IOBuffer* buf,
84 if (offset >= stream_size || offset < 0 || buf_len == 0)
86 if (offset + buf_len > stream_size)
87 buf_len = stream_size - offset;
90 offset += streams_[index].offset
    [all...]

Completed in 238 milliseconds

1 2 3 4 5 6 7 8 91011>>