Searched defs:num_ (Results 1 - 2 of 2) sorted by relevance

/external/openssl/crypto/bio/
H A Dbss_bio.c318 static ssize_t bio_nread(BIO *bio, char **buf, size_t num_) argument
323 if (num_ > SSIZE_MAX)
326 num = (ssize_t)num_;
352 static int bio_write(BIO *bio, const char *buf, int num_) argument
354 size_t num = num_;
479 static ssize_t bio_nwrite(BIO *bio, char **buf, size_t num_) argument
484 if (num_ > SSIZE_MAX)
487 num = (ssize_t)num_;
/external/v8/src/
H A Dast.h186 Expression() : num_(kNoLabel), def_(NULL), defined_vars_(NULL) {}
214 int num() { return num_; }
217 void set_num(int n) { num_ = n; }
230 int num_; member in class:v8::internal::Expression

Completed in 51 milliseconds