HomeSort by relevance Sort by last modified time
    Searched defs:offset (Results 151 - 175 of 7301) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/syslinux/libfat/
libfat.h 34 int offset; member in struct:libfat_direntry
  /external/tensorflow/tensorflow/contrib/lite/
nnapi_delegate.h 33 size_t offset(const void* ptr) const { function in class:tflite::NNAPIAllocation
  /external/tensorflow/tensorflow/core/lib/io/
record_reader_writer_test.cc 60 uint64 offset = 0; local
62 TF_CHECK_OK(reader.ReadRecord(&offset, &record));
64 TF_CHECK_OK(reader.ReadRecord(&offset, &record));
98 uint64 offset = 0; local
100 TF_CHECK_OK(reader.ReadRecord(&offset, &record));
102 TF_CHECK_OK(reader.ReadRecord(&offset, &record));
  /external/tensorflow/tensorflow/python/lib/io/
py_record_reader.h 54 // Return the current offset in the file.
55 uint64 offset() const { return offset_; } function in class:tensorflow::io::PyRecordReader
  /external/toybox/toys/posix/
strings.c 27 -o Show offset (ala -t d)
28 -t Show offset type (o=octal, d=decimal, x=hexadecimal)
42 off_t offset = 0; local
63 offset++;
71 printf(pattern, (long long)(offset - wlen));
  /external/tpm2/
NV_Read_fp.h 16 UINT16 offset; member in struct:__anon40431
PolicyNV_fp.h 17 UINT16 offset; member in struct:__anon40461
  /external/valgrind/coregrind/m_dispatch/
dispatch-s390x-linux.S 210 Compute offset (not index) into VT_(tt_fast):
212 offset = VG_TT_FAST_HASH(addr) * sizeof(FastCacheEntry) define
217 offset = ((addr >> 1) & VG_TT_FAST_MASK) << 4 define
219 offset = ((addr & (VG_TT_FAST_MASK << 1) ) << 3 define
  /external/valgrind/memcheck/tests/ppc32/
power_ISA2_07.c 16 unsigned offset; local
25 offset = ((unsigned ) &arrB[1]) - base;
27 __asm__ volatile ("ori 21, %0, 0"::"r" (offset));
32 offset = ((unsigned) &arrH[1]) - base;
34 __asm__ volatile ("ori 21, %0, 0"::"r" (offset));
  /external/valgrind/memcheck/tests/ppc64/
power_ISA2_07.c 16 unsigned long offset; local
25 offset = ((unsigned long) &arrB[1]) - base;
27 __asm__ volatile ("ori 21, %0, 0"::"r" (offset));
32 offset = ((unsigned long) &arrH[1]) - base;
34 __asm__ volatile ("ori 21, %0, 0"::"r" (offset));
  /external/vboot_reference/host/lib/
fmap.c 30 ssize_t offset, align; local
39 for (offset = align; offset <= lim; offset += align * 2)
40 if (is_fmap(ptr + offset))
41 return (FmapHeader *)(ptr + offset);
  /external/wayland/cursor/
cursor-data.h 539 size_t offset; member in struct:cursor_metadata
    [all...]
  /frameworks/av/drm/mediadrm/plugins/clearkey/default/
AesCtrDecryptor.cpp 44 size_t offset = 0; local
54 memcpy(destination + offset, source + offset,
56 offset += subSample.mNumBytesOfClearData;
60 AES_ctr128_encrypt(source + offset, destination + offset,
64 offset += subSample.mNumBytesOfEncryptedData;
68 *bytesDecryptedOut = offset;
CryptoPlugin.cpp 46 size_t offset = 0; local
58 memcpy(reinterpret_cast<uint8_t*>(dstPtr) + offset,
59 reinterpret_cast<const uint8_t*>(srcPtr) + offset,
61 offset += subSample.mNumBytesOfClearData;
64 return static_cast<ssize_t>(offset);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
lsp_lsf.cpp 174 Word16 i, ind, offset;
180 offset = lsf[i] & 0x00ff; // offset = b0-b7 of lsf[i]
182 // lsp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 256
184 L_tmp = L_mult (sub (table[ind + 1], table[ind]), offset);
221 Word16 i, ind, offset; local
227 offset = lsf[i] & 0x00ff; /* offset = b0-b7 of lsf[i] */
229 /* lsp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 256 */
231 L_tmp = ((Word32)(table[ind + 1] - table[ind]) * offset) >> 8
    [all...]
  /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/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/compile/mclinker/lib/LD/
MergedStringTable.cpp 18 // trverse the string table and set the offset
20 size_t offset = 0; local
22 it->setValue(offset);
23 offset += it->getKey().size() + 1;
25 return offset;
  /frameworks/compile/mclinker/lib/Target/
GOT.cpp 32 uint32_t offset = 0; local
35 frag->setOffset(offset);
36 offset += frag->size();
39 m_Section.setSize(offset);
  /frameworks/minikin/tests/unittest/
MeasurementTests.cpp 28 size_t offset; local
30 ParseUnicode(buf, BUF_SIZE, src, &size, &offset);
31 return getRunAdvance(advances, buf, 0, size, offset);
  /frameworks/native/libs/gui/tests/
SurfaceTextureFBO.h 64 off_t offset = (y * stride + x) * PIXEL_SIZE; local
65 buf[offset + 0] = r;
66 buf[offset + 1] = g;
67 buf[offset + 2] = b;
68 buf[offset + 3] = a;
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
HidItem.h 30 ssize_t offset; member in struct:HidUtil::HidItem
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
Chunk.java 25 * The "offset" and "length" fields are present so handlers can over-allocate
35 public int offset, length; // position within "data" field in class:Chunk
45 public Chunk(int type, byte[] data, int offset, int length) {
48 this.offset = offset;
54 * offset 0 and continue to the current position.
60 this.offset = buf.arrayOffset();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
stride.h 14 cloog_int_t offset; /**< Offset of strided loop. */ member in struct:cloogstride
20 CloogStride *cloog_stride_alloc(cloog_int_t stride, cloog_int_t offset);
  /prebuilts/go/darwin-x86/src/debug/dwarf/
typeunit.go 20 toff Offset // Offset to signature type within data.
31 if n != Offset(uint32(n)) {
60 b.error("type unit type offset overflow")
77 toff: Offset(toff),
99 t, err := d.readType(tu.name, r, tu.toff, make(map[Offset]Type), nil)
117 func (tur *typeUnitReader) Seek(off Offset) {
120 if doff < 0 || doff >= Offset(len(tur.tu.data)) {
121 tur.err = fmt.Errorf("%s: offset %d out of range; max %d", tur.tu.name, doff, len(tur.tu.data))
157 // offset returns the current offset
158 func (tur *typeUnitReader) offset() Offset { func
    [all...]

Completed in 456 milliseconds

1 2 3 4 5 67 8 91011>>