Searched defs:index (Results 1 - 25 of 170) sorted by relevance

1234567

/system/chre/core/include/chre/core/
H A Drequest_multiplexer_impl.h26 size_t *index,
28 CHRE_ASSERT(index);
33 *index = (mRequests.size() - 1);
42 size_t index, const RequestType& request, bool *maximalRequestChanged) {
44 CHRE_ASSERT(index < mRequests.size());
46 if (index < mRequests.size()) {
47 mRequests[index] = request;
54 size_t index, bool *maximalRequestChanged) {
56 CHRE_ASSERT(index < mRequests.size());
58 if (index < mRequest
25 addRequest(const RequestType& request, size_t *index, bool *maximalRequestChanged) argument
41 updateRequest( size_t index, const RequestType& request, bool *maximalRequestChanged) argument
[all...]
/system/chre/util/include/chre/util/
H A Dheap_impl.h31 void siftUp(ContainerType& container, size_t index, argument
33 CHRE_ASSERT(index < container.size());
34 size_t current = index;
47 void siftDown(ContainerType& container, size_t index, argument
49 CHRE_ASSERT(index < container.size());
50 size_t current = index;
54 while (index < container.size() - 1) {
95 void remove_heap(ContainerType& container, size_t index, argument
97 CHRE_ASSERT(index < container.size());
98 container.swap(index, containe
[all...]
H A Dfixed_size_blocking_queue_impl.h77 bool FixedSizeBlockingQueue<ElementType, kSize>::remove(size_t index) { argument
79 return mQueue.remove(index);
84 size_t index) {
86 return mQueue[index];
91 size_t index) const {
93 return mQueue[index];
83 operator []( size_t index) argument
H A Dpriority_queue_impl.h73 size_t index) {
74 return mData[index];
79 size_t index) const {
80 return mData[index];
102 void PriorityQueue<ElementType, CompareFunction>::remove(size_t index) { argument
103 CHRE_ASSERT(index < mData.size());
104 if (index < mData.size()) {
105 remove_heap(mData, index, mCompare);
72 operator []( size_t index) argument
H A Darray_queue_impl.h75 ElementType& ArrayQueue<ElementType, kCapacity>::operator[](size_t index) { argument
76 CHRE_ASSERT(index < mSize);
77 return data()[relativeIndexToAbsolute(index)];
82 size_t index) const {
83 CHRE_ASSERT(index < mSize);
84 return data()[relativeIndexToAbsolute(index)];
125 bool ArrayQueue<ElementType, kCapacity>::remove(size_t index) { argument
132 if (index >= mSize) {
136 size_t headLength = index;
138 size_t absoluteIndex = relativeIndexToAbsolute(index);
[all...]
H A Ddynamic_vector_impl.h145 ElementType& DynamicVector<ElementType>::operator[](size_type index) { argument
146 CHRE_ASSERT(index < mSize);
147 return data()[index];
151 const ElementType& DynamicVector<ElementType>::operator[](size_type index)
153 CHRE_ASSERT(index < mSize);
154 return data()[index];
212 bool DynamicVector<ElementType>::insert(size_type index,
214 bool inserted = prepareInsert(index);
216 new (&mData[index]) ElementType(element);
222 bool DynamicVector<ElementType>::insert(size_type index, ElementTyp
[all...]
/system/chre/apps/chqts/src/general_test/
H A Dheap_alloc_stress_test.cc83 size_t index; local
85 for (index = 0; (index < kNumPtrs); index++) {
99 ptrs[index] = ptr;
101 if (index == 0) {
107 index--;
108 chreHeapFree(ptrs[index]);
109 ptrs[index] = chreHeapAlloc(last_alloc_size);
110 if (ptrs[index]
[all...]
H A Dbasic_sensor_tests.cc32 static void checkTimestampDelta(uint32_t delta, size_t index) { argument
33 if (index == 0) {
38 uint32_t indexInt = static_cast<uint32_t>(index);
39 sendFatalFailureToHost("timestampDelta was 0 for reading index ",
H A Dtimer_stress_test.cc116 void TimerStressTest::handleStageEvent(uint32_t index) { argument
117 switch (index) {
119 sendFatalFailureToHost("Canceled timer fired:", &index);
125 markSuccess(index);
130 markSuccess(index);
134 sendFatalFailureToHost("Unexpected event stage:", &index);
/system/chre/core/tests/
H A Drequest_multiplexer_test.cc56 size_t index; local
58 ASSERT_TRUE(multiplexer.addRequest(request, &index, &maximalRequestChanged));
66 size_t index; local
68 ASSERT_TRUE(multiplexer.addRequest(request, &index, &maximalRequestChanged));
75 size_t index; local
80 ASSERT_TRUE(multiplexer.addRequest(request, &index,
89 ASSERT_TRUE(multiplexer.addRequest(request, &index,
99 size_t index; local
101 ASSERT_TRUE(multiplexer.addRequest(request, &index, &maximalRequestChanged));
103 EXPECT_EQ(multiplexer.getRequests()[index]
116 size_t index; local
158 size_t index; local
205 size_t index; local
264 size_t index; local
308 size_t index; local
352 size_t index; local
406 size_t index; local
[all...]
/system/chre/util/tests/
H A Dfixed_size_vector_test.cc183 size_t index = 0; local
186 EXPECT_EQ(vector[index++], *it);
202 size_t index = 0; local
205 EXPECT_EQ(vector[index++], *cit);
227 size_t index = 0; local
229 EXPECT_EQ(vector[index++], *it_b++);
244 size_t index = 0; local
246 EXPECT_EQ(vector[index++], *it_b++);
260 size_t index = 0; local
261 while (index <
277 size_t index = 0; local
298 size_t index = 0; local
[all...]
/system/extras/libperfmgr/tests/
H A DNodeTest.cc76 std::size_t index = 0; local
77 EXPECT_TRUE(t.GetValueIndex("value2", &index));
78 EXPECT_EQ(2u, index);
79 index = 1234;
80 EXPECT_FALSE(t.GetValueIndex("NON_EXIST", &index));
81 EXPECT_EQ(1234u, index);
/system/extras/memory_replay/
H A DPointers.cpp78 size_t index = GetHash(key_pointer); local
80 if (atomic_load(&pointers_[index].key_pointer) == key_pointer) {
81 return pointers_ + index;
83 if (++index == max_pointers_) {
84 index = 0;
91 size_t index = GetHash(key_pointer); local
94 if (atomic_compare_exchange_strong(&pointers_[index].key_pointer, &empty,
96 return pointers_ + index;
98 if (++index == max_pointers_) {
99 index
[all...]
/system/iot/attestation/atap/test/
H A Datap_unittest_util.h67 // Returns |buf| + |*index|, then increments |*index| by |value|. Used for
69 inline uint8_t* next(const uint8_t* buf, uint32_t* index, uint32_t value) { argument
70 uint8_t* retval = (uint8_t*)&buf[*index];
71 *index += value;
/system/nvram/core/include/nvram/core/
H A Dnvram_manager.h91 uint32_t index; member in struct:nvram::NvramManager::SpaceListEntry
97 // an index and pointer to the transient information held in the
125 // Finds the array index in |spaces_| that corresponds to |space_index|.
129 // Loads space data for |index|. Fills in |space_record| and returns true if
131 bool LoadSpaceRecord(uint32_t index,
138 // Write |space| data for |index|.
139 nvram_result_t WriteSpace(uint32_t index, const NvramSpace& space);
/system/nvram/core/
H A Dpersistence.cpp117 storage::Status LoadSpace(uint32_t index, NvramSpace* space) { argument
119 storage::Status status = storage::LoadSpace(index, &blob);
126 storage::Status StoreSpace(uint32_t index, const NvramSpace& space) { argument
132 return storage::StoreSpace(index, blob);
135 storage::Status DeleteSpace(uint32_t index) { argument
136 return storage::DeleteSpace(index);
/system/tools/aidl/
H A Dgenerate_java.cpp51 Variable* VariableFactory::Get(int index) { argument
52 return vars_[index];
/system/bt/btif/co/
H A Dbta_gatts_co.cc143 UNUSED_ATTR uint8_t index,
142 bta_gatts_co_load_handle_range( UNUSED_ATTR uint8_t index, UNUSED_ATTR tBTA_GATTS_HNDL_RANGE* p_handle_range) argument
/system/bt/osi/src/
H A Darray.cc64 void* array_at(const array_t* array, size_t index) { argument
66 CHECK(index < array->length);
67 return array->data + (index * array->element_size);
/system/bt/osi/test/
H A Dleaky_bonded_queue_test.cc32 EXPECT_EQ((a)->index, (b)->index); \
37 Item(int i) { index = i; }
39 int index; member in class:testing::Item
/system/bt/vendor_libs/test_vendor_lib/src/
H A Dl2cap_sdu.cc147 uint8_t& L2capSdu::get_at_index(size_t index) { return sdu_data_[index]; } argument
H A Dpacket.cc73 bool Packet::IncrementPayloadCounter(size_t index) { argument
74 if (payload_.size() < index - 1) return false;
76 payload_[index]++;
80 bool Packet::IncrementPayloadCounter(size_t index, uint8_t max_val) { argument
81 if (payload_.size() < index - 1) return false;
83 if (payload_[index] + 1 > max_val) return false;
85 payload_[index]++;
/system/bt/vendor_libs/test_vendor_lib/test/
H A Diterator_test.cc33 uint8_t& get_at_index(size_t index) { return test_vector_[index]; } argument
80 << "+= test: Dereferenced iterator does not equal expected at index "
91 << "at index " << i;
100 << "at index " << i;
108 << "+ test: Dereferenced iterator does not equal expected at index "
119 << "-= test: Dereferenced iterator does not equal expected at index "
130 << "at index " << i;
140 << "at index " << i;
149 << "- test: Dereferenced iterator does not equal expected at index "
[all...]
/system/chre/apps/wifi_offload/
H A Dchannel_histogram.cc56 * Returns the index of a given channel number in kAllChannels.
58 * @param channel_number Channel number we want to map to an index
86 size_t index = GetChannelIndex(channel_number); local
87 if (index == kNumChannels) {
91 if (scan_count_internal_high_res_[index] == 0) {
104 uint64_t scaled_value = scan_count_internal_high_res_[index];
110 size_t index = GetChannelIndex(GetChannelNumber(frequency)); local
111 if (index == kNumChannels) {
115 scan_count_internal_high_res_[index]++;
127 size_t index local
[all...]
/system/chre/core/
H A Dtimer_pool.cc66 size_t index; local
69 &index);
77 mTimerRequests.remove(index);
78 if (index == 0) {
93 TimerHandle timerHandle, size_t *index) {
96 if (index != nullptr) {
97 *index = i;
92 getTimerRequestByTimerHandle( TimerHandle timerHandle, size_t *index) argument

Completed in 8899 milliseconds

1234567