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

<<11121314151617181920>>

  /external/dtc/tests/
path_offset_aliases.c 33 int offset, offset_a; local
35 offset = fdt_path_offset(fdt, full_path);
38 if (offset != offset_a)
40 full_path, offset, alias_path, offset_a);
  /external/e2fsprogs/ext2ed/
disk.c 35 int low_read (unsigned char *buffer,unsigned long length,unsigned long offset)
53 if (offset > file_system_info.file_system_size) { /* Check that the offset is within limits */
54 sprintf (temp,"Seek offset %ld is out of range",offset);
61 if ( (fseek (device_handle,offset,SEEK_SET))==-1) { /* Seek to the required offset */
62 wprintw (command_win,"Error - Failed to seek to offset %ld in device %s\n",offset,device_name);
68 wprintw (command_win,"Error - Failed to read from offset %ld in device %s\n",offset,device_name)
    [all...]
  /external/elfutils/libdw/
dwarf_getstring.c 39 dwarf_getstring (Dwarf *dbg, Dwarf_Off offset, size_t *lenp)
45 || offset >= dbg->sectiondata[IDX_debug_str]->d_size)
53 + offset);
55 dbg->sectiondata[IDX_debug_str]->d_size - offset);
  /external/emma/core/java12/com/vladium/jcd/opcodes/
IOpcodeVisitor.java 20 void visit (int opcode, boolean wide, int offset, Object ctx);
  /external/fio/
helpers.c 13 int fallocate(int fd, int mode, off_t offset, off_t len)
21 int posix_fallocate(int fd, off_t offset, off_t len)
28 int sync_file_range(int fd, off64_t offset, off64_t nbytes, unsigned int flags)
36 int posix_fadvise(int fd, off_t offset, off_t len, int advice)
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
AffixUtils.java 110 int offset = 0; local
112 for (; offset < patternString.length(); ) {
113 int cp = Character.codePointAt(patternString, offset);
159 offset += Character.charCount(cp);
186 int offset = 0; local
188 for (; offset < input.length(); ) {
189 int cp = Character.codePointAt(input, offset);
220 offset += Character.charCount(cp);
383 int offset = getOffset(tag); local
384 chars[offset - 1] = replacementChar
401 int offset = getOffset(tag); local
553 int offset = getOffset(tag); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
AffixUtils.java 108 int offset = 0; local
110 for (; offset < patternString.length(); ) {
111 int cp = Character.codePointAt(patternString, offset);
157 offset += Character.charCount(cp);
184 int offset = 0; local
186 for (; offset < input.length(); ) {
187 int cp = Character.codePointAt(input, offset);
218 offset += Character.charCount(cp);
381 int offset = getOffset(tag); local
382 chars[offset - 1] = replacementChar
399 int offset = getOffset(tag); local
551 int offset = getOffset(tag); local
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
Provider.java 24 * @param offset Offset at which to start storing characters
29 public int read(char buffer[], int offset, int len) throws IOException;
  /external/ltp/include/lapi/
fallocate.h 55 static inline long fallocate(int fd, int mode, loff_t offset, loff_t len)
59 return TST_SYSCALL_WRAPPER(__NR_fallocate, fd, mode, offset, len);
62 __LONG_LONG_PAIR((off_t) (offset >> 32),
63 (off_t) offset),
  /external/mesa3d/src/gallium/drivers/i915/
i915_batch.h 44 #define OUT_RELOC(buf, usage, offset) \
45 i915_winsys_batchbuffer_reloc(i915->batch, buf, usage, offset, false)
47 #define OUT_RELOC_FENCED(buf, usage, offset) \
48 i915_winsys_batchbuffer_reloc(i915->batch, buf, usage, offset, true)
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/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)
  /external/python/cpython3/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)
  /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];
rtnl_netconf.c 60 const size_t offset = NLMSG_ALIGN(sizeof(ncm)); local
61 if (len > offset) {
63 decode_nlattr(tcp, addr + offset, len - offset,
rtnl_tc_action.c 56 const size_t offset = NLMSG_ALIGN(sizeof(tca)); local
57 if (len > offset) {
59 decode_nlattr(tcp, addr + offset, len - offset,
  /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:__anon45396
  /frameworks/av/media/libstagefright/foundation/
hexdump.cpp 45 size_t offset = 0; local
46 while (offset < size) {
52 snprintf(tmp, sizeof(tmp), "%08lx: ", (unsigned long)offset);
60 if (offset + i >= size) {
63 snprintf(tmp, sizeof(tmp), "%02x ", data[offset + i]);
71 if (offset + i >= size) {
75 if (isprint(data[offset + i])) {
76 line.append((char)data[offset + i]);
89 offset += 16;
  /frameworks/base/core/java/android/bluetooth/
BluetoothInputStream.java 69 * the byte array {@code b} starting at {@code offset}.
72 * @param offset the initial position in {@code buffer} to store the bytes read from this
76 * @throws IndexOutOfBoundsException if {@code offset < 0} or {@code length < 0}, or if {@code
77 * offset + length} is greater than the length of {@code b}.
81 public int read(byte[] b, int offset, int length) throws IOException {
85 if ((offset | length) < 0 || length > b.length - offset) {
86 throw new ArrayIndexOutOfBoundsException("invalid offset or length");
88 return mSocket.read(b, offset, length);

Completed in 2044 milliseconds

<<11121314151617181920>>