HomeSort by relevance Sort by last modified time
    Searched refs:offsets_ (Results 1 - 22 of 22) sorted by null

  /external/v8/src/interpreter/
bytecode-array-random-iterator.cc 15 : BytecodeArrayAccessor(bytecode_array, 0), offsets_(zone) {
19 offsets_.push_back(current_offset());
27 static_cast<size_t>(current_index_) < offsets_.size();
32 SetOffset(offsets_[current_index_]);
bytecode-array-random-iterator.h 47 size_t size() const { return offsets_.size(); }
58 DCHECK_LT(offsets_.size() - 1, static_cast<size_t>(INT_MAX));
59 current_index_ = static_cast<int>(offsets_.size() - 1);
66 ZoneVector<int> offsets_; member in class:v8::internal::interpreter::final
  /external/libtextclassifier/utils/sentencepiece/
sorted_strings_table.cc 44 offsets_ + left, offsets_ + right,
50 offsets_);
52 offsets_ + left, offsets_ + right,
58 offsets_);
67 if (pieces_[offsets_[left] + match_length] == 0) {
80 for (int k = offsets_[i] + piece_match_length; pieces_[k] != 0; k++) {
sorted_strings_table.h 44 offsets_(offsets),
60 const uint32* offsets_; member in class:libtextclassifier3::SortedStringsTable
  /external/icu/icu4c/source/i18n/
coleitr.cpp 57 : UObject(other), iter_(NULL), rbc_(NULL), otherHalf_(0), dir_(0), offsets_(NULL) {
64 delete offsets_;
85 if (dir_ < 0 && offsets_ != NULL && !offsets_->isEmpty()) {
93 U_ASSERT(i < offsets_->size());
94 return offsets_->elementAti(i);
188 if (offsets_ == NULL) {
189 offsets_ = new UVector32(status);
190 if (offsets_ == NULL) {
199 int64_t ce = iter_->previousCE(*offsets_, status)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CollationElementIterator.java 123 private UVector32 offsets_; field in class:CollationElementIterator
197 offsets_ = null;
280 if (dir_ < 0 && offsets_ != null && !offsets_.isEmpty()) {
288 assert (i < offsets_.size());
289 return offsets_.elementAti(i);
384 if (offsets_ == null) {
385 offsets_ = new UVector32();
391 long ce = iter_.previousCE(offsets_);
401 if (offsets_.isEmpty())
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
CollationElementIterator.java 123 private UVector32 offsets_; field in class:CollationElementIterator
202 offsets_ = null;
289 if (dir_ < 0 && offsets_ != null && !offsets_.isEmpty()) {
297 assert (i < offsets_.size());
298 return offsets_.elementAti(i);
395 if (offsets_ == null) {
396 offsets_ = new UVector32();
402 long ce = iter_.previousCE(offsets_);
412 if (offsets_.isEmpty())
    [all...]
  /external/google-breakpad/src/processor/
static_map.h 90 offsets_(0),
133 // address_of_i-th_node_value = raw_data_ + offsets_[i]
134 const uint32_t* offsets_; member in class:google_breakpad::StaticMap
static_map-inl.h 52 offsets_ = reinterpret_cast<const uint32_t*>(
142 if (offsets_[node_index] != static_cast<uint32_t>(first_offset)) {
150 if (offsets_[node_index] <= offsets_[node_index - 1]) {
static_map_iterator.h 101 // offsets_ is an array of offset addresses of mapped values.
103 // address_of_i-th_node_value = base_ + offsets_[i]
104 const uint32_t* offsets_; member in class:google_breakpad::StaticMapIterator
static_map_iterator-inl.h 51 offsets_ = reinterpret_cast<const uint32_t*>(base_ + sizeof(num_nodes_));
120 return base_ + offsets_[index_];
  /art/dex2oat/linker/arm/
relative_patcher_arm_base.cc 36 offsets_(),
94 offsets_.push_back(offset);
99 return !offsets_.empty();
104 return offsets_.back();
108 return pending_offset_ != offsets_.size();
113 return offsets_[pending_offset_];
127 return offsets_[pending_offset_ - 1u];
141 return offsets_.size();
146 return offsets_[index];
152 std::vector<uint32_t> offsets_; // Offsets at which the thunk needs to be written member in class:art::linker::ArmBaseRelativePatcher::ThunkData
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
eigen_attention.h 62 offsets_(offsets),
102 float x = offsets_[i].first, y = offsets_[i].second;
242 const std::vector<IndexPair<float> > offsets_; member in struct:Eigen::__anon45370::GlimpseExtractionOp
  /external/protobuf/src/google/protobuf/
map_entry.h 246 descriptor, entry, offsets_,
279 static int offsets_[2]; member in class:google::protobuf::internal::MapEntry
299 default_enum_value>::offsets_[2] = { member in class:google::protobuf::internal::MapEntry
generated_message_reflection.cc 189 offsets_ (offsets),
219 offsets_ (offsets),
    [all...]
generated_message_reflection.h 444 const int* offsets_; member in class:google::protobuf::internal::GeneratedMessageReflection
  /external/icu/icu4c/source/i18n/unicode/
coleitr.h 376 UVector32 *offsets_; member in class:U_FINAL
  /art/tools/dexanalyze/
dexanalyze_strings.cc 52 CHECK_LT(prefix_index, offsets_.size());
53 const uint32_t data = offsets_[prefix_index];
60 offsets_.push_back((offset << kLengthBits) | length);
61 return offsets_.size() - 1;
65 std::vector<uint32_t> offsets_; member in class:art::dexanalyze::PrefixDictionary
478 const size_t num_prefixes = prefix_strings.dictionary_.offsets_.size();
480 total_prefix_table_ += num_prefixes * sizeof(prefix_strings.dictionary_.offsets_[0]);
  /external/tensorflow/tensorflow/java/src/main/native/
tensor_jni.cc 274 offsets_(static_cast<const char*>(TF_TensorData(t))),
275 data_(offsets_ + 8 * num_elements),
276 limit_(offsets_ + TF_TensorByteSize(t)) {}
281 const char* poffset = offsets_ + sizeof(offset) * index_;
301 const char* offsets_; member in class:__anon45828::StringTensorReader
  /external/perfetto/src/trace_processor/
trace_storage.h 670 offsets_.emplace_back(row.offset);
679 const std::deque<int64_t>& offsets() const { return offsets_; }
687 std::deque<int64_t> offsets_; member in class:perfetto::trace_processor::TraceStorage::HeapProfileMappings
    [all...]
  /art/oatdump/
oatdump.cc 693 auto it = offsets_.upper_bound(begin_offset);
694 CHECK(it != offsets_.end());
849 offsets_.insert(reinterpret_cast<uintptr_t>(&dex_file->GetHeader()));
863 offsets_.insert(oat_file_.Size());
1780 std::set<uintptr_t> offsets_; member in class:art::OatDumper
    [all...]
  /external/harfbuzz_ng/src/
hb-subset-cff1.cc 115 TopDictModifiers (const CFF1SubTableOffsets &offsets_,
117 : offsets (offsets_),
    [all...]

Completed in 2446 milliseconds