Home
last modified time | relevance | path

Searched refs:GetMap (Results 1 – 25 of 39) sorted by relevance

12

/external/cronet/stable/net/disk_cache/blockfile/
Dbitmap_unittest.cc27 EXPECT_TRUE(nullptr == map.GetMap()); in TEST()
110 EXPECT_EQ(0, memcmp(local_map, bitmap.GetMap(), kMapSize)); in TEST()
115 EXPECT_EQ(0, memcmp(local_map, bitmap2.GetMap(), kMapSize)); in TEST()
118 EXPECT_EQ(0, memcmp(local_map, bitmap2.GetMap(), kMapSize)); in TEST()
119 EXPECT_NE(0, memcmp(local_map, bitmap.GetMap(), kMapSize)); in TEST()
131 EXPECT_EQ(0, memcmp(zeros, map.GetMap(), kMapSize)); in TEST()
133 EXPECT_EQ(0, memcmp(ones, map.GetMap(), kMapSize)); in TEST()
135 EXPECT_EQ(0, memcmp(zeros, map.GetMap(), kMapSize)); in TEST()
138 EXPECT_EQ(0, memcmp(zeros, map.GetMap(), kMapSize)); in TEST()
Dbitmap.h82 const uint32_t* GetMap() const { return map_; } in GetMap() function
86 return base::span(GetMap(), static_cast<size_t>(ArraySize())); in GetSpan()
/external/webrtc/system_wrappers/source/
Dmetrics.cc211 RtcHistogramMap* GetMap() { in GetMap() function
244 RtcHistogramMap* map = GetMap(); in HistogramFactoryGetCountsLinear()
257 RtcHistogramMap* map = GetMap(); in HistogramFactoryGetEnumeration()
299 RtcHistogramMap* map = GetMap(); in GetAndReset()
305 RtcHistogramMap* map = GetMap(); in Reset()
311 RtcHistogramMap* map = GetMap(); in NumEvents()
316 RtcHistogramMap* map = GetMap(); in NumSamples()
321 RtcHistogramMap* map = GetMap(); in MinSample()
326 RtcHistogramMap* map = GetMap(); in Samples()
/external/cronet/tot/net/disk_cache/blockfile/
Dbitmap_unittest.cc27 EXPECT_TRUE(nullptr == map.GetMap()); in TEST()
110 EXPECT_EQ(0, memcmp(local_map, bitmap.GetMap(), kMapSize)); in TEST()
115 EXPECT_EQ(0, memcmp(local_map, bitmap2.GetMap(), kMapSize)); in TEST()
118 EXPECT_EQ(0, memcmp(local_map, bitmap2.GetMap(), kMapSize)); in TEST()
119 EXPECT_NE(0, memcmp(local_map, bitmap.GetMap(), kMapSize)); in TEST()
131 EXPECT_EQ(0, memcmp(zeros, map.GetMap(), kMapSize)); in TEST()
133 EXPECT_EQ(0, memcmp(ones, map.GetMap(), kMapSize)); in TEST()
135 EXPECT_EQ(0, memcmp(zeros, map.GetMap(), kMapSize)); in TEST()
138 EXPECT_EQ(0, memcmp(zeros, map.GetMap(), kMapSize)); in TEST()
Dbitmap.h82 const uint32_t* GetMap() const { return map_; } in GetMap() function
86 return base::span(GetMap(), static_cast<size_t>(ArraySize())); in GetSpan()
/external/clang/lib/StaticAnalyzer/Core/
DBlockCounter.cpp50 static inline CountMap GetMap(void *D) { in GetMap() function
60 CountMap M = GetMap(Data); in getNumVisited()
77 return BlockCounter(GetFactory(F).add(GetMap(BC.Data), in IncrementCount()
/external/protobuf/python/google/protobuf/pyext/
Dmap_container.cc306 static MapContainer* GetMap(PyObject* obj) { in GetMap() function
311 MapContainer* self = GetMap(_self); in Length()
318 MapContainer* self = GetMap(_self); in Clear()
328 MapContainer* self = GetMap(_self); in GetEntryClass()
337 MapContainer* self = GetMap(_self); in MergeFrom()
343 MapContainer* other_map = GetMap(arg); in MergeFrom()
358 MapContainer* self = GetMap(_self); in Contains()
391 MapContainer* self = GetMap(obj); in NewScalarMapContainer()
403 MapContainer* self = GetMap(_self); in ScalarMapGetItem()
424 MapContainer* self = GetMap(_self); in ScalarMapSetItem()
[all …]
/external/cronet/tot/third_party/protobuf/python/google/protobuf/pyext/
Dmap_container.cc306 static MapContainer* GetMap(PyObject* obj) { in GetMap() function
311 MapContainer* self = GetMap(_self); in Length()
318 MapContainer* self = GetMap(_self); in Clear()
328 MapContainer* self = GetMap(_self); in GetEntryClass()
337 MapContainer* self = GetMap(_self); in MergeFrom()
343 MapContainer* other_map = GetMap(arg); in MergeFrom()
358 MapContainer* self = GetMap(_self); in Contains()
391 MapContainer* self = GetMap(obj); in NewScalarMapContainer()
403 MapContainer* self = GetMap(_self); in ScalarMapGetItem()
424 MapContainer* self = GetMap(_self); in ScalarMapSetItem()
[all …]
/external/cronet/stable/third_party/protobuf/python/google/protobuf/pyext/
Dmap_container.cc306 static MapContainer* GetMap(PyObject* obj) { in GetMap() function
311 MapContainer* self = GetMap(_self); in Length()
318 MapContainer* self = GetMap(_self); in Clear()
328 MapContainer* self = GetMap(_self); in GetEntryClass()
337 MapContainer* self = GetMap(_self); in MergeFrom()
343 MapContainer* other_map = GetMap(arg); in MergeFrom()
358 MapContainer* self = GetMap(_self); in Contains()
391 MapContainer* self = GetMap(obj); in NewScalarMapContainer()
403 MapContainer* self = GetMap(_self); in ScalarMapGetItem()
424 MapContainer* self = GetMap(_self); in ScalarMapSetItem()
[all …]
/external/cronet/stable/third_party/protobuf/src/google/protobuf/
Dmap_field_inl.h115 InternalGetIterator(map_iter) = GetMap().begin(); in MapBegin()
121 InternalGetIterator(map_iter) = GetMap().end(); in MapEnd()
170 return static_cast<int>(impl_.GetMap().size()); in size()
197 const Map<Key, T>& map = impl_.GetMap(); in SetMapIteratorValue()
210 const Map<Key, T>& map = impl_.GetMap(); in ContainsMapKey()
242 const Map<Key, T>& map = GetMap(); in LookupMapValue()
312 const Map<Key, T>& map = impl_.GetMap(); in SyncRepeatedFieldWithMapNoLock()
367 size += impl_.GetMap().SpaceUsedExcludingSelfLong(); in SpaceUsedExcludingSelfNoLock()
Dmap_field_lite.h95 const Map<Key, T>& GetMap() const { return map_; } in GetMap() function
174 const auto& t = field.GetMap(); in AllAreInitialized()
Dmap_field.cc238 int DynamicMapField::size() const { return GetMap().size(); } in size()
260 const Map<MapKey, MapValueRef>& map = GetMap(); in ContainsMapKey()
317 const Map<MapKey, MapValueRef>& map = GetMap(); in LookupMapValue()
343 const Map<MapKey, MapValueRef>& DynamicMapField::GetMap() const { in GetMap() function in google::protobuf::internal::DynamicMapField
Dmap_field.h517 virtual const Map<Key, T>& GetMap() const = 0;
589 const Map<Key, T>& GetMap() const override {
591 return impl_.GetMap();
646 const auto& t = field.GetMap();
680 const Map<MapKey, MapValueRef>& GetMap() const override;
/external/protobuf/src/google/protobuf/
Dmap_field_inl.h115 InternalGetIterator(map_iter) = GetMap().begin(); in MapBegin()
121 InternalGetIterator(map_iter) = GetMap().end(); in MapEnd()
170 return static_cast<int>(impl_.GetMap().size()); in size()
197 const Map<Key, T>& map = impl_.GetMap(); in SetMapIteratorValue()
210 const Map<Key, T>& map = impl_.GetMap(); in ContainsMapKey()
242 const Map<Key, T>& map = GetMap(); in LookupMapValue()
312 const Map<Key, T>& map = impl_.GetMap(); in SyncRepeatedFieldWithMapNoLock()
367 size += impl_.GetMap().SpaceUsedExcludingSelfLong(); in SpaceUsedExcludingSelfNoLock()
Dmap_field_lite.h95 const Map<Key, T>& GetMap() const { return map_; } in GetMap() function
174 const auto& t = field.GetMap(); in AllAreInitialized()
Dmap_field.cc238 int DynamicMapField::size() const { return GetMap().size(); } in size()
260 const Map<MapKey, MapValueRef>& map = GetMap(); in ContainsMapKey()
317 const Map<MapKey, MapValueRef>& map = GetMap(); in LookupMapValue()
343 const Map<MapKey, MapValueRef>& DynamicMapField::GetMap() const { in GetMap() function in google::protobuf::internal::DynamicMapField
Dmap_field.h517 virtual const Map<Key, T>& GetMap() const = 0;
589 const Map<Key, T>& GetMap() const override {
591 return impl_.GetMap();
646 const auto& t = field.GetMap();
680 const Map<MapKey, MapValueRef>& GetMap() const override;
/external/cronet/tot/third_party/protobuf/src/google/protobuf/
Dmap_field_inl.h115 InternalGetIterator(map_iter) = GetMap().begin(); in MapBegin()
121 InternalGetIterator(map_iter) = GetMap().end(); in MapEnd()
170 return static_cast<int>(impl_.GetMap().size()); in size()
197 const Map<Key, T>& map = impl_.GetMap(); in SetMapIteratorValue()
210 const Map<Key, T>& map = impl_.GetMap(); in ContainsMapKey()
242 const Map<Key, T>& map = GetMap(); in LookupMapValue()
312 const Map<Key, T>& map = impl_.GetMap(); in SyncRepeatedFieldWithMapNoLock()
367 size += impl_.GetMap().SpaceUsedExcludingSelfLong(); in SpaceUsedExcludingSelfNoLock()
Dmap_field_lite.h95 const Map<Key, T>& GetMap() const { return map_; } in GetMap() function
174 const auto& t = field.GetMap(); in AllAreInitialized()
Dmap_field.cc238 int DynamicMapField::size() const { return GetMap().size(); } in size()
260 const Map<MapKey, MapValueRef>& map = GetMap(); in ContainsMapKey()
317 const Map<MapKey, MapValueRef>& map = GetMap(); in LookupMapValue()
343 const Map<MapKey, MapValueRef>& DynamicMapField::GetMap() const { in GetMap() function in google::protobuf::internal::DynamicMapField
Dmap_field.h517 virtual const Map<Key, T>& GetMap() const = 0;
589 const Map<Key, T>& GetMap() const override {
591 return impl_.GetMap();
646 const auto& t = field.GetMap();
680 const Map<MapKey, MapValueRef>& GetMap() const override;
/external/tensorflow/tensorflow/core/util/autotune_maps/
Dautotune_serialize_test.cc45 EXPECT_EQ(ConvAutotuneMap::GetInstance()->GetMap().size(), 0); in TEST()
118 EXPECT_EQ(ConvAutotuneMap::GetInstance()->GetMap().size(), 3); in TEST()
174 EXPECT_EQ(ConvAutotuneMap::GetInstance()->GetMap().size(), 0); in TEST()
/external/tensorflow/tensorflow/core/kernels/
Dsparse_tensors_map_ops.cc125 Status GetMap(OpKernelContext* ctx, bool is_writing, in GetMap() function in tensorflow::SparseTensorAccessingOp
173 OP_REQUIRES_OK(context, GetMap(context, true /* is_writing */, &map)); in Compute()
228 OP_REQUIRES_OK(context, GetMap(context, true /* is_writing */, &map)); in Compute()
370 OP_REQUIRES_OK(context, GetMap(context, false /* is_writing */, &map)); in Compute()
/external/tensorflow/tensorflow/compiler/mlir/
Dop_or_arg_name_mapper.h63 const llvm::DenseMap<OpOrVal, absl::string_view>& GetMap() const { in GetMap() function
/external/mesa3d/include/android_stub/backtrace/
DBacktrace.h180 BacktraceMap* GetMap() { return map_; } in GetMap() function

12