HomeSort by relevance Sort by last modified time
    Searched defs:sizeOf (Results 1 - 25 of 144) sorted by null

1 2 3 4 5 6

  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
InfoStoreTrojan.java 23 return sizeOf(store, ViewInfoStore.InfoRecord.FLAG_PRE);
26 return sizeOf(store, ViewInfoStore.InfoRecord.FLAG_POST);
28 static int sizeOf(ViewInfoStore store, int flags) {
  /frameworks/av/media/libstagefright/webm/
EbmlUtil.cpp 94 int sizeOf(uint64_t u) {
102 int unsignedLength = sizeOf(u);
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/graphics/
ImageLoader.java 96 protected int sizeOf(Long key, Bitmap value) {
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
MediaCache.java 108 protected int sizeOf(final String key, final T value) {
  /frameworks/base/core/java/android/util/
LruCache.java 36 * {@link #sizeOf} to size the cache in different units. For example, this cache
41 * protected int sizeOf(String key, Bitmap value) {
76 * @param maxSize for caches that do not override {@link #sizeOf}, this is
201 + ".sizeOf() is reporting inconsistent results!");
286 int result = sizeOf(key, value);
300 protected int sizeOf(K key, V value) {
312 * For caches that do not override {@link #sizeOf}, this returns the number
321 * For caches that do not override {@link #sizeOf}, this returns the maximum
  /frameworks/layoutlib/bridge/src/android/util/
LruCache.java 40 * {@link #sizeOf} to size the cache in different units. For example, this cache
45 * protected int sizeOf(String key, Bitmap value) {
80 * @param maxSize for caches that do not override {@link #sizeOf}, this is
203 + ".sizeOf() is reporting inconsistent results!");
297 int result = sizeOf(key, value);
311 protected int sizeOf(K key, V value) {
323 * For caches that do not override {@link #sizeOf}, this returns the number
332 * For caches that do not override {@link #sizeOf}, this returns the maximum
  /frameworks/opt/bitmap/src/com/android/bitmap/
UnrefedBitmapCache.java 72 protected int sizeOf(final ReusableBitmap value) {
UnrefedPooledCache.java 140 unrefSize += sizeOf(value);
165 protected int sizeOf(V value) {
186 size += sizeOf(val);
197 size += sizeOf(val);
207 size += sizeOf(val);
227 protected int sizeOf(K key, V value) {
228 return UnrefedPooledCache.this.sizeOf(value);
  /frameworks/support/collection/src/main/java/androidx/collection/
LruCache.java 44 * @param maxSize for caches that do not override {@link #sizeOf}, this is
169 + ".sizeOf() is reporting inconsistent results!");
250 int result = sizeOf(key, value);
264 protected int sizeOf(K key, V value) {
276 * For caches that do not override {@link #sizeOf}, this returns the number
285 * For caches that do not override {@link #sizeOf}, this returns the maximum
  /packages/apps/Camera2/src/com/android/camera/processing/memory/
LruPool.java 80 int sizeOf(TKey key, TValue value) {
206 * For pools that do not override {@link Configuration#sizeOf}, this
217 * For pools that do not override {@link Configuration#sizeOf}, this
245 throw new IllegalStateException("LruPool.sizeOf() is reporting "
251 int result = mConfiguration.sizeOf(key, value);
  /frameworks/base/services/core/java/com/android/server/accounts/
TokenCache.java 116 protected int sizeOf(Key k, Value v) {
  /frameworks/rs/driver/runtime/
rs_allocation.c 65 rsOffset(rs_allocation a, uint32_t sizeOf, uint32_t x, uint32_t y,
71 uint8_t *dp = &p[(sizeOf * x) + (y * stride) +
82 const uint32_t sizeOf = alloc->mHal.state.elementSizeBytes;;
83 uint8_t *dp = &p[(sizeOf * x) + (y * stride) +
  /packages/apps/DocumentsUI/src/com/android/documentsui/
ThumbnailCache.java 300 protected int sizeOf(Pair<Uri, Point> key, Entry value) {
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardData.java 115 return sizeOf(mSuggestions) > 0;
185 final boolean hasConditions = sizeOf(conditions) > 0;
188 final boolean hasSuggestions = sizeOf(suggestions) > 0;
223 private static int sizeOf(List<?> list) {
440 conditionCount = sizeOf(conditions);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowParcel.java 357 // List of elements where a pair is a piece of data and the sizeof that data
514 int sizeOf = ois.readInt();
516 byteBuffer.buffer.add(Pair.create(sizeOf, value));
  /frameworks/support/v7/recyclerview/src/test/java/androidx/recyclerview/widget/
ViewInfoStoreTest.java 116 assertEquals(0, sizeOf(FLAG_PRE));
138 assertEquals(1, sizeOf(FLAG_APPEAR));
141 assertEquals(2, sizeOf(FLAG_APPEAR));
143 assertEquals(1, sizeOf(FLAG_APPEAR));
150 assertEquals(1, sizeOf(FLAG_DISAPPEARED));
152 assertEquals(1, sizeOf(FLAG_DISAPPEARED));
155 assertEquals(2, sizeOf(FLAG_DISAPPEARED));
157 assertEquals(1, sizeOf(FLAG_DISAPPEARED));
159 assertEquals(0, sizeOf(FLAG_DISAPPEARED));
253 private int sizeOf(int flags)
    [all...]
  /system/core/logd/
LogStatistics.h 63 static const size_t unordered_map_per_entry_overhead = sizeof(void*);
64 static const size_t unordered_map_bucket_overhead = sizeof(void*);
72 size_t sizeOf() const {
73 return sizeof(*this) +
74 (size() * (sizeof(TEntry) + unordered_map_per_entry_overhead)) +
75 (bucket_size() * sizeof(size_t) + unordered_map_bucket_overhead);
90 memset(retval, 0, sizeof(*retval) * len);
111 num * sizeof(retval[0]));
569 return alloc ? alloc->length() + 1 + sizeof(std::string) : 0;
710 size_t sizeOf() const
    [all...]
  /prebuilts/tools/common/bazel/formc-deps/
jgoodies-forms.jar 
  /prebuilts/sdk/current/androidx/m2repository/androidx/collection/collection/1.0.0-alpha1/
collection-1.0.0-alpha1.jar 
  /prebuilts/sdk/current/support/m2repository/com/android/support/collections/28.0.0/
collections-28.0.0.jar 
  /prebuilts/tools/common/fest/
fest-assert-1.2.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.director_2.3.0.v20130526-0335.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/24.4.0-beta3/
perflib-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/24.4.0-beta6/
perflib-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/24.5.0/
perflib-24.5.0.jar 

Completed in 300 milliseconds

1 2 3 4 5 6