Searched refs:offsets (Results 1 - 10 of 10) sorted by relevance

/system/extras/perfprofd/
H A Dmap_utils.h30 std::set<ValType> offsets; member in struct:android::perfprofd::RangeMap::AggregatedSymbol
32 offsets.insert(offset);
58 maybe_match.offsets.insert(val);
63 if (*maybe_match.offsets.rbegin() < val) {
78 AggregatedSymbol left(maybe_match.symbol, *maybe_match.offsets.begin());
79 auto offset_it = maybe_match.offsets.begin();
81 left.offsets.insert(*offset_it);
91 for (; offset_it != maybe_match.offsets.end(); ++offset_it) {
92 right.offsets.insert(*offset_it);
96 map_.emplace(*left.offsets
[all...]
H A Dperf_data_converter.cc148 symbol->set_addr(*aggr_sym.second.offsets.begin());
149 symbol->set_size(*aggr_sym.second.offsets.rbegin() - *aggr_sym.second.offsets.begin() + 1);
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
H A DZoneOffsetPeriod.java79 int[] offsets = new int[2];
80 timeZone.getOffset(startMillis, false /* local */, offsets);
81 return new ZoneOffsetPeriod(minTime, end, offsets[0], offsets[1], longName);
206 int[] offsets = new int[2];
207 timeZone.getOffset(startMillis, false /* local */, offsets);
209 TimeZoneNames.NameType longNameType = offsets[1] == 0
/system/timezone/zone_compactor/main/java/
H A DZoneCompactor.java48 // 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.
/system/extras/boottime_tools/io_analysis/
H A Dcheck_file_read.py62 offsets = container.get(process_name)
63 if not offsets:
64 offsets = []
65 container[process_name] = offsets
66 offsets.append(offset)
81 def add_merged_access(self, time, offsets, lens, process_names):
83 for i in range(len(offsets)):
84 self.accesses.append((time, offsets[i], lens[i], process_names[i]))
86 self.add_if_single_block(self.ext4_single_block_accesses, lens[i], offsets[i], process_names[i])
88 total_read_offsets.add(offsets[
[all...]
/system/timezone/testing/src/main/java/libcore/tzdata/testing/
H A DZoneInfoTestHelper.java232 // Write out the offsets for later manipulation.
240 // Construct the data section in advance, so we know the offsets.
242 Map<String, Integer> offsets = new HashMap<>();
245 offsets.put(datum.id, offset);
260 Integer offset = offsets.get(id);
/system/libhwbinder/
H A DIPCThreadState.cpp133 << "offsets=" << btd->data.ptr.offsets << " (" << (void*)btd->offsets_size
827 reinterpret_cast<const binder_size_t*>(tr.data.ptr.offsets),
835 reinterpret_cast<const binder_size_t*>(tr.data.ptr.offsets),
842 reinterpret_cast<const binder_size_t*>(tr.data.ptr.offsets),
985 tr_sg.transaction_data.data.ptr.offsets = data.ipcObjects();
993 tr_sg.transaction_data.data.ptr.offsets = 0;
1109 reinterpret_cast<const binder_size_t*>(tr.data.ptr.offsets),
1133 << ", offsets addr="
1134 << reinterpret_cast<const size_t*>(tr.data.ptr.offsets) << end
[all...]
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
H A DTzLookupGenerator.java183 // The time use when sampling the offsets for a zone.
459 int[] offsets = new int[2];
460 timeZone.getOffset(offsetSampleTimeMillis, false /* local */, offsets);
461 int actualOffsetMillis = offsets[0];
/system/chre/external/flatbuffers/include/flatbuffers/
H A Dflatbuffers.h151 // Signed offsets for references that can go in both directions.
588 // Beyond this, signed offsets may not have enough range:
833 // Special case for offsets: see ReferTo below.
886 // it is here is that storing objects in-line may cause vtable offsets
909 // It starts with the number of offsets, followed by a type id, followed
910 // by the offsets themselves. In reverse:
913 assert(table_object_size < 0x10000); // Vtable use 16bit offsets.
916 // Write the offsets into the table
1034 // Must first serialize the string, since the set is all offsets into
1188 std::vector<Offset<String>> offsets(
[all...]
/system/extras/perfprofd/tests/
H A Dperfprofd_test.cc1268 for (auto& x : aggr_sym.second.offsets) {

Completed in 204 milliseconds