Searched refs:num (Results 226 - 250 of 1878) sorted by relevance

1234567891011>>

/external/kernel-headers/original/uapi/linux/dvb/
H A Dca.h30 int num; /* slot number */ member in struct:ca_slot_info
48 unsigned int num; /* number of available descramblers (keys) */ member in struct:ca_descr_info
/external/kernel-headers/original/uapi/linux/
H A Domapfb.h33 #define OMAP_IOW(num, dtype) _IOW('O', num, dtype)
34 #define OMAP_IOR(num, dtype) _IOR('O', num, dtype)
35 #define OMAP_IOWR(num, dtype) _IOWR('O', num, dtype)
36 #define OMAP_IO(num) _IO('O', num)
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/linux/
H A Dbitops.h65 int num = 0; local
69 num += 32;
74 num += 16;
78 num += 8;
82 num += 4;
86 num += 2;
90 num += 1;
91 return num;
/external/lldb/tools/lldb-perf/lib/
H A DTimer.cpp47 return (double)m_start.time_since_epoch().count() * (double)system_clock::period::num / (double)system_clock::period::den;
53 return (double)m_stop.time_since_epoch().count() * (double)system_clock::period::num / (double)system_clock::period::den;
/external/openssl/apps/
H A Drand.c73 * num - write 'num' bytes
87 int num = -1; local
144 if (num < 0)
146 r = sscanf(argv[i], "%d", &num);
147 if (r == 0 || num < 0)
160 if (num < 0)
165 BIO_printf(bio_err, "Usage: rand [options] num\n");
212 while (num > 0)
217 chunk = num;
[all...]
/external/openssl/crypto/rand/
H A Drand_lib.c147 void RAND_seed(const void *buf, int num) argument
151 meth->seed(buf,num);
154 void RAND_add(const void *buf, int num, double entropy) argument
158 meth->add(buf,num,entropy);
161 int RAND_bytes(unsigned char *buf, int num) argument
165 return meth->bytes(buf,num);
169 int RAND_pseudo_bytes(unsigned char *buf, int num) argument
173 return meth->pseudorand(buf,num);
/external/openssl/crypto/rc2/
H A Drc2.h94 int *num, int enc);
97 int *num);
/external/openssl/crypto/x509/
H A Dx509_obj.c70 int n,lold,l,l1,l2,num,j,type; local
115 num=ne->value->length;
125 (num > sizeof ebcdic_buf)
126 ? sizeof ebcdic_buf : num);
131 if ((type == V_ASN1_GENERALSTRING) && ((num%4) == 0))
134 for (j=0; j<num; j++)
148 for (l2=j=0; j<num; j++)
181 for (j=0; j<num; j++)
/external/openssl/include/openssl/
H A Drc2.h94 int *num, int enc);
97 int *num);
/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dconnect.c96 /* the file descriptor is kept in bio->num in order to match the socket
166 &bio->num, &c->them, &c->them_length, c->param_hostname,
177 if (!bio_socket_nbio(bio->num, 1)) {
186 ret = setsockopt(bio->num, SOL_SOCKET, SO_KEEPALIVE, (char *)&i,
196 ret = connect(bio->num, (struct sockaddr*) &c->them, c->them_length);
215 i = bio_sock_error(bio->num);
288 bio->num = -1;
297 if (bio->num == -1) {
303 shutdown(bio->num, 2);
305 close(bio->num);
371 conn_ctrl(BIO *bio, int cmd, long num, void *ptr) argument
[all...]
H A Dfile.c214 static long file_ctrl(BIO *b, int cmd, long num, void *ptr) { argument
222 num = 0;
224 ret = (long)fseek(fp, num, 0);
235 b->shutdown = (int)num & BIO_CLOSE;
241 b->shutdown = (int)num & BIO_CLOSE;
242 if (num & BIO_FP_APPEND) {
243 if (num & BIO_FP_READ) {
248 } else if ((num & BIO_FP_READ) && (num & BIO_FP_WRITE)) {
250 } else if (num
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
H A Darmv4-mont.pl44 $num="r0"; # starts as num argument, but holds &tp[num-1]
61 #### argument block layout relative to &tp[num-1], a.k.a. $num
62 $_rp="$num,#12*4";
64 $_bp="$num,#13*4";
66 $_n0="$num,#14*4";
67 $_num="$num,#15*4"; $_bpend=$_num;
87 ldr ip,[sp,#4] @ load num
[all...]
/external/openssl/crypto/bn/asm/
H A Darmv4-mont.pl44 $num="r0"; # starts as num argument, but holds &tp[num-1]
61 #### argument block layout relative to &tp[num-1], a.k.a. $num
62 $_rp="$num,#12*4";
64 $_bp="$num,#13*4";
66 $_n0="$num,#14*4";
67 $_num="$num,#15*4"; $_bpend=$_num;
86 ldr ip,[sp,#4] @ load num
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncCeiling.java45 return new XNumber(Math.ceil(m_arg0.execute(xctxt).num()));
H A DFuncFloor.java45 return new XNumber(java.lang.Math.floor(m_arg0.execute(xctxt).num()));
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXNull.java70 public double num() method in class:XNull
/external/libnfc-nci/src/adaptation/
H A DNfcAdaptation.cpp118 unsigned long num; local
120 if ( GetNumValue ( NAME_USE_RAW_NCI_TRACE, &num, sizeof ( num ) ) )
122 if (num == 1)
133 if ( GetNumValue ( NAME_PROTOCOL_TRACE_LEVEL, &num, sizeof ( num ) ) )
134 ScrProtocolTraceFlag = num;
139 if ( GetNumValue ( NAME_NFA_MAX_EE_SUPPORTED, &num, sizeof ( num ) ) )
141 nfa_ee_max_ee_cfg = num;
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dparse-events-bison.h70 u64 num; member in union:YYSTYPE
/external/opencv/cvaux/src/
H A Dcvprewarp.cpp99 int num; local
116 num = 1;
127 num++;
134 num_runs[epiLine] = num;
/external/pcre/dist/
H A Dpcre_string_utils.c151 num size of the string
157 PRIV(strncmp_uc_uc)(const pcre_uchar *str1, const pcre_uchar *str2, unsigned int num) argument
162 while (num-- > 0)
174 PRIV(strncmp_uc_c8)(const pcre_uchar *str1, const char *str2, unsigned int num) argument
180 while (num-- > 0)
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Daes.h108 * bytes from |in| to |out|. The |num| parameter must be set to zero on the
114 unsigned int *num);
128 * bytes from |in| to |out|. The |num| parameter must be set to zero on the
132 uint8_t *ivec, int *num);
135 * bytes from |in| to |out|. The |num| parameter must be set to zero on the
139 uint8_t *ivec, int *num, int enc);
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Drbutil.c70 int32_t num = 0; local
101 num= (pad>=length) ? pad :length;
105 for (j = 0; j < (num / 2); j++){
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dtestharness.cc39 int num = 0; local
53 ++num;
56 fprintf(stderr, "==== PASSED %d tests\n", num);
/external/icu/icu4c/source/tools/genrb/
H A Drbutil.c70 int32_t num = 0; local
101 num= (pad>=length) ? pad :length;
105 for (j = 0; j < (num / 2); j++){
/external/llvm/tools/bugpoint/
H A DFindBugs.cpp50 unsigned num = 1; local
72 outs() << "Combination " << num << " optimized successfully!\n";
110 num++;

Completed in 4787 milliseconds

1234567891011>>