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

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/com32/lib/libpng/
pngerror.c 52 int offset; local
53 for (offset = 1; offset<15; offset++)
54 if (error_message[offset] == ' ')
59 for (i = 0; i < offset - 1; i++)
65 error_message += offset;
108 int offset = 0; local
118 for (offset = 1; offset < 15; offset++
125 (*(png_ptr->warning_fn))(png_ptr, warning_message + offset); local
246 int offset; local
310 int offset; local
    [all...]
  /external/syslinux/gpxe/src/net/
dhcpopts.c 59 * @v offset Offset within options block
63 dhcp_option ( struct dhcp_options *options, unsigned int offset ) {
64 return ( ( struct dhcp_option * ) ( options->data + offset ) );
68 * Get offset of a DHCP option
72 * @ret offset Offset within options block
99 * @ret encap_offset Offset of encapsulating DHCP option
100 * @ret offset Offset of DHCP option, or negative erro
119 int offset = 0; local
264 int offset; local
342 int offset; local
361 int offset; local
380 int offset; local
407 int offset = 0; local
    [all...]
  /bionic/libc/include/sys/
sendfile.h 38 ssize_t sendfile(int out_fd, int in_fd, off_t* offset, size_t count) __RENAME(sendfile64) __INTRODUCED_IN(21);
40 ssize_t sendfile(int out_fd, int in_fd, off_t* offset, size_t count);
42 ssize_t sendfile64(int out_fd, int in_fd, off64_t* offset, size_t count) __INTRODUCED_IN(21);
  /dalvik/dx/src/com/android/dx/cf/iface/
ParseObserver.java 38 * @param offset offset into {@code bytes} for the start of the
43 public void startParsingMember(ByteArray bytes, int offset, String name,
50 * @param offset offset into {@code bytes} for the end of the
56 public void endParsingMember(ByteArray bytes, int offset, String name,
63 * @param offset offset into {@code bytes} for what was parsed
67 public void parsed(ByteArray bytes, int offset, int len, String human);
  /external/ImageMagick/MagickCore/
monitor.h 33 static inline MagickBooleanType QuantumTick(const MagickOffsetType offset,
38 if (offset == (MagickOffsetType) (span-1))
40 if ((offset % (span/100)) == 0)
  /external/emma/core/java12/com/vladium/jcd/cls/
IMethodCollection.java 30 * Returns {@link Method_info} descriptor at a given offset.
32 * @param offset method offset [must be in [0, size()) range; input not checked]
35 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
37 Method_info get (int offset);
77 * Replaces the Method_info descriptor at a given offset. No duplicate
82 * @param offset method offset [must be in [0, size()) range; input not checked]
84 * @return previous method descriptor at this offset [never null]
86 * @throws IndexOutOfBoundsException if 'offset' is outside of valid rang
    [all...]
  /external/strace/
chmod.c 4 decode_chmod(struct tcb *tcp, const int offset)
6 printpath(tcp, tcp->u_arg[offset]);
8 print_numeric_umode_t(tcp->u_arg[offset + 1]);
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
BinaryObject.h 194 inline void fixByte(uint8_t B, uint32_t offset) {
195 Data[offset] = B;
200 inline void fixWord16(uint16_t W, uint32_t offset) {
202 fixWord16LE(W, offset);
204 fixWord16BE(W, offset);
209 inline void fixWord16LE(uint16_t W, uint32_t offset) {
210 Data[offset] = (uint8_t)(W >> 0);
211 Data[++offset] = (uint8_t)(W >> 8);
216 inline void fixWord16BE(uint16_t W, uint32_t offset) {
217 Data[offset] = (uint8_t)(W >> 8)
    [all...]
  /external/syslinux/com32/gpllib/disk/
swsusp.c 16 int offset; local
20 offset = ptab->start_lba;
21 if (read_sectors(drive_info, &header_p, offset, PAGE_SIZE / SECTOR) == -1) {
  /external/syslinux/gpxe/src/include/gpxe/efi/
efi_uaccess.h 36 * @v offset Offset from user pointer
40 UACCESS_INLINE ( efi, user_to_phys ) ( userptr_t userptr, off_t offset ) {
41 return ( userptr + offset );
50 UACCESS_INLINE ( efi, user_to_virt ) ( userptr_t userptr, off_t offset ) {
51 return trivial_user_to_virt ( userptr, offset );
55 UACCESS_INLINE ( efi, userptr_add ) ( userptr_t userptr, off_t offset ) {
56 return trivial_userptr_add ( userptr, offset );
74 UACCESS_INLINE ( efi, memset_user ) ( userptr_t buffer, off_t offset,
76 trivial_memset_user ( buffer, offset, c, len )
    [all...]
  /frameworks/minikin/tests/unittest/
UnicodeUtilsTest.cpp 26 size_t offset; local
28 ParseUnicode(buf, BUF_SIZE, "U+000D U+1F431 | 'a'", &size, &offset);
30 EXPECT_EQ(offset, 3u);
  /libcore/ojluni/src/main/java/java/text/
IcuIteratorWrapper.java 267 * (i.e., the CharacterIterator's starting offset).
269 * @return The offset of the beginning of the text.
277 * (i.e., the CharacterIterator's ending offset).
279 * @return The text's past-the-end offset.
292 * @return The character offset of the boundary position n boundaries away from
318 * Throw IllegalArgumentException unless begin <= offset < end.
320 protected static final void checkOffset(int offset, CharacterIterator text) {
321 if (offset < text.getBeginIndex() || offset > text.getEndIndex()) {
322 throw new IllegalArgumentException("offset out of bounds")
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/spec/
IvParameterSpec.java 58 * bytes in <code>iv</code>, beginning at <code>offset</code>
62 * <code>iv[offset]</code> and <code>iv[offset+len-1]</code> inclusive.
65 * bytes of the buffer beginning at <code>offset</code> inclusive
67 * @param offset the offset in <code>iv</code> where the IV
71 * or {@code (iv.length - offset < len)}
72 * @throws ArrayIndexOutOfBoundsException is thrown if <code>offset</code>
75 public IvParameterSpec(byte[] iv, int offset, int len) {
79 if (iv.length - offset < len)
    [all...]
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Encoder.java 21 * It also keeps track of the associated handles, and the offset of the current data section.
100 * Base offset in the byte buffer for writing.
157 * Encode a byte at the given offset.
159 public void encode(byte v, int offset) {
160 mEncoderState.byteBuffer.put(mBaseOffset + offset, v);
164 * Encode a boolean at the given offset.
166 public void encode(boolean v, int offset, int bit) {
168 byte encodedValue = mEncoderState.byteBuffer.get(mBaseOffset + offset);
170 mEncoderState.byteBuffer.put(mBaseOffset + offset, encodedValue);
175 * Encode a short at the given offset
258 encode(mEncoderState.handles.size(), offset); local
280 encode(handler.passHandle(), offset, nullable); local
303 encode(v.passHandle(), offset, nullable); local
    [all...]
  /art/dexlayout/
dex_writer.cc 106 size_t DexWriter::Write(const void* buffer, size_t length, size_t offset) {
107 DCHECK_LE(offset + length, mem_map_->Size());
108 memcpy(mem_map_->Begin() + offset, buffer, length);
112 size_t DexWriter::WriteSleb128(uint32_t value, size_t offset) {
115 return Write(buffer, SignedLeb128Size(value), offset);
118 size_t DexWriter::WriteUleb128(uint32_t value, size_t offset) {
121 return Write(buffer, UnsignedLeb128Size(value), offset);
124 size_t DexWriter::WriteEncodedValue(dex_ir::EncodedValue* encoded_value, size_t offset) {
125 size_t original_offset = offset;
174 offset += WriteEncodedValueHeader(type, 0, offset)
254 uint32_t offset = string_data->GetOffset(); local
274 uint32_t offset = type_list->GetOffset(); local
327 size_t offset = annotation->GetOffset(); local
339 size_t offset = annotation_set->GetOffset(); local
354 size_t offset = annotation_set_ref->GetOffset(); local
377 uint32_t offset = annotations_directory->GetOffset(); local
424 size_t offset = code_item->GetOffset(); local
476 size_t offset = class_def->GetOffset(); local
482 size_t offset = class_data->GetOffset(); local
610 uint32_t offset = collection.MapListOffset(); local
630 size_t offset = 0; local
    [all...]
  /art/compiler/linker/
vector_output_stream.cc 26 off_t VectorOutputStream::Seek(off_t offset, Whence whence) {
31 new_offset = offset;
35 new_offset = offset_ + offset;
39 new_offset = vector_->size() + offset;
  /external/brotli/java/org/brotli/dec/
Utils.java 25 * @param offset the first byte to fill
28 static void fillWithZeroes(byte[] dest, int offset, int length) {
32 System.arraycopy(BYTE_ZEROES, 0, dest, offset + cursor, step);
44 * @param offset the first item to fill
47 static void fillWithZeroes(int[] dest, int offset, int length) {
51 System.arraycopy(INT_ZEROES, 0, dest, offset + cursor, step);
  /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/libmojo/mojo/public/cpp/bindings/lib/
bindings_internal.cc 33 void EncodePointer(const void* ptr, uint64_t* offset) {
35 *offset = 0;
40 const char* p_slot = reinterpret_cast<const char*>(offset);
43 *offset = static_cast<uint64_t>(p_obj - p_slot);
  /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)

Completed in 1151 milliseconds

1 2 3 4 5 6 7 8 91011>>