Searched refs:num (Results 276 - 300 of 1130) sorted by relevance

<<11121314151617181920>>

/external/openssl/crypto/evp/
H A Dbio_md.c68 static int md_write(BIO *h, char const *buf, int num);
172 static long md_ctrl(BIO *b, int cmd, long num, void *ptr) argument
190 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
214 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
232 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
H A Dbio_enc.c65 static int enc_write(BIO *h, const char *buf, int num);
286 static long enc_ctrl(BIO *b, int cmd, long num, void *ptr) argument
303 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
309 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
314 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
319 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
346 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
353 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
370 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
/external/qemu/slirp/
H A Dsbuf.c27 sbdrop(struct sbuf *sb, int num) argument
33 if(num > sb->sb_cc)
34 num = sb->sb_cc;
35 sb->sb_cc -= num;
36 sb->sb_rptr += num;
/external/qemu/slirp-android/
H A Dsbuf.c27 sbdrop(struct sbuf *sb, int num) argument
33 if(num > sb->sb_cc)
34 num = sb->sb_cc;
35 sb->sb_cc -= num;
36 sb->sb_rptr += num;
/external/bison/src/
H A Dlalr.c92 for (i = sp->num - 1; i >= 0 && TRANSITION_IS_GOTO (sp, i); --i)
126 for (i = sp->num - 1; i >= 0 && TRANSITION_IS_GOTO (sp, i); --i)
189 for (; j < sp->num; j++)
352 if (rp->num > 1
353 || (rp->num == 1 && sp->num &&
355 n_look_ahead_tokens += rp->num;
359 for (k = 0; k < sp->num; k++)
422 for (k = 0; k < reds->num; ++k)
430 for (j = 0; j < reds->num;
[all...]
/external/icu4c/tools/genrb/
H A Drle.c92 #define APPEND( buffer, bufLimit, value, num, status){ \
98 num++; \
107 int32_t num=0; local
112 APPEND(buffer,bufLimit,ESCAPE, num, status);
115 APPEND(buffer,bufLimit,value,num, status);
121 APPEND(buffer,bufLimit,ESCAPE,num,status);
124 APPEND(buffer,bufLimit,value,num,status);
127 APPEND(buffer,bufLimit,ESCAPE,num,status);
128 APPEND(buffer,bufLimit,(uint16_t) length, num,status);
129 APPEND(buffer,bufLimit,(uint16_t)value, num, statu
[all...]
/external/openssl/crypto/asn1/
H A Da_object.c86 int a2d_ASN1_OBJECT(unsigned char *out, int olen, const char *buf, int num) argument
95 if (num == 0)
97 else if (num == -1)
98 num=strlen(buf);
102 num--;
113 if (num <= 0)
119 num--;
122 if (num <= 0) break;
132 if (num <= 0) break;
133 num
[all...]
/external/svox/pico/lib/
H A Dpicokfst.c78 /* Converts 'nrBytes' bytes starting at position '*pos' in byte stream 'stream' into unsigned number 'num'.
80 static void FixedBytesToUnsignedNum (picoos_uint8 * stream, picoos_uint8 nrBytes, picoos_uint32 * pos, picoos_uint32 * num) argument
84 (*num) = 0;
86 (*num) = ((*num) << 8) + (picoos_uint32)stream[*pos];
92 /* Converts 'nrBytes' bytes starting at position '*pos' in byte stream 'stream' into signed number 'num'.
94 static void FixedBytesToSignedNum (picoos_uint8 * stream, picoos_uint8 nrBytes, picoos_uint32 * pos, picoos_int32 * num) argument
106 (*num) = -((picoos_int32)((val - 1) / 2)) - 1;
109 (*num) = val / 2;
115 into (signed) number 'num'
116 BytesToNum(picoos_uint8 * stream, picoos_uint32 * pos, picoos_int32 * num) argument
[all...]
/external/zlib/src/examples/
H A Denough.c114 /* The array for saving results, num[], is indexed with this triplet:
148 to the num[] array as described above for the (syms, left, len) triplet.
170 local size_t size; /* number of elements in num and done */
172 local big_t *num; /* saved results array for code counting */ variable
175 /* Index function for num[] and done[] */
178 /* Free allocated space. Uses globals code, num, and done. */
189 if (num != NULL)
190 free(num);
198 Keep a record of previous results in num to prevent repeating the same
199 calculation. Uses the globals max and num
[all...]
/external/astl/include/
H A Dvector80 // @param num The number of elements to create.
82 explicit vector(const size_type num, const value_type& init_value = value_type());
189 void repeat_initialize(const size_type num,
205 void initialize(_Integral num, _Integral init_value, true_type) {
206 repeat_initialize((size_type)num, init_value);
251 vector<_T>::vector(const size_type num, const value_type& init_value)
253 repeat_initialize(num, init_value);
257 void vector<_T>::repeat_initialize(const size_type num,
260 if (num < max_size())
262 mBegin = static_cast<pointer>(malloc(num * sizeo
[all...]
/external/e2fsprogs/lib/e2p/
H A Dls.c59 int hr, min, num; local
67 num = secs / MONTH_INT;
68 secs -= num*MONTH_INT;
69 sprintf(buf, "%d month%s", num, (num>1) ? "s" : "");
72 num = secs / WEEK_INT;
73 secs -= num*WEEK_INT;
75 num, (num>1) ? "s" : "");
79 num
[all...]
/external/openssl/apps/
H A Dengine.c197 int num; local
205 ((num = ENGINE_ctrl(e, ENGINE_CTRL_GET_FIRST_CMD_TYPE,
221 if((flags = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, num,
227 if((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_LEN_FROM_CMD, num,
232 if(ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_FROM_CMD, num, name,
236 if((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_LEN_FROM_CMD, num,
243 if(ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_FROM_CMD, num, desc,
280 num = ENGINE_ctrl(e, ENGINE_CTRL_GET_NEXT_CMD_TYPE,
281 num, NULL, NULL);
282 } while(num >
296 int loop, res, num = sk_OPENSSL_STRING_num(cmds); local
[all...]
/external/e2fsprogs/e2fsck/
H A Dprofile_helpers.c44 int num; member in struct:profile_string_list
53 list->num = 0;
81 list->num = list->max = 0;
93 if (list->num+1 >= list->max) {
102 list->list[list->num++] = str;
103 list->list[list->num] = 0;
164 if (values.num == 0) {
/external/llvm/lib/Analysis/
H A DPathProfileVerifier.cpp185 unsigned num = pathProfileInfo.argList.size(); local
189 fwrite(&num,sizeof(unsigned),1,edgeFile);
190 fwrite(pathProfileInfo.argList.c_str(),1,num,edgeFile);
191 if (num&3)
192 fwrite(&zeros, 1, 4-(num&3), edgeFile);
195 num = edgeArray.size();
197 fwrite(&num,sizeof(unsigned),1,edgeFile);
/external/opencv/cvaux/src/
H A Ddecomppoly.cpp141 int num,
149 int currentNum = num;
160 if( num <= 2 ) {
164 pointExist = ( int* )malloc( num * sizeof( int ) );
166 for( i = 0; i < num; i ++ ) {
170 for( i = 0; i < num; i ++ ) {
172 if( i != num - 1 ) {
179 } // for( i = 0; i < num; i ++ )
204 for( i = 0; i < num; i ++ )
206 if( i != num
[all...]
/external/openssl/crypto/
H A Dsparcv9cap.c17 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num) argument
19 int bn_mul_mont_fpu(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num);
20 int bn_mul_mont_int(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num);
22 if (num>=8 && !(num&1) &&
25 return bn_mul_mont_fpu(rp,ap,bp,np,n0,num);
27 return bn_mul_mont_int(rp,ap,bp,np,n0,num);
/external/quake/quake/src/QW/client/
H A Dd_surf.c234 // if the num is not a power of 2, assume it will not repeat
236 int MaskForNum (int num) argument
238 if (num==128)
240 if (num==64)
242 if (num==32)
244 if (num==16)
249 int D_log2 (int num) argument
255 while (num>>=1)
/external/quake/quake/src/WinQuake/
H A Dd_surf.cpp231 // if the num is not a power of 2, assume it will not repeat
233 int MaskForNum (int num) argument
235 if (num==128)
237 if (num==64)
239 if (num==32)
241 if (num==16)
246 int D_log2 (int num) argument
252 while (num>>=1)
H A Dnet_mp.cpp198 int num; local
214 num = 0;
218 num = num*10 + *b++ - '0';
224 if (num < 0 || num > 255)
227 addr = (addr<<8) + num;
/external/skia/src/images/
H A Dbmpdecoderhelper.cpp189 int num = 0; local
193 if (num & 1) {
200 num++;
226 int num = 0; local
230 if (bpp_ == 8 || !(num & 1)) {
236 if (num & 1) {
245 num++;
/external/tcpdump/
H A Dprint-cdp.c239 int pt, pl, al, num; local
248 num = EXTRACT_32BITS(p);
251 while (p < endp && num >= 0) {
276 num,
295 num,
322 num--;
323 if (num)
/external/bison/lib/
H A Dbitset.h94 bitset_bindex num; member in struct:__anon315
315 for (ITER.next = (MIN), ITER.num = BITSET_LIST_SIZE; \
316 (ITER.num == BITSET_LIST_SIZE) \
317 && (ITER.num = bitset_list (BSET, ITER.list, \
320 ITER.i < ITER.num && ((INDEX) = ITER.list[ITER.i], 1); \
337 for (ITER.next = (MIN), ITER.num = BITSET_LIST_SIZE; \
338 (ITER.num == BITSET_LIST_SIZE) \
339 && (ITER.num = bitset_list_reverse (BSET, ITER.list, \
342 ITER.i < ITER.num && ((INDEX) = ITER.list[ITER.i], 1); \
/external/chromium/net/udp/
H A Dudp_socket_win.cc308 DWORD num; local
310 int rv = WSARecvFrom(socket_, &read_buffer, 1, &num, &flags, addr,
320 base::MemoryDebug::MarkAsInitialized(read_buffer.buf, num);
321 if (!ProcessSuccessfulRead(num, address))
323 return static_cast<int>(num);
354 DWORD num; local
356 int rv = WSASendTo(socket_, &write_buffer, 1, &num, flags,
360 ProcessSuccessfulWrite(num);
361 return static_cast<int>(num);
/external/openssl/crypto/bn/asm/
H A Dx86_64-mont5.pl39 $num="%r9"; # int num,
59 test \$3,${num}d
61 cmp \$8,${num}d
67 mov ${num}d,${num}d
84 lea 2($num),%r11
86 lea (%rsp,%r11,8),%rsp # tp=alloca(8*(num+2))
89 mov %rax,8(%rsp,$num,8) # tp[num
[all...]
/external/openssl/crypto/pkcs7/
H A Dbio_ber.c65 static int ber_write(BIO *h,char *buf,int num);
328 static long ber_ctrl(BIO *b, int cmd, long num, char *ptr) argument
344 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
350 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
355 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
360 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
390 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
397 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
408 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);

Completed in 509 milliseconds

<<11121314151617181920>>