HomeSort by relevance Sort by last modified time
    Searched full:num_ (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/sandbox/linux/seccomp-bpf/
syscall_iterator.cc 14 return num_;
19 // |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_ <= MAX_PRIVATE_SYSCALL)
    [all...]
syscall_iterator.h 37 : invalid_only_(invalid_only), done_(false), num_(0) {}
48 uint32_t num_; member in class:sandbox::SyscallIterator
  /external/qemu/android/utils/
vector.h 20 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/leveldatabase/src/util/
histogram.cc 36 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...]
histogram.h 26 double num_; member in class:leveldb::Histogram
  /external/chromium_org/third_party/leveldatabase/src/doc/bench/
db_bench_tree_db.cc 136 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_ / 100, FLAGS_value_size, 1)
    [all...]
db_bench_sqlite3.cc 167 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_size, 1000)
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/table/
filter_block.cc 83 num_(0),
92 num_ = (n - 5 - last_word) / 4;
97 if (index < num_) {
filter_block.h 62 size_t num_; // Number of entries in offset array member in class:leveldb::FilterBlockReader
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
rbug_screen.h 73 scr->num_##name++; \
81 scr->num_##name--; \
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_screen.h 73 scr->num_##name++; \
81 scr->num_##name--; \
  /external/chromium_org/tools/traceline/traceline/
assembler.h 103 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/
messagequeue.h 141 // 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/
messagequeue.h 164 // with the same trigger time are processed in num_ (FIFO) order.
169 : cmsDelay_(delay), msTrigger_(trigger), num_(num), msg_(msg) { }
173 || ((dmsg.msTrigger_ == msTrigger_) && (dmsg.num_ < num_));
178 uint32 num_; member in class:talk_base::DelayedMessage
  /external/chromium_org/third_party/leveldatabase/src/db/
db_bench.cc 307 int num_; member in class:leveldb::__anon11686::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/
bss_bio.c 318 static ossl_ssize_t bio_nread(BIO *bio, char **buf, size_t num_)
323 if (num_ > SSIZE_MAX)
326 num = (ossl_ssize_t)num_;
352 static int bio_write(BIO *bio, const char *buf, int num_)
354 size_t num = num_;
479 static ossl_ssize_t bio_nwrite(BIO *bio, char **buf, size_t num_)
484 if (num_ > SSIZE_MAX)
487 num = (ossl_ssize_t)num_;
  /external/openssl/crypto/bio/
bss_bio.c 318 static ossl_ssize_t bio_nread(BIO *bio, char **buf, size_t num_)
323 if (num_ > SSIZE_MAX)
326 num = (ossl_ssize_t)num_;
352 static int bio_write(BIO *bio, const char *buf, int num_)
354 size_t num = num_;
479 static ossl_ssize_t bio_nwrite(BIO *bio, char **buf, size_t num_)
484 if (num_ > SSIZE_MAX)
487 num = (ossl_ssize_t)num_;
  /external/chromium_org/third_party/re2/re2/
make_perl_groups.pl 91 print "int num_${cname}_groups = $count;\n";
  /external/regex-re2/re2/
make_perl_groups.pl 91 print "int num_${cname}_groups = $count;\n";
  /external/chromium_org/chromeos/ime/
ibus_keymap.cc 245 case 0x007d: return ""; // UsbKeyCode: 0x070067(Num_=)
246 case 0x007e: return ""; // UsbkeyCode: 0x0700d7(Num_+-)
  /external/chromium_org/third_party/freetype/src/cff/
cffparse.c 719 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/freetype/src/cff/
cffparse.c 719 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/libva/va/
va_vpp.h 719 * If non-NULL, the corresponding \c num_* fields shall be filled in on
721 * the actual number of elements will be overwritten into the \c num_*
723 * and \c num_* fields are adjusted to the number of elements that would
  /external/chromium_org/third_party/freetype/include/freetype/internal/
psaux.h 274 FT_FIELD_OFFSET( num_ ## _fname ), \
    [all...]
  /external/freetype/include/freetype/internal/
psaux.h 274 FT_FIELD_OFFSET( num_ ## _fname ), \
    [all...]

Completed in 632 milliseconds

1 2