HomeSort by relevance Sort by last modified time
    Searched refs:offset (Results 251 - 275 of 17372) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/i915/
i915_debug_private.h 36 unsigned offset; /* current gtt offset */ member in struct:debug_stream
37 char *ptr; /* pointer to gtt offset zero */
38 char *end; /* pointer to gtt offset zero */
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_asm_annotation.h 35 int offset; member in struct:annotation
68 struct backend_instruction *inst, unsigned offset);
70 annotation_finalize(struct annotation_info *annotation, unsigned offset);
73 annotation_insert_error(struct annotation_info *annotation, unsigned offset,
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
FileDataStore.java 17 @Nonnull @Override public OutputStream outputAt(int offset) {
18 return new RandomAccessFileOutputStream(raf, offset);
21 @Nonnull @Override public InputStream readAt(int offset) {
22 return new RandomAccessFileInputStream(raf, offset);
  /external/strace/
lseek.c 41 * fs/read_write.c::SYSCALL_DEFINE3(lseek, unsigned, fd, off_t, offset, unsigned, origin)
50 kernel_long_t offset; local
54 offset = (int) tcp->u_arg[1];
58 offset = tcp->u_arg[1];
61 tprintf(", %" PRI_kld ", ", offset);
mknod.c 41 decode_mknod(struct tcb *tcp, int offset)
43 unsigned short mode = tcp->u_arg[offset + 1];
46 printpath(tcp, tcp->u_arg[offset]);
52 dev = tcp->u_arg[offset + 2];
  /external/vboot_reference/firmware/lib/
region-init.c 21 enum vb_firmware_region region, uint32_t offset,
26 if (offset + size > cparams->gbb_size)
28 Memcpy(buf, cparams->gbb_data + offset, size);
34 ret = VbExRegionRead(cparams, region, offset, size, buf);
  /external/vixl/test/
test-utils.h 36 void ExecuteMemory(byte* buffer, size_t size, int offset = 0);
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
s_mp3bits.h 94 uint32 offset; member in struct:__anon40198
  /frameworks/base/core/java/android/bluetooth/
BluetoothInputStream.java 70 * the byte array {@code b} starting at {@code offset}.
74 * @param offset
82 * if {@code offset < 0} or {@code length < 0}, or if
83 * {@code offset + length} is greater than the length of
89 public int read(byte[] b, int offset, int length) throws IOException {
93 if ((offset | length) < 0 || length > b.length - offset) {
94 throw new ArrayIndexOutOfBoundsException("invalid offset or length");
96 return mSocket.read(b, offset, length);
BluetoothOutputStream.java 61 * at position {@code offset} to this stream.
65 * @param offset
73 * if {@code offset < 0} or {@code count < 0}, or if
74 * {@code offset + count} is bigger than the length of
78 public void write(byte[] b, int offset, int count) throws IOException {
82 if ((offset | count) < 0 || count > b.length - offset) {
83 throw new IndexOutOfBoundsException("invalid offset or length");
85 mSocket.write(b, offset, count);
  /frameworks/compile/mclinker/lib/Target/
GOT.cpp 32 uint32_t offset = 0; local
35 frag->setOffset(offset);
36 offset += frag->size();
39 m_Section.setSize(offset);
  /hardware/qcom/display/msm8084/libgralloc/
ionalloc.h 45 size_t offset, int fd);
48 size_t offset, int fd);
51 size_t offset);
54 size_t offset, int fd, int op);
  /hardware/qcom/display/msm8226/libgralloc/
ionalloc.h 45 unsigned int offset, int fd);
48 unsigned int offset, int fd);
51 unsigned int offset);
54 unsigned int offset, int fd, int op);
  /hardware/qcom/display/msm8909/libgralloc/
ionalloc.h 45 unsigned int offset, int fd);
48 unsigned int offset, int fd);
51 unsigned int offset);
54 unsigned int offset, int fd, int op);
  /hardware/qcom/display/msm8960/libgralloc/
ionalloc.h 45 int offset, int fd);
48 int offset, int fd);
51 int offset);
54 int offset, int fd, int op);
  /hardware/qcom/display/msm8994/libgralloc/
ionalloc.h 45 unsigned int offset, int fd);
48 unsigned int offset, int fd);
51 unsigned int offset);
54 unsigned int offset, int fd, int op);
  /hardware/qcom/display/msm8996/libgralloc/
ionalloc.h 45 unsigned int offset, int fd);
48 unsigned int offset, int fd);
51 unsigned int offset);
54 unsigned int offset, int fd, int op);
  /hardware/qcom/display/sdm845/libgralloc/
ionalloc.h 45 unsigned int offset, int fd);
48 unsigned int offset, int fd);
51 unsigned int offset);
54 unsigned int offset, int fd, int op);
  /hardware/qcom/msm8998/kernel-headers/media/
msm_jpeg_dma.h 27 uint32_t offset; member in struct:msm_jpeg_dma_buff
  /hardware/qcom/msm8998/original-kernel-headers/media/
msm_jpeg_dma.h 25 uint32_t offset; member in struct:msm_jpeg_dma_buff
  /libcore/ojluni/src/main/java/java/lang/
StringIndexOutOfBoundsException.java 93 public StringIndexOutOfBoundsException(String s, int offset, int count) {
94 this(s.length(), offset, count);
101 public StringIndexOutOfBoundsException(int sourceLength, int offset,
103 super("length=" + sourceLength + "; regionStart=" + offset
  /art/dexlayout/
dex_writer.h 38 size_t Write(const void* buffer, size_t length, size_t offset);
39 size_t WriteSleb128(uint32_t value, size_t offset);
40 size_t WriteUleb128(uint32_t value, size_t offset);
41 size_t WriteEncodedValue(dex_ir::EncodedValue* encoded_value, size_t offset);
42 size_t WriteEncodedValueHeader(int8_t value_type, size_t value_arg, size_t offset);
43 size_t WriteEncodedArray(dex_ir::EncodedValueVector* values, size_t offset);
44 size_t WriteEncodedAnnotation(dex_ir::EncodedAnnotation* annotation, size_t offset);
45 size_t WriteEncodedFields(dex_ir::FieldItemVector* fields, size_t offset);
46 size_t WriteEncodedMethods(dex_ir::MethodItemVector* methods, size_t offset);
  /external/dtc/tests/
get_name.c 32 int offset; local
41 offset = fdt_path_offset(fdt, path);
42 if (offset < 0)
45 getname = fdt_get_name(fdt, offset, &len);
47 offset, getname, len);
49 FAIL("fdt_get_name(%d): %s", offset, fdt_strerror(len));
60 getname2 = fdt_get_name(fdt, offset, NULL);
62 FAIL("fdt_get_name(%d, NULL) failed", offset);
65 offset, getname2, getname);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_scratch.c 32 * 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 = 0
    [all...]
  /external/python/cpython2/Lib/ctypes/test/
test_anon.py 17 self.assertEqual(Y.a.offset, sizeof(c_int))
18 self.assertEqual(Y.b.offset, sizeof(c_int))
20 self.assertEqual(ANON.a.offset, 0)
21 self.assertEqual(ANON.b.offset, 0)
53 self.assertEqual(Y.x.offset, 0)
54 self.assertEqual(Y.a.offset, sizeof(c_int))
55 self.assertEqual(Y.b.offset, sizeof(c_int))
56 self.assertEqual(Y._.offset, sizeof(c_int))
57 self.assertEqual(Y.y.offset, sizeof(c_int) * 2)

Completed in 743 milliseconds

<<11121314151617181920>>