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

<<11121314151617181920>>

  /art/compiler/linker/x86/
relative_patcher_x86_base.cc 25 uint32_t offset,
28 return offset; // No space reserved; no limit on relative call distance.
31 uint32_t X86BaseRelativePatcher::ReserveSpaceEnd(uint32_t offset) {
32 return offset; // No space reserved; no limit on relative call distance.
35 uint32_t X86BaseRelativePatcher::WriteThunks(OutputStream* out ATTRIBUTE_UNUSED, uint32_t offset) {
36 return offset; // No thunks added; no limit on relative call distance.
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
getenv.c 34 char *__findenv(const char *name, int len, int *offset);
39 * Starts searching within the environmental array at offset.
40 * Sets offset to be the offset of the name/value combination in the
47 __findenv(const char *name, int len, int *offset)
56 for (p = environ + *offset; (cp = *p) != NULL; ++p) {
61 *offset = p - environ;
75 int offset = 0; local
80 return (__findenv(name, (int)(np - name), &offset));
  /device/linaro/bootloader/arm-trusted-firmware/lib/libfdt/
libfdt_internal.h 65 int _fdt_check_node_offset(const void *fdt, int offset);
66 int _fdt_check_prop_offset(const void *fdt, int offset);
70 static inline const void *_fdt_offset_ptr(const void *fdt, int offset)
72 return (const char *)fdt + fdt_off_dt_struct(fdt) + offset;
75 static inline void *_fdt_offset_ptr_w(void *fdt, int offset)
77 return (void *)(uintptr_t)_fdt_offset_ptr(fdt, offset);
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/
libfdt_internal.h 65 int _fdt_check_node_offset(const void *fdt, int offset);
66 int _fdt_check_prop_offset(const void *fdt, int offset);
70 static inline const void *_fdt_offset_ptr(const void *fdt, int offset)
72 return (const char *)fdt + fdt_off_dt_struct(fdt) + offset;
75 static inline void *_fdt_offset_ptr_w(void *fdt, int offset)
77 return (void *)(uintptr_t)_fdt_offset_ptr(fdt, offset);
  /external/annotation-tools/asmx/src/org/objectweb/asm/attrs/
StackMapType.java 70 private Label offset; field in class:StackMapType
88 public void setLabel(Label offset) {
89 this.offset = offset;
97 return offset;
110 sb.append(":L").append(System.identityHashCode(offset));
  /external/annotation-tools/scene-lib/src/annotations/io/classfile/
MethodCodeOffsetAdapter.java 13 private int offset = 0; field in class:MethodCodeOffsetAdapter
43 public int getMethodCodeOffset() { return offset; }
45 public int getClassCodeOffset() { return codeStart + offset; }
51 offset += 3;
57 offset += 3;
63 ++offset;
69 offset += opcode == Opcodes.SIPUSH ? 3 : 2;
76 offset += 5;
82 offset += 3;
88 offset += 2
    [all...]
  /external/dtc/libfdt/
libfdt_internal.h 65 int _fdt_check_node_offset(const void *fdt, int offset);
66 int _fdt_check_prop_offset(const void *fdt, int offset);
70 static inline const void *_fdt_offset_ptr(const void *fdt, int offset)
72 return (const char *)fdt + fdt_off_dt_struct(fdt) + offset;
75 static inline void *_fdt_offset_ptr_w(void *fdt, int offset)
77 return (void *)(uintptr_t)_fdt_offset_ptr(fdt, offset);
  /external/elfutils/tests/
dwfl-bug-getmodules.c 55 ptrdiff_t offset = dwfl_getmodules (dwfl, &iterate, dwfl, 0); local
56 if (offset <= 0)
59 offset = dwfl_getmodules (dwfl, &iterate, NULL, offset);
60 if (offset != 0)
61 error (1, 0, "dwfl_getmodules (%d): %s", (int) offset, dwfl_errmsg (-1));
  /external/llvm/test/MC/Mips/eva/
invalid-noeva-wrong-error.s 22 cachee 31, 255($7) # CHECK: :[[@LINE]]:23: error: expected memory with 9-bit signed offset
23 cachee 0, -256($4) # CHECK: :[[@LINE]]:22: error: expected memory with 9-bit signed offset
24 cachee 5, -140($4) # CHECK: :[[@LINE]]:22: error: expected memory with 9-bit signed offset
25 lbe $10,-256($25) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
26 lbe $13,255($15) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
27 lbe $11,146($14) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
28 lbue $13,-256($v1) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
29 lbue $13,255($v0) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
30 lbue $13,-190($v1) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
31 lhe $13,-256($s5) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
    [all...]
  /external/pdfium/core/fpdfapi/parser/
cpdf_read_validator.cpp 16 FX_FILESIZE AlignDown(FX_FILESIZE offset) {
17 return offset > 0 ? (offset - offset % kAlignBlockValue) : 0;
20 FX_FILESIZE AlignUp(FX_FILESIZE offset) {
21 FX_SAFE_FILESIZE safe_result = AlignDown(offset);
25 return offset;
61 FX_FILESIZE offset,
63 FX_SAFE_FILESIZE end_offset = offset;
68 if (!IsDataRangeAvailable(offset, size))
    [all...]
  /external/proguard/src/proguard/classfile/instruction/visitor/
InstructionVisitor.java 36 public void visitSimpleInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction);
37 public void visitVariableInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction);
38 public void visitConstantInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction);
39 public void visitBranchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction);
40 public void visitTableSwitchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction);
41 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction);
  /external/skia/src/sksl/
