Searched refs:num (Results 151 - 175 of 1878) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
H A Dco-586.pl107 local($name,$num)=@_;
124 $tot=$num+$num-1;
163 $na=$as+($i < ($num-1));
164 $nb=$bs+($i >= ($num-1));
178 $as++ if ($i < ($num-1));
179 $ae++ if ($i >= ($num-1));
181 $bs++ if ($i >= ($num-1));
182 $be++ if ($i < ($num-1));
198 local($name,$num)
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Ddenseranges.cpp135 int32_t num; local
136 for(i=0, num=2;; ++i, ++num) {
143 if(length>num*2 && length>=(density*maxLength)/0x100) {
147 // Use the num ranges with the num-1 largest gaps.
148 gaps.truncate(num-1);
150 for(i=0; i<=num-2; ++i) {
156 ranges[num-1][1]=maxValue;
157 return num;
[all...]
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dlogging.h21 // Append a human-readable printout of "num" to *str
22 extern void AppendNumberTo(std::string* str, uint64_t num);
28 // Return a human-readable printout of "num"
29 extern std::string NumberToString(uint64_t num);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dmemory_pool.h52 * and reserved counters to accomodate up to num new element.
66 #define memory_pool_array_reserve(pool, type, array, size, reserved, num) do { \
67 unsigned int _num = (num); \
/external/chromium_org/third_party/webrtc/modules/video_processing/main/source/
H A Dvideo_decimator.cc125 int32_t num = 0; local
127 for (num = 1; num < (kFrameCountHistory_size - 1); num++) {
129 if (incoming_frame_times_[num] <= 0 ||
130 now - incoming_frame_times_[num] > kFrameHistoryWindowMs) {
136 if (num > 1) {
137 int64_t diff = now - incoming_frame_times_[num-1];
/external/cmockery/cmockery_0_1_2/src/example/
H A Dallocate_module.c25 #define calloc(num, size) _test_calloc(num, size, __FILE__, __LINE__)
/external/icu/icu4c/source/tools/toolutil/
H A Ddenseranges.cpp135 int32_t num; local
136 for(i=0, num=2;; ++i, ++num) {
143 if(length>num*2 && length>=(density*maxLength)/0x100) {
147 // Use the num ranges with the num-1 largest gaps.
148 gaps.truncate(num-1);
150 for(i=0; i<=num-2; ++i) {
156 ranges[num-1][1]=maxValue;
157 return num;
[all...]
/external/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.virtuals/
H A DAndroid.mk17 test_makefile := external/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.virtuals/Android.mk
19 test_name := localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.virtuals/tested_elsewhere
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dhelp.h13 static inline void mput_char(char c, unsigned int num) argument
15 while(num--)
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dmemory_pool.h52 * and reserved counters to accomodate up to num new element.
66 #define memory_pool_array_reserve(pool, type, array, size, reserved, num) do { \
67 unsigned int _num = (num); \
/external/openssl/crypto/bn/asm/
H A Dco-586.pl107 local($name,$num)=@_;
124 $tot=$num+$num-1;
163 $na=$as+($i < ($num-1));
164 $nb=$bs+($i >= ($num-1));
178 $as++ if ($i < ($num-1));
179 $ae++ if ($i >= ($num-1));
181 $bs++ if ($i >= ($num-1));
182 $be++ if ($i < ($num-1));
198 local($name,$num)
[all...]
H A Dx86-mont.pl47 $num="ebx";
60 &mov ("edi",&wparam(5)); # int num
69 &lea ("esp",&DWP(-$frame,"esp","edi",4)); # alloca($frame+4*(num+2))
94 #&mov ("edi",&DWP(5*4,"esi"));# int num
102 &lea ($num,&DWP(-3,"edi")); # num=num-1 to assist modulo-scheduling
103 #&mov ($_num,$num); # redundant as $num is not reused
168 &cmp ($j,$num);
[all...]
/external/openssl/crypto/bn/asm/x86/
H A Dcomba.pl95 local($name,$num)=@_;
112 $tot=$num+$num-1;
151 $na=$as+($i < ($num-1));
152 $nb=$bs+($i >= ($num-1));
166 $as++ if ($i < ($num-1));
167 $ae++ if ($i >= ($num-1));
169 $bs++ if ($i >= ($num-1));
170 $be++ if ($i < ($num-1));
186 local($name,$num)
[all...]
/external/openssl/crypto/lhash/
H A Dlh_stats.c102 unsigned int i,num; local
106 for (n=lh->b[i],num=0; n != NULL; n=n->next)
107 num++;
108 fprintf(out,"node %6u -> %3u\n",i,num);
115 unsigned long num; local
121 for (n=lh->b[i],num=0; n != NULL; n=n->next)
122 num++;
123 if (num != 0)
126 total+=num;
211 unsigned int i,num; local
224 unsigned long num; local
[all...]
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_Module.h16 virtual void *JBig2_Malloc2(FX_DWORD num, FX_DWORD dwSize) = 0;
18 virtual void *JBig2_Malloc3(FX_DWORD num, FX_DWORD dwSize, FX_DWORD dwSize2) = 0;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DPluralResourceLoader.java63 if (p.num == quantity) return p;
66 if (p.num == -1) return p;
78 final int num; field in class:PluralResourceLoader.Plural
84 num = 0;
86 num = 1;
88 num = 2;
90 num = -1;
92 num = -1;
/external/bison/src/
H A Dstate.c41 transitions_new (int num, state **the_states) argument
43 size_t states_size = num * sizeof *the_states;
45 res->num = num;
62 aver (j < shifts->num);
79 errs_new (int num, symbol **tokens) argument
81 size_t symbols_size = num * sizeof *tokens;
83 res->num = num;
101 reductions_new (int num, rul argument
203 state_transitions_set(state *s, int num, state **trans) argument
215 state_reductions_set(state *s, int num, rule **reds) argument
239 state_errs_set(state *s, int num, symbol **tokens) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/modes/
H A Dctr.c76 * contained in *num, and the encrypted counter is kept in ecount_buf. Both
77 * *num and ecount_buf must be initialised with zeros before the first call to
86 uint8_t ecount_buf[16], unsigned int *num,
91 assert(in && out && key && ecount_buf && num);
92 assert(*num < 16);
95 n = *num;
115 *num = n;
137 *num = n;
160 unsigned int *num, ctr128_f func) {
163 assert(in && out && key && ecount_buf && num);
84 CRYPTO_ctr128_encrypt(const uint8_t *in, uint8_t *out, size_t len, const void *key, uint8_t ivec[16], uint8_t ecount_buf[16], unsigned int *num, block128_f block) argument
156 CRYPTO_ctr128_encrypt_ctr32(const uint8_t *in, uint8_t *out, size_t len, const void *key, uint8_t ivec[16], uint8_t ecount_buf[16], unsigned int *num, ctr128_f func) argument
[all...]
/external/openssl/crypto/bio/
H A Dbss_sock.c74 static int sock_write(BIO *h, const char *buf, int num);
114 bi->num=0;
127 SHUTDOWN2(a->num);
142 ret=readsocket(b->num,out,outl);
158 ret=writesocket(b->num,in,inl);
168 static long sock_ctrl(BIO *b, int cmd, long num, void *ptr) argument
177 b->num= *((int *)ptr);
178 b->shutdown=(int)num;
185 if (ip != NULL) *ip=b->num;
186 ret=b->num;
[all...]
H A Dbf_lbuf.c65 static int linebuffer_write(BIO *h, const char *buf,int num);
150 int i,num=0,foundnl; local
189 num += p - in;
199 num += i;
216 if (i < 0) return((num > 0)?num:i);
217 if (i == 0) return(num);
242 if (i < 0) return((num > 0)?num:i);
243 if (i == 0) return(num);
266 linebuffer_ctrl(BIO *b, int cmd, long num, void *ptr) argument
[all...]
H A Dbss_file.c98 static int MS_CALLBACK file_write(BIO *h, const char *buf, int num);
208 bi->num=0;
273 static long MS_CALLBACK file_ctrl(BIO *b, int cmd, long num, void *ptr) argument
285 ret=(long)UP_fseek(b->ptr,num,0);
287 ret=(long)fseek(fp,num,0);
304 b->shutdown=(int)num&BIO_CLOSE;
320 UP_fsetmod(b->ptr,(char)((num&BIO_FP_TEXT)?'t':'b'));
326 if (num & BIO_FP_TEXT)
333 if (num & BIO_FP_TEXT)
340 if (num
[all...]
/external/openssl/crypto/modes/
H A Dctr128.c103 * 128bit block we have used is contained in *num, and the
104 * encrypted counter is kept in ecount_buf. Both *num and
117 unsigned int *num, block128_f block)
122 assert(in && out && key && ecount_buf && num);
123 assert(*num < 16);
125 n = *num;
158 *num = n;
173 *num=n;
193 unsigned int *num, ctr128_f func)
197 assert(in && out && key && ecount_buf && num);
114 CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], unsigned char ecount_buf[16], unsigned int *num, block128_f block) argument
190 CRYPTO_ctr128_encrypt_ctr32(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], unsigned char ecount_buf[16], unsigned int *num, ctr128_f func) argument
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Daddressmap-inl.h254 // Allocates a zeroed array of T with length "num". Also inserts
257 template <class T> T* New(int num) { argument
258 void* ptr = (*alloc_)(sizeof(Object) + num*sizeof(T));
259 memset(ptr, 0, sizeof(Object) + num*sizeof(T));
295 const Number num = reinterpret_cast<Number>(key); local
296 const Cluster* const c = FindCluster(num, false/*do not create*/);
298 for (Entry* e = c->blocks[BlockID(num)]; e != NULL; e = e->next) {
309 const Number num = reinterpret_cast<Number>(key); local
310 Cluster* const c = FindCluster(num, true/*create*/);
313 const int block = BlockID(num);
341 const Number num = reinterpret_cast<Number>(key); local
364 Number num = key_num; // we'll move this to move back through the clusters local
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Daddressmap-inl.h254 // Allocates a zeroed array of T with length "num". Also inserts
257 template <class T> T* New(int num) { argument
258 void* ptr = (*alloc_)(sizeof(Object) + num*sizeof(T));
259 memset(ptr, 0, sizeof(Object) + num*sizeof(T));
295 const Number num = reinterpret_cast<Number>(key); local
296 const Cluster* const c = FindCluster(num, false/*do not create*/);
298 for (Entry* e = c->blocks[BlockID(num)]; e != NULL; e = e->next) {
309 const Number num = reinterpret_cast<Number>(key); local
310 Cluster* const c = FindCluster(num, true/*create*/);
313 const int block = BlockID(num);
341 const Number num = reinterpret_cast<Number>(key); local
364 Number num = key_num; // we'll move this to move back through the clusters local
[all...]
/external/openssl/crypto/evp/
H A Dencode.c127 ctx->num=0;
140 if ((ctx->num+inl) < ctx->length)
142 memcpy(&(ctx->enc_data[ctx->num]),in,inl);
143 ctx->num+=inl;
146 if (ctx->num != 0)
148 i=ctx->length-ctx->num;
149 memcpy(&(ctx->enc_data[ctx->num]),in,i);
153 ctx->num=0;
171 ctx->num=inl;
179 if (ctx->num !
419 int i,num=0,bad=0; local
[all...]

Completed in 708 milliseconds

1234567891011>>