HomeSort by relevance Sort by last modified time
    Searched defs:offsets (Results 1 - 25 of 759) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/mapi/glapi/gen/
static_data.py 24 """Table of functions that have ABI-mandated offsets in the dispatch table.
27 offsets = { variable
    [all...]
  /external/pdfium/third_party/libtiff/
tif_flush.c 50 uint64 *offsets=NULL, *sizes=NULL; local
54 if( TIFFGetField( tif, TIFFTAG_TILEOFFSETS, &offsets )
57 tif->tif_dir.td_nstrips, offsets )
68 if( TIFFGetField( tif, TIFFTAG_STRIPOFFSETS, &offsets )
71 tif->tif_dir.td_nstrips, offsets )
  /dalvik/libdex/
DexDataMap.h 29 u4* offsets; /* array of item offsets */ member in struct:DexDataMap
45 * all previously added offsets.
DexDataMap.cpp 53 map->offsets = (u4*) (map + 1);
54 map->types = (u2*) (map->offsets + maxCount);
73 * all previously added offsets.
80 (map->offsets[map->count - 1] >= offset)) {
82 map->offsets[map->count - 1], offset);
86 map->offsets[map->count] = offset;
101 u4* offsets = map->offsets; local
105 u4 guess = offsets[guessIdx];
  /external/skia/experimental/tools/
mskp_parser.py 37 offsets = [] variable
43 offsets.append(offset)
50 if version == 2 or len(offsets) < 2:
57 o.write(src.read(offsets[1] - offsets[0]))
  /external/skqp/experimental/tools/
mskp_parser.py 37 offsets = [] variable
43 offsets.append(offset)
50 if version == 2 or len(offsets) < 2:
57 o.write(src.read(offsets[1] - offsets[0]))
  /external/swiftshader/src/OpenGL/compiler/
localintermediate.h 21 int offsets[4]; member in struct:TVectorFields
  /external/strace/tests/
readahead.c 69 static const off64_t offsets[] = { variable
95 for (j = 0; j < ARRAY_SIZE(offsets); j++)
97 rc = readahead(fds[i], offsets[j], counts[k]);
100 fds[i], (long long) offsets[j],
  /external/strace/tests-m32/
readahead.c 69 static const off64_t offsets[] = { variable
95 for (j = 0; j < ARRAY_SIZE(offsets); j++)
97 rc = readahead(fds[i], offsets[j], counts[k]);
100 fds[i], (long long) offsets[j],
  /external/strace/tests-mx32/
readahead.c 69 static const off64_t offsets[] = { variable
95 for (j = 0; j < ARRAY_SIZE(offsets); j++)
97 rc = readahead(fds[i], offsets[j], counts[k]);
100 fds[i], (long long) offsets[j],
  /art/libdexfile/dex/
compact_offset_table_test.cc 27 std::vector<uint32_t> offsets = { local
34 for (uint32_t& offset : offsets) {
43 CompactOffsetTable::Build(offsets, /*out*/ &data, /*out*/ &min_offset, /*out*/ &table_offset);
47 const size_t before_size = offsets.size() * sizeof(offsets.front());
58 for (size_t i = 0; i < offsets.size(); ++i) {
59 EXPECT_EQ(offsets[i], accessor.GetOffset(i));
64 std::sort(offsets.begin(), offsets.end());
66 CompactOffsetTable::Build(offsets,
    [all...]
  /external/drm_hwcomposer/
drmhwcgralloc.h 60 uint32_t offsets[4]; member in struct:hwc_drm_bo
  /external/google-breakpad/src/processor/
map_serializers-inl.h 81 // Nodes offsets.
82 uint32_t *offsets = reinterpret_cast<uint32_t*>(dest); local
92 offsets[index] = static_cast<uint32_t>(dest - start_address);
149 // Nodes offsets.
150 uint32_t *offsets = reinterpret_cast<uint32_t*>(dest); local
160 offsets[index] = static_cast<uint32_t>(dest - start_address);
229 uint32_t *offsets = reinterpret_cast<uint32_t*>(dest); local
239 offsets[index] = static_cast<uint32_t>(dest - map_address);
  /external/libdrm/tests/kms/
libkms-test-framebuffer.c 44 uint32_t handles[4], pitches[4], offsets[4]; local
86 offsets[0] = 0;
89 pitches, offsets, &fb->id, 0);
  /external/mesa3d/src/gallium/state_trackers/clover/llvm/codegen/
bitcode.cpp 55 std::map<std::string, unsigned> offsets; local
60 offsets[name] = i++;
62 return offsets;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_ir_allocator.h 37 sizes(NULL), offsets(NULL), count(0), total_size(0), capacity(0)
43 free(offsets);
53 offsets = (unsigned *)realloc(offsets, capacity * sizeof(unsigned));
57 offsets[count] = total_size;
71 * Array of offsets from the start of the VGRF space in allocation
74 unsigned *offsets; member in class:brw::simple_allocator
  /external/pdfium/core/fpdfapi/parser/
cpdf_parser_unittest.cpp 61 const FX_FILESIZE offsets[] = {0, 15, 61, 154, 296, 374, 450}; local
63 for (size_t i = 0; i < FX_ArraySize(offsets); ++i)
64 EXPECT_EQ(offsets[i], parser.m_ObjectInfo[i].pos);
96 const FX_FILESIZE offsets[] = {0, 17, 81, 0, 331, 409}; local
104 for (size_t i = 0; i < FX_ArraySize(offsets); ++i) {
105 EXPECT_EQ(offsets[i], parser.m_ObjectInfo[i].pos);
127 const FX_FILESIZE offsets[] = {0, 0, 0, 25325, 0, 0, 0, local
143 for (size_t i = 0; i < FX_ArraySize(offsets); ++i) {
144 EXPECT_EQ(offsets[i], parser.m_ObjectInfo[i].pos);
166 const FX_FILESIZE offsets[] = {0, 0, 0, 25325, 0, 0, 0 local
204 const FX_FILESIZE offsets[] = {0, 23, 0, 0, 0, 45, 179}; local
    [all...]
  /external/skia/src/sfnt/
SkOTTable_loca.h 23 union Offsets {
26 } offsets; member in struct:SkOTTableIndexToLocation
  /external/skqp/src/sfnt/
SkOTTable_loca.h 23 union Offsets {
26 } offsets; member in struct:SkOTTableIndexToLocation
  /external/tensorflow/tensorflow/core/kernels/
eigen_attention_test.cc 39 std::vector<IndexPair<float>> offsets; local
40 offsets.resize(batch);
42 offsets[i].first = (-5 + i) / 10.0f;
43 offsets[i].second = (5 - i) / 10.0f;
47 result = ExtractGlimpses(input, glimpse_rows, glimpse_cols, offsets);
52 c + ((1.0f + offsets[b].second) * cols - glimpse_cols) / 2;
55 r + ((1.0f + offsets[b].first) * rows - glimpse_rows) / 2;
75 std::vector<IndexPair<float>> offsets; local
76 offsets.resize(batch);
78 offsets[i].first = (-5 + i) / 2.0f
    [all...]
  /frameworks/base/libs/androidfw/tests/
TypeWrappers_test.cpp 33 uint32_t offsets[3]; local
34 t.entriesStart = t.header.headerSize + sizeof(offsets);
37 offsets[0] = 0;
48 offsets[1] = ResTable_type::NO_ENTRY;
50 offsets[2] = sizeof(e1) + sizeof(v1);
65 memcpy(p, offsets, sizeof(offsets));
66 p += sizeof(offsets);
  /system/timezone/zone_compactor/main/java/
ZoneCompactor.java 48 // File offsets by zone name.
49 private Map<String,Integer> offsets = new HashMap<String,Integer>(); field in class:ZoneCompactor
94 offsets.put(s, offset);
110 offsets.put(from, offsets.get(to));
128 // Write dummy values for the three offsets, and remember where we need to seek back to later
141 sortedOlsonIds.addAll(offsets.keySet());
157 f.writeInt(offsets.get(actualZoneName));
179 // Go back and fix up the offsets in the header.
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
SampleAuxiliaryInformationOffsetsBox.java 51 private List<Long> offsets = new LinkedList<Long>(); field in class:SampleAuxiliaryInformationOffsetsBox
61 return 8 + (getVersion() == 0 ? 4 * offsets.size() : 8 * offsets.size()) + ((getFlags() & 1) == 1 ? 8 : 0);
72 IsoTypeWriter.writeUInt32(byteBuffer, offsets.size());
73 for (Long offset : offsets) {
92 offsets.clear();
96 offsets.add(IsoTypeReader.readUInt32(content));
98 offsets.add(IsoTypeReader.readUInt64(content));
121 return offsets;
124 public void setOffsets(List<Long> offsets) {
    [all...]
  /external/mesa3d/src/glx/
vertarr.c 160 int offsets[4]; local
185 offsets[i] = (modes[idx][i].count != 0) ? size : -1;
193 if (offsets[0] >= 0) {
198 if (offsets[1] >= 0) {
202 (const char *) pointer + offsets[1]);
204 if (offsets[2] >= 0) {
207 (const char *) pointer + offsets[2]);
212 (const char *) pointer + offsets[3]);
  /external/skia/gm/
xfermodeimagefilter.cpp 114 // Test offsets on SrcMode (uses fixed-function blend)
133 // Test offsets on Darken (uses shader blend)
149 int offsets[nbSamples][4] = {{ 10, 10, -16, -16}, variable
153 SkIRect cropRect = SkIRect::MakeXYWH(offsets[i][0],
154 offsets[i][1],
155 fBitmap.width() + offsets[i][2],
156 fBitmap.height() + offsets[i][3]);

Completed in 476 milliseconds

1 2 3 4 5 6 7 8 91011>>