SkSLLayoutLexer.cpp 532 int offset = startOffset; local
    [all...]
SkSLLexer.cpp 947 int offset = startOffset; local
    [all...]
  /external/skqp/src/sksl/
SkSLLayoutLexer.cpp 532 int offset = startOffset; local
    [all...]
SkSLLexer.cpp 947 int offset = startOffset; local
    [all...]
  /external/syslinux/core/fs/xfs/
xfs_dinode.c 34 uint64_t offset; local
39 offset = XFS_INO_TO_OFFSET(XFS_INFO(fs), ino) << XFS_INFO(fs)->inode_shift;
40 if (offset > BLOCK_SIZE(fs)) {
41 xfs_error("Invalid inode offset in block!");
42 xfs_debug("offset: 0x%llx", offset);
46 xfs_debug("blk %llu block offset 0x%llx", blk, blk << BLOCK_SHIFT(fs));
47 xfs_debug("inode offset in block (in bytes) is 0x%llx", offset);
49 core = (xfs_dinode_t *)((uint8_t *)get_cache(fs->fs_dev, blk) + offset);
    [all...]
  /frameworks/base/media/java/android/media/midi/
MidiReceiver.java 56 * @param offset the offset of the first byte of the data in the array to be processed
61 abstract public void onSend(byte[] msg, int offset, int count, long timestamp)
99 * @param offset the offset of the first byte of the data in the array to be sent
103 public void send(byte[] msg, int offset, int count) throws IOException {
105 send(msg, offset, count, 0L);
118 * @param offset the offset of the first byte of the data in the array to be sent
123 public void send(byte[] msg, int offset, int count, long timestamp
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/spec/
GCMParameterSpec.java 99 * @param offset the offset in {@code src} where the IV starts
103 * {@code src} is null, {@code len} or {@code offset} is negative,
104 * or the sum of {@code offset} and {@code len} is greater than the
107 public GCMParameterSpec(int tLen, byte[] src, int offset, int len) {
108 init(tLen, src, offset, len);
114 private void init(int tLen, byte[] src, int offset, int len) {
122 if ((src == null) ||(len < 0) || (offset < 0)
123 || ((len + offset) > src.length)) {
128 System.arraycopy(src, offset, iv, 0, len)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
InterruptableOutputStream.java 43 public void write(byte[] buffer, int offset, int count) throws IOException {
44 int end = offset + count;
45 while (offset < end) {
47 int bytesCount = Math.min(MAX_WRITE_BYTES, end - offset);
48 mOutputStream.write(buffer, offset, bytesCount);
49 offset += bytesCount;
  /system/core/libutils/include/utils/
Compat.h 28 static inline off64_t lseek64(int fd, off64_t offset, int whence) {
29 return lseek(fd, offset, whence);
32 static inline ssize_t pread64(int fd, void* buf, size_t nbytes, off64_t offset) {
33 return pread(fd, buf, nbytes, offset);
36 static inline ssize_t pwrite64(int fd, const void* buf, size_t nbytes, off64_t offset) {
37 return pwrite(fd, buf, nbytes, offset);
  /toolchain/binutils/binutils-2.27/gas/
literal.c 50 valueT offset; local
56 offset = 0;
63 fixp = fixp->fx_next, offset += size)
66 return offset;
88 offset = seginfo->literal_pool_size;
90 return offset;
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
RandomAccessFileDataSource.java 54 * @throws IndexOutOfBoundsException if {@code offset} or {@code size} is negative.
56 public RandomAccessFileDataSource(RandomAccessFile file, long offset, long size) {
57 if (offset < 0) {
58 throw new IndexOutOfBoundsException("offset: " + size);
64 mOffset = offset;
82 public RandomAccessFileDataSource slice(long offset, long size) {
84 checkChunkValid(offset, size, sourceSize);
85 if ((offset == 0) && (size == sourceSize)) {
89 return new RandomAccessFileDataSource(mFile, mOffset + offset, size);
93 public void feed(long offset, long size, DataSink sink) throws IOException
    [all...]
  /external/google-breakpad/src/common/mac/
macho_walker.cc 92 off_t offset; local
93 if (FindHeader(valid_cpu_type, valid_cpu_subtype, offset)) {
95 return WalkHeader64AtOffset(offset);
97 return WalkHeaderAtOffset(offset);
103 bool MachoWalker::ReadBytes(void *buffer, size_t size, off_t offset) {
105 if (offset < 0)
108 if (offset + size > memory_size_) {
109 if (static_cast<size_t>(offset) >= memory_size_)
111 size = memory_size_ - static_cast<size_t>(offset);
114 memcpy(buffer, static_cast<char *>(memory_) + offset, size)
    [all...]
  /external/icu/icu4c/source/i18n/
number_affixutils.cpp 17 int32_t offset = 0; local
19 for (; offset < patternString.length();) {
20 UChar32 cp = patternString.codePointAt(offset);
66 offset += U16_LENGTH(cp);
82 int32_t offset = 0; local
84 for (; offset < input.length();) {
85 UChar32 cp = input.codePointAt(offset);
116 offset += U16_LENGTH(cp);
235 output.replace(tag.offset - 1, 1, replacementChar);
242 int32_t offset = tag.offset local
    [all...]
  /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...]

Completed in 3901 milliseconds

<<11121314151617181920>>