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

1 23 4 5 6 7 8 91011>>

  /external/v8/src/compiler/
bytecode-liveness-map.cc 20 uint32_t OffsetHash(int offset) { return offset; }
22 BytecodeLiveness& BytecodeLivenessMap::InitializeLiveness(int offset,
26 .LookupOrInsert(offset, OffsetHash(offset),
32 BytecodeLiveness& BytecodeLivenessMap::GetLiveness(int offset) {
33 return liveness_map_.Lookup(offset, OffsetHash(offset))->value;
36 const BytecodeLiveness& BytecodeLivenessMap::GetLiveness(int offset) const {
37 return liveness_map_.Lookup(offset, OffsetHash(offset))->value
    [all...]
  /system/chre/util/nanoapp/
debug.cc 34 size_t offset = 0; local
48 offset += static_cast<size_t>(
49 snprintf(&line[offset], sizeof(line) - offset, "%02x ", buffer[i - 1]));
55 offset = 0;
58 offset += static_cast<size_t>(
59 snprintf(&line[offset], sizeof(line) - offset, " "));
63 if (offset > 0) {
66 while (offset < 28)
    [all...]
  /external/elfutils/libelf/
gelf_getnote.c 1 /* Get note information at the supplied offset.
40 gelf_getnote (Elf_Data *data, size_t offset, GElf_Nhdr *result,
60 offset is OK. */
61 if (unlikely (offset > data->d_size
62 || data->d_size - offset < sizeof (GElf_Nhdr)))
65 offset = 0;
69 const GElf_Nhdr *n = data->d_buf + offset;
70 offset += sizeof *n;
76 if (unlikely (offset > data->d_size
77 || data->d_size - offset < names
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/
LocaleIDs.java 56 int offset = findIndex(_countries, country); local
57 if(offset>=0){
58 return _countries3[offset];
60 offset = findIndex(_obsoleteCountries, country);
61 if(offset>=0){
62 return _obsoleteCountries3[offset];
80 int offset = findIndex(_languages, language); local
81 if(offset>=0){
82 return _languages3[offset];
84 offset = findIndex(_obsoleteLanguages, language)
96 int offset = findIndex(_languages3, lang); local
113 int offset = findIndex(_countries3, region); local
521 int offset = findIndex(_deprecatedCountries, oldID); local
530 int offset = findIndex(_obsoleteLanguages, oldID); local
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
Exif.java 29 int offset = 0; local
33 while (offset + 3 < jpeg.length && (jpeg[offset++] & 0xFF) == 0xFF) {
34 int marker = jpeg[offset] & 0xFF;
40 offset++;
52 length = pack(jpeg, offset, 2, false);
53 if (length < 2 || offset + length > jpeg.length) {
60 pack(jpeg, offset + 2, 4, false) == 0x45786966 &&
61 pack(jpeg, offset + 6, 2, false) == 0) {
62 offset += 8
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
reloc-bad-6.l 2 [^:]*:19: Error: PC-relative offset out of range
3 [^:]*:21: Error: PC-relative offset out of range
4 [^:]*:22: Error: PC-relative offset out of range
5 [^:]*:24: Error: PC-relative offset not 4-byte-aligned
6 [^:]*:53: Error: PC-relative offset out of range
7 [^:]*:55: Error: PC-relative offset out of range
8 [^:]*:56: Error: PC-relative offset out of range
9 [^:]*:58: Error: PC-relative offset not 4-byte-aligned
10 [^:]*:87: Error: PC-relative offset out of range
11 [^:]*:89: Error: PC-relative offset out of rang
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/lib/libfdt/
fdt.c 77 const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int len)
79 unsigned absoffset = offset + fdt_off_dt_struct(fdt);
81 if ((absoffset < offset)
87 if (((offset + len) < offset)
88 || ((offset + len) > fdt_size_dt_struct(fdt)))
91 return _fdt_offset_ptr(fdt, offset);
98 int offset = startoffset; local
102 tagp = fdt_offset_ptr(fdt, offset, FDT_TAGSIZE);
106 offset += FDT_TAGSIZE
    [all...]
  /external/dtc/libfdt/
fdt.c 77 const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int len)
79 unsigned absoffset = offset + fdt_off_dt_struct(fdt);
81 if ((absoffset < offset)
87 if (((offset + len) < offset)
88 || ((offset + len) > fdt_size_dt_struct(fdt)))
91 return _fdt_offset_ptr(fdt, offset);
98 int offset = startoffset; local
102 tagp = fdt_offset_ptr(fdt, offset, FDT_TAGSIZE);
106 offset += FDT_TAGSIZE
    [all...]
  /external/flatbuffers/php/
Table.php 46 * returns actual vtable offset
49 * @return int offset > 0 means exist value. 0 means not exist
58 * @param $offset
61 protected function __indirect($offset)
63 return $offset + $this->bb->getInt($offset);
69 * @param $offset
72 protected function __string($offset)
74 $offset += $this->bb->getInt($offset);
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/
fdt.c 77 const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int len)
82 if (((offset + len) < offset)
83 || ((offset + len) > fdt_size_dt_struct(fdt)))
86 p = _fdt_offset_ptr(fdt, offset);
97 int offset = startoffset; local
101 tagp = fdt_offset_ptr(fdt, offset, FDT_TAGSIZE);
105 offset += FDT_TAGSIZE;
112 p = fdt_offset_ptr(fdt, offset++, 1);
119 lenp = fdt_offset_ptr(fdt, offset, sizeof(*lenp));
    [all...]
  /art/libartbase/base/unix_file/
random_access_file_utils.cc 29 int64_t offset = 0; local
31 while ((n = src.Read(&buf[0], buf.size(), offset)) > 0) {
32 if (dst->Write(&buf[0], n, offset) != n) {
35 offset += n;
  /bionic/libc/bionic/
posix_fallocate.cpp 33 int posix_fallocate(int fd, off_t offset, off_t length) {
35 return (fallocate(fd, 0, offset, length) == 0) ? 0 : errno;
38 int posix_fallocate64(int fd, off64_t offset, off64_t length) {
40 return (fallocate64(fd, 0, offset, length) == 0) ? 0 : errno;
  /external/autotest/client/site_tests/security_SMMLocked/src/
smm.c 23 int check_smram(struct pci_dev *northbridge, int offset)
28 smram_value = pci_read_byte(northbridge, offset);
50 int offset = 0; local
56 offset = 0x9d;
60 offset = 0x88;
64 offset = 0x88;
68 offset = 0x88;
72 offset = 0x88;
76 offset = 0x88;
83 offset = 0x88
95 int offset; local
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
WriteListener.java 4 * The <class>WriteListener</class> is used to get the offset of
6 * later needs an offset.
9 public void beforeWrite(long offset);
  /external/parameter-framework/upstream/parameter/
ParameterBlackboard.h 46 void writeInteger(const void *pvSrcData, size_t size, size_t offset);
47 void readInteger(void *pvDstData, size_t size, size_t offset) const;
49 void writeString(const std::string &input, size_t offset);
50 void readString(std::string &output, size_t offset) const;
52 void writeBuffer(const void *pvSrcData, size_t size, size_t offset);
53 void readBuffer(void *pvDstData, size_t size, size_t offset) const;
61 * @param[in] offset the destination offset in the blackboard.
64 * - This function asserts that the input vector's size + the offset
67 void writeBytes(const std::vector<uint8_t> &bytes, size_t offset);
    [all...]
  /external/syslinux/gpxe/src/arch/i386/include/
bootsector.h 11 extern int call_bootsector ( unsigned int segment, unsigned int offset,
  /frameworks/base/drm/java/android/drm/
DrmConvertedStatus.java 21 * offset for appending the header and body signature to the converted data.
25 * An valid offset value is provided only from a success call to
56 * Offset value for the body and header signature.
58 public final int offset; field in class:DrmConvertedStatus
66 * @param offset Offset value for appending the header and body signature.
68 public DrmConvertedStatus(int statusCode, byte[] convertedData, int offset) {
75 this.offset = offset;
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glBindVertexBuffer.cpp 1 /* void glBindVertexBuffer ( GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride ) */
4 (JNIEnv *_env, jobject _this, jint bindingindex, jint buffer, jlong offset, jint stride) {
5 if (sizeof(GLintptr) != sizeof(jlong) && (offset < LONG_MIN || offset > LONG_MAX)) {
6 jniThrowException(_env, "java/lang/IllegalArgumentException", "offset too large");
12 (GLintptr)offset,
glMapBufferRange.java 1 // C function GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access )
9 int offset,
  /system/chre/platform/slpi/include/chre/platform/slpi/
system_time.h 25 * Sets the estimated offset between the host and SLPI clock.
27 * @param offset The current estimated offset in nanoseconds.
29 void setEstimatedHostTimeOffset(int64_t offset);
  /external/skia/tests/
SkBase64Test.cpp 18 for (int offset = 0; offset < 6; ++offset) {
19 size_t length = 256 - offset;
20 size_t encodeLength = SkBase64::Encode(all + offset, length, nullptr);
22 SkBase64::Encode(all + offset, length, src.get());
26 REPORTER_ASSERT(reporter, (strcmp((const char*) (all + offset), tryMe.getData()) == 0));
  /external/skqp/tests/
SkBase64Test.cpp 18 for (int offset = 0; offset < 6; ++offset) {
19 size_t length = 256 - offset;
20 size_t encodeLength = SkBase64::Encode(all + offset, length, nullptr);
22 SkBase64::Encode(all + offset, length, src.get());
26 REPORTER_ASSERT(reporter, (strcmp((const char*) (all + offset), tryMe.getData()) == 0));
  /dalvik/dx/src/com/android/dex/
CallSiteId.java 28 private final int offset; field in class:CallSiteId
30 public CallSiteId(Dex dex, int offset) {
32 this.offset = offset;
37 return Unsigned.compare(offset, o.offset);
41 return offset;
45 out.writeInt(offset);
51 return String.valueOf(offset);
53 return dex.protoIds().get(offset).toString()
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
group-reloc-alu-encoding-bad.l 2 [^:]*:23: Error: the offset 0x00011001 is not representable
3 [^:]*:23: Error: the offset 0x00011001 is not representable
4 [^:]*:23: Error: the offset 0x00011001 is not representable
5 [^:]*:23: Error: the offset 0x00011001 is not representable
6 [^:]*:23: Error: the offset 0x00011001 is not representable
7 [^:]*:23: Error: the offset 0x00011001 is not representable
8 [^:]*:23: Error: the offset 0x00011001 is not representable
9 [^:]*:23: Error: the offset 0x00011001 is not representable
10 [^:]*:23: Error: the offset 0x00011001 is not representable
11 [^:]*:23: Error: the offset 0x00011001 is not representabl
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
pcrel-reloc-6.s 9 b (. + 4) - (0x20000 + offset)
10 b (. + 4) + (0x1fffc + offset)
11 bc (. + 4) - (0x8000000 + offset)
12 bc (. + 4) + (0x7fffffc + offset)
13 beqzc $2, (. + 4) - (0x400000 + offset)
14 beqzc $2, (. + 4) + (0x3ffffc + offset)
15 lwpc $2, . - (0x100000 + offset)
16 lwpc $2, . + (0xffffc + offset)
17 ldpc $2, . - (0x100000 + (offset << 1))
18 ldpc $2, (. - 4) + (0xffff8 + (offset << 1)
    [all...]

Completed in 1940 milliseconds

1 23 4 5 6 7 8 91011>>