HomeSort by relevance Sort by last modified time
    Searched refs:offset (Results 126 - 150 of 16262) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/skqp/src/sksl/ir/
SkSLDiscardStatement.h 20 DiscardStatement(int offset)
21 : INHERITED(offset, kDiscard_Kind) {}
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexReader.java 37 public DexReader(@Nonnull DexBackedDexFile dexFile, int offset) {
38 super(dexFile, offset);
  /external/strace/tests/
fadvise64.c 40 do_fadvise(long fd, long long offset, long long llen, long advice)
48 ret = syscall(__NR_fadvise64, fd, offset, llen, advice);
50 printf("fadvise64(%d, %lld, %llu, ", (int) fd, offset, llen);
53 LL_VAL_TO_PAIR(offset), LL_VAL_TO_PAIR(llen), advice);
55 printf("fadvise64(%d, %lld, %lld, ", (int) fd, offset, llen);
60 LL_VAL_TO_PAIR(offset), len, advice);
63 LL_VAL_TO_PAIR(offset), len, advice);
66 printf("fadvise64(%d, %lld, %lu, ", (int) fd, offset, len);
  /external/strace/tests-m32/
fadvise64.c 40 do_fadvise(long fd, long long offset, long long llen, long advice)
48 ret = syscall(__NR_fadvise64, fd, offset, llen, advice);
50 printf("fadvise64(%d, %lld, %llu, ", (int) fd, offset, llen);
53 LL_VAL_TO_PAIR(offset), LL_VAL_TO_PAIR(llen), advice);
55 printf("fadvise64(%d, %lld, %lld, ", (int) fd, offset, llen);
60 LL_VAL_TO_PAIR(offset), len, advice);
63 LL_VAL_TO_PAIR(offset), len, advice);
66 printf("fadvise64(%d, %lld, %lu, ", (int) fd, offset, len);
  /external/strace/tests-mx32/
fadvise64.c 40 do_fadvise(long fd, long long offset, long long llen, long advice)
48 ret = syscall(__NR_fadvise64, fd, offset, llen, advice);
50 printf("fadvise64(%d, %lld, %llu, ", (int) fd, offset, llen);
53 LL_VAL_TO_PAIR(offset), LL_VAL_TO_PAIR(llen), advice);
55 printf("fadvise64(%d, %lld, %lld, ", (int) fd, offset, llen);
60 LL_VAL_TO_PAIR(offset), len, advice);
63 LL_VAL_TO_PAIR(offset), len, advice);
66 printf("fadvise64(%d, %lld, %lu, ", (int) fd, offset, len);
  /frameworks/native/opengl/tools/glgen/stubs/egl/
eglCreatePbufferFromClientBuffer.java 9 int offset
21 int offset
  /libcore/luni/src/main/java/libcore/util/
