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

  /external/skia/tools/skqp/
upload_model 11 BUCKET=skia-skqp-assets
14 gsutil ls gs://$BUCKET/ | sed "s|^gs://$BUCKET/||" > "$EXTANT"
19 URL="gs://${BUCKET}/$MD5"
25 size() { gsutil du -s gs://$BUCKET | awk '{print $1}'; }
60 printf 'Added %d bytes to %s, %d%%\n' $D $BUCKET $(( $D * 100 / $SIZE ))
make_apk_list.py 37 BUCKET = 'skia-skqp'
42 cmd = ['gsutil', 'ls', 'gs://' + BUCKET]
49 regex = re.compile('gs://%s/%s' % (BUCKET, NAME_FMT % '([0-9a-f]+)'))
86 url = 'https://storage.googleapis.com/%s/%s' % (BUCKET, apk_name)
  /external/skqp/tools/skqp/
upload_model 11 BUCKET=skia-skqp-assets
14 gsutil ls gs://$BUCKET/ | sed "s|^gs://$BUCKET/||" > "$EXTANT"
19 URL="gs://${BUCKET}/$MD5"
25 size() { gsutil du -s gs://$BUCKET | awk '{print $1}'; }
60 printf 'Added %d bytes to %s, %d%%\n' $D $BUCKET $(( $D * 100 / $SIZE ))
make_apk_list.py 37 BUCKET = 'skia-skqp'
42 cmd = ['gsutil', 'ls', 'gs://' + BUCKET]
49 regex = re.compile('gs://%s/%s' % (BUCKET, NAME_FMT % '([0-9a-f]+)'))
86 url = 'https://storage.googleapis.com/%s/%s' % (BUCKET, apk_name)
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
rdtsc_buckets_shared.h 35 struct BUCKET
42 BUCKET* pParent{ nullptr };
43 std::vector<BUCKET> children;
48 // name of bucket, used in reports
51 // description of bucket, used in threadviz
57 // threadviz color of bucket, in RGBA8_UNORM format
70 // root of the bucket hierarchy for this thread
71 BUCKET root;
73 // currently executing bucket somewhere in the hierarchy
74 BUCKET* pCurrent{ nullptr }
    [all...]
rdtsc_buckets.cpp 79 void BucketManager::PrintBucket(FILE* f, UINT level, uint64_t threadCycles, uint64_t parentCycles, const BUCKET& bucket)
93 // compute percent of total cycles used by this bucket
94 float percentTotal = (float)((double)bucket.elapsed / (double)threadCycles * 100.0);
96 // compute percent of parent cycles used by this bucket
97 float percentParent = (float)((double)bucket.elapsed / (double)parentCycles * 100.0);
100 uint64_t CPE = bucket.elapsed / bucket.count;
102 BUCKET_DESC &desc = mBuckets[bucket.id];
113 bucket.elapsed,
    [all...]
rdtsc_buckets.h 45 /// functionality. There can be one or many bucket managers active
47 /// bucket information that have been registered to it.
74 /// Registers a new bucket type with the manager. Returns a unique
75 /// id which should be used in subsequent calls to start/stop the bucket
76 /// @param desc - description of the bucket
92 // wait for all threads to pop back to root bucket
111 // start a bucket
128 BUCKET &child = bt.pCurrent->children[id];
133 // update thread's currently executing bucket
141 // stop the currently executing bucket
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tdb.c 138 #define TDB_HASH_TOP(hash) (FREELIST_TOP + (BUCKET(hash)+1)*sizeof(tdb_off_t))
161 #define BUCKET(hash) ((hash) % tdb->header.hash_size)
747 return tdb_lock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK);
755 return tdb_lock_nonblock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK);
761 return tdb_lock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK | TDB_MARK_LOCK);
767 return tdb_unlock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK | TDB_MARK_LOCK);
772 return tdb_unlock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK);
777 return tdb_lock(tdb, BUCKET(tdb->hash_fn(&key)), F_RDLCK);
782 return tdb_unlock(tdb, BUCKET(tdb->hash_fn(&key)), F_RDLCK);
    [all...]
  /external/python/cpython3/Modules/
hashtable.c 57 #define TABLE_HEAD(HT, BUCKET) \
58 ((_Py_hashtable_entry_t *)_Py_SLIST_HEAD(&(HT)->buckets[BUCKET]))
415 size_t buckets_size, new_size, bucket; local
438 for (bucket = 0; bucket < old_num_buckets; bucket++) {
440 for (entry = BUCKETS_HEAD(old_buckets[bucket]); entry != NULL; entry = next) {
500 size_t bucket; local
511 for (bucket=0; bucket < src->num_buckets; bucket++)
    [all...]

Completed in 228 milliseconds