Home
last modified time | relevance | path

Searched refs:map_index (Results 1 – 14 of 14) sorted by relevance

/external/google-breakpad/src/processor/
Dmodule_serializer.cc58 int map_index = 0; in SizeOf() local
59 map_sizes_[map_index++] = files_serializer_.SizeOf(module.files_); in SizeOf()
60 map_sizes_[map_index++] = functions_serializer_.SizeOf(module.functions_); in SizeOf()
61 map_sizes_[map_index++] = pubsym_serializer_.SizeOf(module.public_symbols_); in SizeOf()
63 map_sizes_[map_index++] = in SizeOf()
65 map_sizes_[map_index++] = cfi_init_rules_serializer_.SizeOf( in SizeOf()
67 map_sizes_[map_index++] = cfi_delta_rules_serializer_.SizeOf( in SizeOf()
/external/libvpx/libvpx/vp8/encoder/
Dethreading.c82 int map_index = (mb_row * cm->mb_cols); in thread_encoding_proc() local
106 x->mb_activity_ptr = &cpi->mb_activity_map[map_index]; in thread_encoding_proc()
160 if (cpi->segmentation_map[map_index + mb_col] <= 3) { in thread_encoding_proc()
162 cpi->segmentation_map[map_index + mb_col]; in thread_encoding_proc()
173 x->active_ptr = cpi->active_map + map_index + mb_col; in thread_encoding_proc()
203 if (cpi->consec_zero_last[map_index + mb_col] < 255) { in thread_encoding_proc()
204 cpi->consec_zero_last[map_index + mb_col] += 1; in thread_encoding_proc()
206 if (cpi->consec_zero_last_mvbias[map_index + mb_col] < 255) { in thread_encoding_proc()
207 cpi->consec_zero_last_mvbias[map_index + mb_col] += 1; in thread_encoding_proc()
210 cpi->consec_zero_last[map_index + mb_col] = 0; in thread_encoding_proc()
[all …]
Dencodeframe.c334 int map_index = (mb_row * cpi->common.mb_cols); in encode_mb_row() local
385 x->mb_activity_ptr = &cpi->mb_activity_map[map_index]; in encode_mb_row()
437 if (cpi->segmentation_map[map_index + mb_col] <= 3) { in encode_mb_row()
439 cpi->segmentation_map[map_index + mb_col]; in encode_mb_row()
450 x->active_ptr = cpi->active_map + map_index + mb_col; in encode_mb_row()
481 if (cpi->consec_zero_last[map_index + mb_col] < 255) { in encode_mb_row()
482 cpi->consec_zero_last[map_index + mb_col] += 1; in encode_mb_row()
484 if (cpi->consec_zero_last_mvbias[map_index + mb_col] < 255) { in encode_mb_row()
485 cpi->consec_zero_last_mvbias[map_index + mb_col] += 1; in encode_mb_row()
488 cpi->consec_zero_last[map_index + mb_col] = 0; in encode_mb_row()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_aq_cyclicrefresh.c273 int map_index = mi_row * cm->mi_cols + mi_col; in vp9_cyclic_refresh_postencode() local
274 if (cyclic_refresh_segment_id(seg_map[map_index]) == CR_SEGMENT_ID_BOOST1) in vp9_cyclic_refresh_postencode()
276 else if (cyclic_refresh_segment_id(seg_map[map_index]) == in vp9_cyclic_refresh_postencode()
Dvp9_encodeframe.c5827 int map_index = 0; in compute_frame_aq_offset() local
5837 map_index++; in compute_frame_aq_offset()
/external/v8/src/snapshot/
Ddefault-serializer-allocator.cc89 return reference.map_index() < num_maps_; in BackReferenceIsAlreadyAllocated()
Dreferences.h93 uint32_t map_index() const { in map_index() function
Dserializer.cc286 sink_.PutInt(reference.map_index(), "BackRefMapIndex"); in PutBackReference()
/external/v8/src/objects/
Dshared-function-info-inl.h274 int map_index = Context::FunctionMapIndex( in UpdateFunctionMapIndex() local
276 set_function_map_index(map_index); in UpdateFunctionMapIndex()
/external/python/cpython3/Lib/
Dtarfile.py628 self.map_index = 0
685 data, start, stop, offset = self.map[self.map_index]
689 self.map_index += 1
690 if self.map_index == len(self.map):
691 self.map_index = 0
/external/v8/src/builtins/
Dbuiltins-collections-gen.cc628 Node* AllocateJSCollectionIterator(Node* context, int map_index,
727 Node* context, int map_index, Node* collection) { in AllocateJSCollectionIterator() argument
730 Node* const iterator_map = LoadContextElement(native_context, map_index); in AllocateJSCollectionIterator()
Dbuiltins-regexp-gen.cc84 const Heap::RootListIndex map_index = Heap::kFixedArrayMapRootIndex; in AllocateRegExpResult() local
85 DCHECK(Heap::RootIsImmortalImmovable(map_index)); in AllocateRegExpResult()
86 StoreMapNoWriteBarrier(elements, map_index); in AllocateRegExpResult()
/external/v8/src/ic/
Daccessor-assembler.cc118 int map_index = i * kEntrySize; in HandlePolymorphicCase() local
129 LoadWeakFixedArrayElement(feedback, map_index); in HandlePolymorphicCase()
/external/v8/src/
Dcode-stub-assembler.cc4000 Heap::RootListIndex map_index = IsDoubleElementsKind(kind) in AllocateFixedArray() local
4003 DCHECK(Heap::RootIsImmortalImmovable(map_index)); in AllocateFixedArray()
4004 StoreMapNoWriteBarrier(array, map_index); in AllocateFixedArray()
4182 Heap::RootListIndex map_index = Heap::kPropertyArrayMapRootIndex; in AllocatePropertyArray() local
4183 DCHECK(Heap::RootIsImmortalImmovable(map_index)); in AllocatePropertyArray()
4184 StoreMapNoWriteBarrier(array, map_index); in AllocatePropertyArray()