Searched refs:num (Results 676 - 700 of 1985) sorted by relevance

<<21222324252627282930>>

/external/e2fsprogs/intl/
H A Dplural.y50 unsigned long int num;
145 %token <num> NUMBER
196 if (($$ = new_exp_0 (num)) != NULL)
197 $$->val.num = $1;
267 lval->num = n;
/external/harfbuzz_ng/src/
H A Dgen-indic-table.py56 num = len (data) variable
141 num = 0
149 num += 1
154 used += num
162 num = 0 variable
/external/javassist/src/main/javassist/expr/
H A DNewArray.java255 int num = gen.getMethodArgsLength(args);
256 if (num != dimension)
260 gen.atMethodArgs(args, new int[num],
261 new int[num], new String[num]);
/external/libedit/src/
H A Dhist.c160 int num; local
171 el->el_history.ev.num, ct_encode_string(str, &el->el_scratch));
178 num = (int)Strtol(argv[2], NULL, 0);
181 return FUNW(history)(el->el_history.ref, &ev, H_SETSIZE, num);
184 return FUNW(history)(el->el_history.ref, &ev, H_SETUNIQUE, num);
/external/libexif/libexif/
H A Dexif-content.c283 unsigned int i, num; local
303 num = c->count;
305 } while (num != c->count);
310 num = exif_tag_table_count();
311 for (i = 0; i < num; ++i) {
/external/libopus/silk/float/
H A Dburg_modified_FLP.c49 double C0, invGain, num, nrg_f, nrg_b, rc, Atmp, tmp1, tmp2; local
104 num = CAb[ n + 1 ];
109 num += CAb[ n - k ] * Atmp;
117 rc = -2.0 * num / ( nrg_f + nrg_b );
125 if( num > 0 ) {
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpaint.c104 VGint num,
119 for (i = 0; i < num - 1; ++i) {
135 last_color = float4_to_argb(ramp_stops + ((num - 1) * 5 + 1));
384 int num)
389 const VGint num_stops = num / 5;
392 paint->gradient.num_stops = num;
393 if (num) {
395 paint->gradient.ramp_stops = malloc(sizeof(VGfloat)*num);
396 memcpy(paint->gradient.ramp_stops, stops, sizeof(VGfloat)*num);
404 num
103 create_gradient_data(const VGfloat *ramp_stops, VGint num, VGuint *data, VGint size) argument
383 paint_set_ramp_stops(struct vg_paint *paint, const VGfloat *stops, int num) argument
530 paint_ramp_stops(struct vg_paint *paint, VGfloat *stops, int num) argument
592 paint_set_ramp_stopsi(struct vg_paint *paint, const VGint *stops, int num) argument
602 paint_ramp_stopsi(struct vg_paint *paint, VGint *stops, int num) argument
[all...]
/external/openssl/apps/
H A Dgenrsa.c96 int i,num=DEFBITS; local
193 if ((argc >= 1) && ((sscanf(*argv,"%d",&num) == 0) || (num < 0)))
267 num);
276 if(!BN_set_word(bn, f4) || !RSA_generate_key_ex(rsa, num, bn, &cb))
H A Dsess_id.c94 int ret=1,i,num,badops=0; local
112 num=0;
136 text= ++num;
138 cert= ++num;
140 noout= ++num;
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_gcc.cpp19 T num = 0; local
24 num = num * 10 + (*str) - '0';
27 return neg ? -num : num;
/external/clang/test/SemaCXX/
H A Duninitialized.cpp75 int num; member in class:A
77 int get() const { return num; }
78 int get2() { return num; }
79 void set(int x) { num = x; }
110 A a13(a13.num); // expected-warning {{variable 'a13' is uninitialized when used within its own initialization}}
112 A a15 = getA(a15.num); // expected-warning {{variable 'a15' is uninitialized when used within its own initialization}}
113 A a16(&a16.num); // expected-warning {{variable 'a16' is uninitialized when used within its own initialization}}
129 A *a28 = new A(a28->num); // expected-warning {{variable 'a28' is uninitialized when used within its own initialization}}
147 A a13(a13.num); // expected-warning {{variable 'a13' is uninitialized when used within its own initialization}}
149 A a15 = getA(a15.num); // expecte
[all...]
H A Dtypo-correction-pt2.cpp71 void test(Foo F, int num) { argument
72 F.A(num); // expected-error {{too few arguments to function call, expected 2, have 1; did you mean '::TemplateFunction::A'?}}
73 F.B(num); // expected-error {{too many arguments to function call, expected 0, have 1; did you mean '::TemplateFunction::B'?}}
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DFuncFormatNumb.java62 double num = getArg0().execute(xctxt).num();
130 return new XString(formatter.format(num));
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXRTreeFrag.java151 public double num() method in class:XRTreeFrag
274 return num() == obj2.num();
/external/chromium_org/net/quic/
H A Dquic_fec_group.cc125 bool QuicFecGroup::ProtectsPacketsBefore(QuicPacketSequenceNumber num) const {
127 return max_protected_packet_ < num;
131 return *received_packets_.begin() < num;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Ddate-format-xparb.js292 var num = 0;
295 num += Date.daysInMonth[i];
297 return num + this.getDate() - 1;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Ddate-format-xparb.js292 var num = 0;
295 num += Date.daysInMonth[i];
297 return num + this.getDate() - 1;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Ddate-format-xparb.js292 var num = 0;
295 num += Date.daysInMonth[i];
297 return num + this.getDate() - 1;
/external/chromium_org/third_party/openssl/openssl/crypto/bio/
H A Db_print.c385 short int *num; local
386 num = va_arg(args, short int *);
387 *num = currlen;
389 long int *num; local
390 num = va_arg(args, long int *);
391 *num = (long int) currlen;
393 LLONG *num; local
394 num = va_arg(args, LLONG *);
395 *num = (LLONG) currlen;
397 int *num; local
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/sha/
H A Dsha.h105 unsigned int num; member in struct:SHAstate_st
140 unsigned int num,md_len; member in struct:SHA256state_st
190 unsigned int num,md_len; member in struct:SHA512state_st
/external/chromium_org/third_party/openssl/openssl/include/openssl/
H A Dsha.h105 unsigned int num; member in struct:SHAstate_st
140 unsigned int num,md_len; member in struct:SHA256state_st
190 unsigned int num,md_len; member in struct:SHA512state_st
/external/chromium_org/third_party/opus/src/celt/
H A Dpitch.c74 opus_val16 num; local
82 num = MULT16_16_Q15(xcorr16,xcorr16);
83 if (MULT16_32_Q15(num,best_den[1]) > MULT16_32_Q15(best_num[1],Syy))
85 if (MULT16_32_Q15(num,best_den[0]) > MULT16_32_Q15(best_num[0],Syy))
90 best_num[0] = num;
94 best_num[1] = num;
106 const opus_val16 *num,
114 num0=num[0];
115 num1=num[1];
116 num2=num[
105 celt_fir5(const opus_val16 *x, const opus_val16 *num, opus_val16 *y, int N, opus_val16 *mem) argument
[all...]
/external/iptables/extensions/
H A Dlibip6t_ipv6header.c23 uint8_t num; member in struct:pprot
76 if (chain_protos[i].num == proto)
94 proto = chain_protos[i].num;
/external/jemalloc/src/
H A Dzone.c24 static void *zone_calloc(malloc_zone_t *zone, size_t num, size_t size);
70 zone_calloc(malloc_zone_t *zone, size_t num, size_t size) argument
73 return (je_calloc(num, size));
/external/libopus/celt/
H A Dpitch.c74 opus_val16 num; local
82 num = MULT16_16_Q15(xcorr16,xcorr16);
83 if (MULT16_32_Q15(num,best_den[1]) > MULT16_32_Q15(best_num[1],Syy))
85 if (MULT16_32_Q15(num,best_den[0]) > MULT16_32_Q15(best_num[0],Syy))
90 best_num[0] = num;
94 best_num[1] = num;
106 const opus_val16 *num,
114 num0=num[0];
115 num1=num[1];
116 num2=num[
105 celt_fir5(const opus_val16 *x, const opus_val16 *num, opus_val16 *y, int N, opus_val16 *mem) argument
[all...]

Completed in 7183 milliseconds

<<21222324252627282930>>