Searched refs:num_ (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsyscall_iterator.cc13 return num_;
18 // |num_| has been initialized to 0, which we assume is also MIN_SYSCALL.
22 val = num_;
26 if (num_ <= MAX_PUBLIC_SYSCALL) {
27 if (invalid_only_ && num_ < MAX_PUBLIC_SYSCALL) {
28 num_ = MAX_PUBLIC_SYSCALL;
30 ++num_;
36 } else if (num_ < MIN_PRIVATE_SYSCALL - 1) {
37 num_ = MIN_PRIVATE_SYSCALL - 1;
38 } else if (num_ <
[all...]
H A Dsyscall_iterator.h37 num_(0) {}
48 uint32_t num_; member in class:playground2::SyscallIterator
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dhistogram.cc36 num_ = 0;
53 num_++;
61 num_ += other.num_;
74 double threshold = num_ * (p / 100.0);
95 if (num_ == 0.0) return 0;
96 return sum_ / num_;
100 if (num_ == 0.0) return 0;
101 double variance = (sum_squares_ * num_ - sum_ * sum_) / (num_ * num
[all...]
H A Dhistogram.h26 double num_; member in class:leveldb::Histogram
/external/qemu/android/utils/
H A Dvector.h20 unsigned num_##name; \
24 (obj)->num_##name
29 (obj)->num_##name = 0; \
36 (obj)->num_##name = 0; \
43 (obj)->num_##name = 0; \
49 (obj)->num_##name = 0; \
76 unsigned __vector_max = (obj)->num_##name; \
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
H A Drbug_screen.h73 scr->num_##name++; \
81 scr->num_##name--; \
/external/mesa3d/src/gallium/drivers/rbug/
H A Drbug_screen.h73 scr->num_##name++; \
81 scr->num_##name--; \
/external/chromium_org/third_party/leveldatabase/src/doc/bench/
H A Ddb_bench_tree_db.cc136 int num_;
158 fprintf(stdout, "Entries: %d\n", num_);
160 ((static_cast<int64_t>(kKeySize + FLAGS_value_size) * num_)
163 (((kKeySize + FLAGS_value_size * FLAGS_compression_ratio) * num_)
293 num_(FLAGS_num),
340 Write(write_sync, SEQUENTIAL, FRESH, num_, FLAGS_value_size, 1);
343 Write(write_sync, RANDOM, FRESH, num_, FLAGS_value_size, 1);
346 Write(write_sync, RANDOM, EXISTING, num_, FLAGS_value_size, 1);
350 Write(write_sync, RANDOM, FRESH, num_ / 100, FLAGS_value_size, 1);
354 Write(write_sync, SEQUENTIAL, FRESH, num_ / 10
[all...]
H A Ddb_bench_sqlite3.cc167 int num_;
186 fprintf(stdout, "Entries: %d\n", num_);
188 ((static_cast<int64_t>(kKeySize + FLAGS_value_size) * num_)
318 num_(FLAGS_num),
365 Write(write_sync, SEQUENTIAL, FRESH, num_, FLAGS_value_size, 1);
368 Write(write_sync, SEQUENTIAL, FRESH, num_, FLAGS_value_size, 1000);
371 Write(write_sync, RANDOM, FRESH, num_, FLAGS_value_size, 1);
374 Write(write_sync, RANDOM, FRESH, num_, FLAGS_value_size, 1000);
377 Write(write_sync, RANDOM, EXISTING, num_, FLAGS_value_size, 1);
380 Write(write_sync, RANDOM, EXISTING, num_, FLAGS_value_siz
[all...]
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dfilter_block.cc83 num_(0),
92 num_ = (n - 5 - last_word) / 4;
97 if (index < num_) {
H A Dfilter_block.h62 size_t num_; // Number of entries in offset array member in class:leveldb::FilterBlockReader
/external/chromium_org/tools/traceline/traceline/
H A Dassembler.h103 num_ = 0;
106 bool is_unused() const { return num_ == 0; }
107 bool is_bound() const { return num_ == -1; }
108 bool is_linked() const { return num_ > 0; }
117 return num_; // Will return 0 if unused.
122 ASSERT(i < num_);
130 num_ = -1;
134 ASSERT(num_ < kTableSize);
136 table_[num_] = pos;
137 ++num_;
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dmessagequeue.h141 // with the same trigger time are processed in num_ (FIFO) order.
146 : cmsDelay_(delay), msTrigger_(trigger), num_(num), msg_(msg) { }
150 || ((dmsg.msTrigger_ == msTrigger_) && (dmsg.num_ < num_));
155 uint32 num_; member in class:talk_base::DelayedMessage
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dmessagequeue.h154 // with the same trigger time are processed in num_ (FIFO) order.
159 : cmsDelay_(delay), msTrigger_(trigger), num_(num), msg_(msg) { }
163 || ((dmsg.msTrigger_ == msTrigger_) && (dmsg.num_ < num_));
168 uint32 num_; member in class:talk_base::DelayedMessage
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_bench.cc307 int num_; member in class:leveldb::__anon11246::RandomGenerator::Benchmark
321 fprintf(stdout, "Entries: %d\n", num_);
323 ((static_cast<int64_t>(kKeySize + FLAGS_value_size) * num_)
326 (((kKeySize + FLAGS_value_size * FLAGS_compression_ratio) * num_)
395 num_(FLAGS_num),
435 num_ = FLAGS_num;
460 num_ /= 1000;
465 num_ /= 1000;
714 if (num_ != FLAGS_num) {
716 snprintf(msg, sizeof(msg), "(%d ops)", num_);
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/bio/
H A Dbss_bio.c318 static ossl_ssize_t bio_nread(BIO *bio, char **buf, size_t num_) argument
323 if (num_ > SSIZE_MAX)
326 num = (ossl_ssize_t)num_;
352 static int bio_write(BIO *bio, const char *buf, int num_) argument
354 size_t num = num_;
479 static ossl_ssize_t bio_nwrite(BIO *bio, char **buf, size_t num_) argument
484 if (num_ > SSIZE_MAX)
487 num = (ossl_ssize_t)num_;
/external/openssl/crypto/bio/
H A Dbss_bio.c318 static ossl_ssize_t bio_nread(BIO *bio, char **buf, size_t num_) argument
323 if (num_ > SSIZE_MAX)
326 num = (ossl_ssize_t)num_;
352 static int bio_write(BIO *bio, const char *buf, int num_) argument
354 size_t num = num_;
479 static ossl_ssize_t bio_nwrite(BIO *bio, char **buf, size_t num_) argument
484 if (num_ > SSIZE_MAX)
487 num = (ossl_ssize_t)num_;
/external/freetype/src/cff/
H A Dcffparse.c719 FT_FIELD_OFFSET( num_ ## name ) \
763 FT_FIELD_OFFSET( num_ ## name ), \
855 clazz[i].count_offset = FT_FIELD_OFFSET( num_ ## name_ ); \
904 clazz[i].count_offset = FT_FIELD_OFFSET( num_ ## name_ ); \
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffparse.c642 FT_FIELD_OFFSET( num_ ## name ) \
717 clazz[i].count_offset = FT_FIELD_OFFSET( num_ ## name_ ); \
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dpsaux.h270 FT_FIELD_OFFSET( num_ ## _fname ), \
/external/freetype/include/freetype/internal/
H A Dpsaux.h274 FT_FIELD_OFFSET( num_ ## _fname ), \

Completed in 671 milliseconds