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

1 2 34 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
reloc-bad-3.l 2 [^:]*:21: Error: immediate offset out of range
3 [^:]*:22: Error: immediate offset out of range
4 [^:]*:24: Error: immediate offset out of range
5 [^:]*:25: Error: immediate offset out of range
6 [^:]*:27: Error: immediate offset out of range
7 [^:]*:28: Error: immediate offset out of range
8 [^:]*:31: Error: immediate offset out of range
9 [^:]*:32: Error: immediate offset out of range
10 [^:]*:35: Error: immediate offset out of range
11 [^:]*:36: Error: immediate offset out of rang
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
FixedPointPreCompInfo.java 8 protected ECPoint offset = null; field in class:FixedPointPreCompInfo
25 return offset;
28 public void setOffset(ECPoint offset)
30 this.offset = offset;
  /external/python/cpython3/Modules/_sha3/kcp/
KeccakP-1600-SnP-opt32.h 28 void KeccakP1600_AddByte(void *state, unsigned char data, unsigned int offset);
29 void KeccakP1600_AddBytes(void *state, const unsigned char *data, unsigned int offset, unsigned int length);
30 void KeccakP1600_OverwriteBytes(void *state, const unsigned char *data, unsigned int offset, unsigned int length);
34 void KeccakP1600_ExtractBytes(const void *state, unsigned char *data, unsigned int offset, unsigned int length);
35 void KeccakP1600_ExtractAndAddBytes(const void *state, const unsigned char *input, unsigned char *output, unsigned int offset, unsigned int length);
  /frameworks/native/libs/binder/