CharsetUtils.java 32 public static native byte[] toAsciiBytes(String s, int offset, int length);
39 public static native byte[] toIsoLatin1Bytes(String s, int offset, int length);
46 public static native byte[] toUtf8Bytes(String s, int offset, int length);
52 public static byte[] toBigEndianUtf16Bytes(String s, int offset, int length) {
54 int end = offset + length;
56 for (int i = offset; i < end; ++i) {
73 public static native void asciiBytesToChars(byte[] bytes, int offset, int length, char[] chars);
83 public static native void isoLatin1BytesToChars(byte[] bytes, int offset, int length, char[] chars);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES11IdImpl.java 38 public void glGenBuffers(int n, int[] buffers, int offset) {
41 buffers[offset + n] = sNextId++;
47 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) {
49 gl.glDeleteTextures(n, textures, offset);
54 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) {
56 gl.glDeleteBuffers(n, buffers, offset);
61 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) {
63 gl11ep.glDeleteFramebuffersOES(n, buffers, offset);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
EndianUtils.java 112 * Writes a "short" value to a byte array at a given offset. The value is
115 * @param offset starting offset in the byte array
118 public static void writeSwappedShort(byte[] data, int offset, short value) {
119 data[ offset + 0 ] = (byte)( ( value >> 0 ) & 0xff );
120 data[ offset + 1 ] = (byte)( ( value >> 8 ) & 0xff );
124 * Reads a "short" value from a byte array at a given offset. The value is
127 * @param offset starting offset in the byte array
130 public static short readSwappedShort(byte[] data, int offset) {
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostreams.base/fpos/fpos.operations/
offset.pass.cpp 23 std::streamoff offset(p);
24 assert(offset == 7);
  /system/chre/platform/slpi/
system_time.cc 44 void setEstimatedHostTimeOffset(int64_t offset) {
45 gEstimatedHostTimeOffset = offset;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cfi/
cfi-diag-1.l 2 .*:2: Error: register save offset not a multiple of .*
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
ByteArrayDataSink.java 49 public void consume(byte[] buf, int offset, int length) throws IOException {
50 if (offset < 0) {
53 throw new IndexOutOfBoundsException("offset: " + offset);
55 if (offset > buf.length) {
59 "offset: " + offset + ", buf.length: " + buf.length);
66 System.arraycopy(buf, offset, mArray, mSize, length);
116 public ByteBuffer getByteBuffer(long offset, int size) {
117 checkChunkValid(offset, size)
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fseek.c 61 * Seek the given file to the given offset.
62 * Zero extend the offset if SEEK_SET to allow access to 4GB files
67 off_t offset; local
70 offset = (off_t)((UINT64)l_offset); // Coerce to unsigned to prevent sign extension
72 offset = (off_t)l_offset; // OK for this one to be negative
73 return fseeko(fp, offset, whence);
  /external/clang/test/CodeGenCXX/
2008-05-07-CrazyOffsetOf.cpp 8 int offset = (char *) &(((struct bork *) 0x10)->query) - (char *) 0x10; variable
  /external/elfutils/libdw/
dwarf_haspc.c 46 ptrdiff_t offset = 0; local
47 while ((offset = INTUSE(dwarf_ranges) (die, offset, &base,
52 return offset;
  /external/elfutils/libelf/
elf_rand.c 41 elf_rand (Elf *elf, size_t offset)
49 /* Save the old offset and set the offset. */
50 elf->state.ar.offset = elf->start_offset + offset;
62 return offset;
  /external/fio/
helpers.h 9 extern int fallocate(int fd, int mode, off_t offset, off_t len);
10 extern int posix_fallocate(int fd, off_t offset, off_t len);
11 extern int sync_file_range(int fd, off64_t offset, off64_t nbytes,
13 extern int posix_fadvise(int fd, off_t offset, off_t len, int advice);
  /external/ltp/testcases/kernel/fs/scsi/ltpscsi/
llseek.h 9 llse_loff_t offset,
  /external/strace/
rtnl_nsid.c 53 const size_t offset = NLMSG_ALIGN(sizeof(rtgenmsg)); local
54 if (len > offset) {
56 decode_nlattr(tcp, addr + offset, len - offset,
  /external/syslinux/core/fs/lib/
close.c 6 file->offset = 0;
  /external/v4l2_codec2/vda/
native_pixmap_handle.cc 11 : stride(0), offset(0), size(0), modifier(0) {}
14 int offset,
17 : stride(stride), offset(offset), size(size), modifier(modifier) {}
  /external/valgrind/coregrind/m_gdbserver/
regdef.h 35 /* The offset (in bits) of the value of this register in the buffer. */
36 int offset; member in struct:reg
  /external/vboot_reference/tests/futility/
binary_editor.c 8 * offset with the specified 8-bit values.
19 uint32_t offset, curpos, curarg; local
23 fprintf(stderr, "Need two or more args: OFFSET VAL [VAL...]\n");
27 offset = (uint32_t)strtoul(argv[1], 0, 0);
31 if (curpos == offset && curarg < argc) {
33 offset++;
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
GLId.java 26 public void glGenBuffers(int n, int[] buffers, int offset);
28 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset);
30 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset);
32 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset);

Completed in 1095 milliseconds

1 2 3 4 56 7 8 91011>>