MemoryBase.cpp 29 ssize_t offset, size_t size)
30 : mSize(size), mOffset(offset), mHeap(heap)
34 sp<IMemoryHeap> MemoryBase::getMemory(ssize_t* offset, size_t* size) const
36 if (offset) *offset = mOffset;
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
Exif.java 51 int tag = pack(jpeg, offset, 4, false);
52 count = pack(jpeg, offset - 2, 2, littleEndian);
62 has(jpeg, byteSize, offset + length - 1)
73 int offset = 0; local
86 while (has(jpeg, byteSize, offset + 3) && (jpeg.get(offset++) & 0xFF) == 0xFF) {
87 final int marker = jpeg.get(offset) & 0xFF;
93 offset++;
102 jpeg.advanceTo(offset - readBackwards);
107 length = pack(jpeg, offset, 2, false)
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Exif.java 46 int tag = pack(jpeg, offset, 4, false);
47 count = pack(jpeg, offset - 2, 2, littleEndian);
57 has(jpeg, byteSize, offset + length - 1)
68 int offset = 0; local
81 while (has(jpeg, byteSize, offset + 3) && (jpeg.get(offset++) & 0xFF) == 0xFF) {
82 final int marker = jpeg.get(offset) & 0xFF;
88 offset++;
97 jpeg.advanceTo(offset - readBackwards);
102 length = pack(jpeg, offset, 2, false)
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ScanHandler.java 29 public void adup(char[] buff, int offset, int length) throws SAXException;
35 public void aname(char[] buff, int offset, int length) throws SAXException;
41 public void aval(char[] buff, int offset, int length) throws SAXException;
46 public void cdsect(char[] buff, int offset, int length) throws SAXException;
52 public void decl(char[] buff, int offset, int length) throws SAXException;
58 public void entity(char[] buff, int offset, int length) throws SAXException;
64 public void eof(char[] buff, int offset, int length) throws SAXException;
70 public void etag(char[] buff, int offset, int length) throws SAXException;
76 public void gi(char[] buff, int offset, int length) throws SAXException;
82 public void pcdata(char[] buff, int offset, int length) throws SAXException
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeObject.java 64 * whose base is at the additional offset.
66 NativeObject(long address, long offset) {
68 this.address = address + offset;
99 * Creates a new native object starting at the given offset from the base
102 * @param offset
103 * The offset from the base of this native object that is to be
108 NativeObject subObject(int offset) {
109 return new NativeObject(offset + address);
113 * Reads an address from this native object at the given offset and
116 * @param offset
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
BranchTargetFinder.java 93 * Returns whether there is an instruction at the given offset in the
96 public boolean isInstruction(int offset)
98 return (instructionMarks[offset] & INSTRUCTION) != 0;
103 * Returns whether the instruction at the given offset is the target of
106 public boolean isTarget(int offset)
108 return offset == 0 ||
109 (instructionMarks[offset] & (BRANCH_TARGET |
117 * Returns whether the instruction at the given offset is the origin of a
120 public boolean isBranchOrigin(int offset)
122 return (instructionMarks[offset] & BRANCH_ORIGIN) != 0
    [all...]
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/sign/
ZFileDataSource.java 39 * Offset (in bytes) relative to the start of file where the region visible in this data source
42 private final long offset; field in class:ZFileDataSource
57 offset = 0;
66 public ZFileDataSource(@Nonnull ZFile file, long offset, long size) {
67 Preconditions.checkArgument(offset >= 0, "offset < 0");
70 this.offset = offset;
90 public DataSource slice(long offset, long size) {
92 checkChunkValid(offset, size, sourceSize)
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
ByteBufferDataSource.java 55 public ByteBuffer getByteBuffer(long offset, int size) {
56 checkChunkValid(offset, size);
58 // checkChunkValid ensures that it's OK to cast offset to int.
59 int chunkPosition = (int) offset;
78 public void copyTo(long offset, int size, ByteBuffer dest) {
79 dest.put(getByteBuffer(offset, size));
83 public void feed(long offset, long size, DataSink sink) throws IOException {
87 sink.consume(getByteBuffer(offset, (int) size));
91 public ByteBufferDataSource slice(long offset, long size) {
92 if ((offset == 0) && (size == mSize))
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state_dump.c 73 batch_out(struct brw_context *brw, const char *name, uint32_t offset,
77 batch_out(struct brw_context *brw, const char *name, uint32_t offset,
80 uint32_t *data = brw->batch.bo->virtual + offset;
84 offset + index * 4, data[index], name);
91 batch_out64(struct brw_context *brw, const char *name, uint32_t offset,
94 uint32_t *tmp = brw->batch.bo->virtual + offset;
103 offset + index * 4, data, name);
123 static void dump_vs_state(struct brw_context *brw, uint32_t offset)
126 struct brw_vs_unit_state *vs = brw->batch.bo->virtual + offset;
128 batch_out(brw, name, offset, 0, "thread0\n")
726 uint32_t offset = brw->state_batch_list[i].offset; local
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatUtils.java 34 * Gets the offset (in bytes) of the fat with the given index
46 long offset = resSects * sectSize; local
49 offset += fatNr * fatSize;
51 return offset;
55 * Gets the offset (in bytes) of the root directory with the given index
66 long offset = getFatOffset(bs, 0); local
68 offset += fats * sectsPerFat * sectSize;
70 return offset;
74 * Gets the offset of the data (file) area
81 long offset = getRootDirOffset(bs) local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DESedeParameters.java 26 * @param offset offset into the byte array the key starts at
31 int offset,
34 for (int i = offset; i < length; i += DES_KEY_LENGTH)
49 * @param offset offset into the byte array the key starts at
53 int offset)
55 return isWeakKey(key, offset, key.length - offset);
62 * @param offset offset into the byte array the key starts a
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/lib/libfdt/
fdt_ro.c 58 static int _fdt_nodename_eq(const void *fdt, int offset,
61 const char *p = fdt_offset_ptr(fdt, offset + FDT_TAGSIZE, len+1);
94 int offset; local
96 for (offset = fdt_next_node(fdt, -1, NULL);;
97 offset = fdt_next_node(fdt, offset, NULL)) {
100 if (offset == -FDT_ERR_NOTFOUND)
103 if (offset < 0)
106 phandle = fdt_get_phandle(fdt, offset);
134 static int _nextprop(const void *fdt, int offset)
187 int offset = 0; local
255 int offset; local
392 int offset, depth, namelen; local
444 int offset, depth; local
502 int offset; local
527 int offset; local
683 int offset, err; local
    [all...]
  /external/dtc/libfdt/
fdt_ro.c 58 static int _fdt_nodename_eq(const void *fdt, int offset,
61 const char *p = fdt_offset_ptr(fdt, offset + FDT_TAGSIZE, len+1);
94 int offset; local
96 for (offset = fdt_next_node(fdt, -1, NULL);;
97 offset = fdt_next_node(fdt, offset, NULL)) {
100 if (offset == -FDT_ERR_NOTFOUND)
103 if (offset < 0)
106 phandle = fdt_get_phandle(fdt, offset);
134 static int _nextprop(const void *fdt, int offset)
187 int offset = 0; local
255 int offset; local
392 int offset, depth, namelen; local
444 int offset, depth; local
502 int offset; local
527 int offset; local
683 int offset, err; local
    [all...]
  /bionic/libc/bionic/
posix_fadvise.cpp 37 int posix_fadvise(int fd, off_t offset, off_t length, int advice) {
38 return posix_fadvise64(fd, offset, length, advice);
42 int posix_fadvise64(int fd, off64_t offset, off64_t length, int advice) {
44 return (__arm_fadvise64_64(fd, advice, offset, length) == 0) ? 0 : errno;
47 int posix_fadvise64(int fd, off64_t offset, off64_t length, int advice) {
49 return (__fadvise64(fd, offset, length, advice) == 0) ? 0 : errno;
  /dalvik/libdex/
DexDataMap.h 44 * Add a new element to the map. The offset must be greater than the
47 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type);
50 * Get the type associated with the given offset. This returns -1 if
51 * there is no entry for the given offset.
53 int dexDataMapGet(DexDataMap* map, u4 offset);
56 * Verify that there is an entry in the map, mapping the given offset to
60 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type);
63 * Like dexDataMapVerify(), but also accept a 0 offset as valid.
65 DEX_INLINE bool dexDataMapVerify0Ok(DexDataMap* map, u4 offset, u2 type) {
66 if (offset == 0)
    [all...]
  /external/parameter-framework/upstream/parameter/
ParameterBlackboard.cpp 47 void CParameterBlackboard::writeInteger(const void *pvSrcData, size_t size, size_t offset)
49 assertValidAccess(offset, size);
53 auto dest_first = atOffset(offset);
58 void CParameterBlackboard::readInteger(void *pvDstData, size_t size, size_t offset) const
60 assertValidAccess(offset, size);
62 auto first = atOffset(offset);
69 void CParameterBlackboard::writeString(const std::string &input, size_t offset)
71 assertValidAccess(offset, input.size() + 1);
73 auto dest_last = std::copy(begin(input), end(input), atOffset(offset));
77 void CParameterBlackboard::readString(std::string &output, size_t offset) cons
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_cl_dump.c 33 dump_float(void *cl, uint32_t offset, uint32_t hw_offset)
35 void *f = cl + offset;
38 offset, hw_offset, uif(*(uint32_t *)f), *(uint32_t *)f);
42 dump_VC4_PACKET_BRANCH_TO_SUB_LIST(void *cl, uint32_t offset, uint32_t hw_offset)
44 uint32_t *addr = cl + offset;
47 offset, hw_offset, *addr);
51 dump_loadstore_full(void *cl, uint32_t offset, uint32_t hw_offset)
53 uint32_t bits = *(uint32_t *)(cl + offset);
56 offset, hw_offset,
65 dump_VC4_PACKET_LOAD_FULL_RES_TILE_BUFFER(void *cl, uint32_t offset, uint32_t hw_offset
432 uint32_t offset = 0, hw_offset = 0; local
    [all...]
  /frameworks/av/media/libmediaextractor/
DataSourceBase.cpp 26 bool DataSourceBase::getUInt16(off64_t offset, uint16_t *x) {
30 if (readAt(offset, byte, 2) != 2) {
39 bool DataSourceBase::getUInt24(off64_t offset, uint32_t *x) {
43 if (readAt(offset, byte, 3) != 3) {
52 bool DataSourceBase::getUInt32(off64_t offset, uint32_t *x) {
56 if (readAt(offset, &tmp, 4) != 4) {
65 bool DataSourceBase::getUInt64(off64_t offset, uint64_t *x) {
69 if (readAt(offset, &tmp, 8) != 8) {
78 bool DataSourceBase::getUInt16Var(off64_t offset, uint16_t *x, size_t size) {
80 return getUInt16(offset, x)
    [all...]
  /system/core/property_service/libpropertyinfoserializer/
trie_node_arena.h 29 ArenaObjectPointer(std::string& arena_data, uint32_t offset)
30 : arena_data_(arena_data), offset_(offset) {}
45 // data_ + offset.
48 uint32_t offset; local
49 AllocateData(sizeof(T), &offset); local
50 if (return_offset) *return_offset = offset;
51 return ArenaObjectPointer<T>(data_, offset);
55 uint32_t offset; local
56 AllocateData(sizeof(uint32_t) * length, &offset);
57 return offset;
65 uint32_t offset; local
    [all...]
  /external/annotation-tools/scene-lib/src/annotations/io/classfile/
CodeOffsetAdapter.java 21 int offset; field in class:CodeOffsetAdapter
73 offset = codeStart + cr.readInt(codeStart - 4);
76 debug.debug("attribute %s%n", cr.readUTF8(offset, buf));
77 offset += 6 + cr.readInt(offset + 2);
79 methodEnd = offset;
86 offset = 0;
97 debug.debug("%d visitFieldInsn(%d, %s, %s, %s)%n", offset,
99 offset += 3;
105 debug.debug("%d visitIincInsn(%d, %d)%n", offset, var, increment)
147 assert offset > 0 && methodEnd > codeStart + offset; local
158 assert offset > 0 && methodEnd > codeStart + offset; local
186 assert offset > 0 && methodEnd > codeStart + offset; local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
OdexHeaderItem.java 56 * @param offset The offset within the buffer to the beginning of the odex header
59 public static boolean verifyMagic(byte[] buf, int offset) {
60 if (buf.length - offset < 8) {
65 if (buf[offset + i] != MAGIC_VALUE[i]) {
70 if (buf[offset + i] < '0' ||
71 buf[offset + i] > '9') {
75 if (buf[offset + 7] != MAGIC_VALUE[7]) {
86 * @param offset The offset within the buffer to the beginning of the odex heade
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/
fdt_ro.c 58 static int _fdt_nodename_eq(const void *fdt, int offset,
61 const char *p = fdt_offset_ptr(fdt, offset + FDT_TAGSIZE, len+1);
108 static int _nextprop(const void *fdt, int offset)
114 tag = fdt_next_tag(fdt, offset, &nextoffset);
124 return offset;
126 offset = nextoffset;
132 int fdt_subnode_offset_namelen(const void *fdt, int offset,
140 (offset >= 0) && (depth >= 0);
141 offset = fdt_next_node(fdt, offset, &depth))
161 int offset = 0; local
223 int offset; local
361 int offset, depth, namelen; local
413 int offset, depth; local
471 int offset; local
496 int offset; local
554 int offset, err; local
    [all...]

Completed in 967 milliseconds

1 2 34 5 6 7 8 91011>>