Searched refs:vals (Results 1 - 25 of 42) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/misc/
H A Difstat.c219 unsigned long long *vals = n->val; local
227 vals = h1->val;
236 fprintf(fp, "%llu %u ", vals[i], (unsigned)rates[i]);
246 void format_rate(FILE *fp, unsigned long long *vals, double *rates, int i) argument
249 if (vals[i] > giga)
250 fprintf(fp, "%7lluM ", vals[i]/mega);
251 else if (vals[i] > mega)
252 fprintf(fp, "%7lluK ", vals[i]/kilo);
254 fprintf(fp, "%8llu ", vals[i]);
266 void format_pair(FILE *fp, unsigned long long *vals, in argument
329 print_one_if(FILE *fp, struct ifstat_ent *n, unsigned long long *vals) argument
400 unsigned long long vals[MAXS]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A Dhuffbuild.c129 long vals=pow(maxval,subn); local
130 long *hist=_ogg_calloc(vals,sizeof(long));
131 long *lengths=_ogg_calloc(vals,sizeof(long));
133 for(j=loval;j<vals;j++)hist[j]=guard;
140 if(val==-1 || val>=vals)break;
148 fprintf(stderr,"Building tree for %ld entries\n",vals);
149 build_tree_from_lengths0(vals,hist,lengths);
166 for(j=0;j<vals;){
168 for(k=0;k<16 && j<vals;k++,j++)
176 fprintf(file,"\t%d, %ld,\n",subn,vals);
[all...]
H A Dbookutil.h39 extern void build_tree_from_lengths(int vals, long *hist, long *lengths);
40 extern void build_tree_from_lengths0(int vals, long *hist, long *lengths);
H A Dmake_residue_books.pl80 my($namedata,$dim,$seqp,$vals)=split(',',$1);
87 foreach my$val (split(' ',$vals)){
H A Dbookutil.c431 void build_tree_from_lengths(int vals, long *hist, long *lengths){ argument
433 long *membership=_ogg_malloc(vals*sizeof(long));
434 long *histsave=alloca(vals*sizeof(long));
435 memcpy(histsave,hist,vals*sizeof(long));
437 for(i=0;i<vals;i++)membership[i]=i;
441 for(i=vals;i>1;i--){
448 for(j=0;j<vals;j++)
454 for(j=0;j<vals;j++)
466 for(j=0;j<vals;j++)
473 for(i=0;i<vals
500 build_tree_from_lengths0(int vals, long *hist, long *lengths) argument
541 long vals=(c->maptype==1?_book_maptype1_quantvals(c):c->entries*c->dim); local
[all...]
H A Dlocalcodebook.h53 map == 2: list of dim*entries quantized entry vals
126 extern float *_book_logdist(const static_codebook *b,float *vals);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/
H A Dbn_ctx.c94 BIGNUM vals[BN_CTX_POOL_SIZE]; member in struct:bignum_pool_item
164 fprintf(stderr,"%02x ", item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax);
244 fprintf(stderr,"%02x ", pool->vals[loop++].dmax);
371 BIGNUM *bn = p->head->vals;
390 BIGNUM *bn = item->vals;
412 bn = item->vals;
429 return item->vals;
435 return p->current->vals + ((p->used++) % BN_CTX_POOL_SIZE);
444 bn_check_top(p->current->vals + offset);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/include/private/
H A Dbitreader.h83 FLAC__bool FLAC__bitreader_read_rice_signed_block(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter);
87 FLAC__bool FLAC__bitreader_read_rice_signed_block_asm_ia32_bswap(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter);
H A Dbitwriter.h86 FLAC__bool FLAC__bitwriter_write_byte_block(FLAC__BitWriter *bw, const FLAC__byte vals[], unsigned nvals);
94 FLAC__bool FLAC__bitwriter_write_rice_signed_block(FLAC__BitWriter *bw, const FLAC__int32 *vals, unsigned nvals, unsigned parameter);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509v3/
H A Dv3_pci.c221 STACK_OF(CONF_VALUE) *vals;
227 vals = X509V3_parse_list(value);
228 for (i = 0; i < sk_CONF_VALUE_num(vals); i++)
230 CONF_VALUE *cnf = sk_CONF_VALUE_value(vals, i);
311 sk_CONF_VALUE_pop_free(vals, X509V3_conf_free);
H A Dv3_cpols.c138 STACK_OF(CONF_VALUE) *vals;
146 vals = X509V3_parse_list(value);
147 if (vals == NULL) {
152 for(i = 0; i < sk_CONF_VALUE_num(vals); i++) {
153 cnf = sk_CONF_VALUE_value(vals, i);
186 sk_CONF_VALUE_pop_free(vals, X509V3_conf_free);
189 sk_CONF_VALUE_pop_free(vals, X509V3_conf_free);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/ide/
H A Dide.c1219 * separated by commas, the numbers are saved in vals[] and a
1224 static int __init match_parm (char *s, const char *keywords[], int vals[], int max_vals) argument
1248 vals[n] = i;
1250 vals[n] = (vals[n] * 10) + i;
1251 if (*s == 'x' && !vals[n]) {
1253 vals[n] = (vals[n] * 0x10) + i;
1297 int i, vals[3]; local
1373 switch (match_parm(&s[3], hd_words, vals,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dldap.c396 BerValue **vals = ldap_get_values_len(server, entryIterator, attribute); local
398 if(vals != NULL) {
399 for(i = 0; (vals[i] != NULL); i++) {
411 vals[i]->bv_val,
412 vals[i]->bv_len,
416 ldap_value_free_len(vals);
431 Curl_client_write(conn, CLIENTWRITE_BODY, vals[i]->bv_val,
432 vals[i]->bv_len);
433 dlsize += vals[i]->bv_len;
440 ldap_value_free_len(vals);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/include/vorbis/
H A Dcodec.h193 extern float **vorbis_analysis_buffer(vorbis_dsp_state *v,int vals);
194 extern int vorbis_analysis_wrote(vorbis_dsp_state *v,int vals);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/x509v3/
H A Dv3_cpols.c136 STACK_OF(CONF_VALUE) *vals;
140 vals = X509V3_parse_list(value);
142 for(i = 0; i < sk_CONF_VALUE_num(vals); i++) {
143 cnf = sk_CONF_VALUE_value(vals, i);
176 sk_CONF_VALUE_pop_free(vals, X509V3_conf_free);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libogg-1.1.4/src/
H A Dframing.c341 /* Store lacing vals for this packet */
385 int vals=0; local
401 for(vals=0;vals<maxvals;vals++){
402 if((os->lacing_vals[vals]&0x0ff)<255){
403 vals++;
408 for(vals=0;vals<maxvals;vals
[all...]
H A Dbitwise.c511 void cliptest(unsigned long *b,int vals,int bits,int *comp,int compsize){ argument
516 for(i=0;i<vals;i++)
526 for(i=0;i<vals;i++){
546 void cliptestB(unsigned long *b,int vals,int bits,int *comp,int compsize){ argument
551 for(i=0;i<vals;i++)
561 for(i=0;i<vals;i++){
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/lib/
H A Dsharedbook.c164 long vals=floor(pow((float)b->entries,1.f/b->dim)); local
168 means that vals really is the greatest value of dim for which
169 vals^b->bim <= b->entries */
176 acc*=vals;
177 acc1*=vals+1;
180 return(vals);
183 vals--;
185 vals++;
H A Dcodebook.h53 map == 2: list of dim*entries quantized entry vals
126 extern float *_book_logdist(const static_codebook *b,float *vals);
H A Dblock.c378 float **vorbis_analysis_buffer(vorbis_dsp_state *v, int vals){ argument
391 if(v->pcm_current+vals>=v->pcm_storage){
392 v->pcm_storage=v->pcm_current+vals*2;
449 int vorbis_analysis_wrote(vorbis_dsp_state *v, int vals){ argument
453 if(vals<=0){
496 if(v->pcm_current+vals>v->pcm_storage)
499 v->pcm_current+=vals;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/flex/
H A Dconfigure1564 # Transform confdefs.h into a sed script conftest.vals that substitutes
1568 rm -f conftest.vals
1576 sed -n -f conftest.hdr confdefs.h > conftest.vals
1582 cat >> conftest.vals <<\EOF
1586 # Break up conftest.vals because some shells have a limit on
1594 ac_lines=`grep -c . conftest.vals`
1599 sed ${ac_max_here_lines}q conftest.vals >> $CONFIG_STATUS
1605 sed 1,${ac_max_here_lines}d conftest.vals > conftest.tail
1606 rm -f conftest.vals
1607 mv conftest.tail conftest.vals
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/utils/
H A Deditreg.c413 VAL_KEY *vals[1]; member in struct:val_list_s
686 if (!val_print(path, val_list->vals[i]->name, val_list->vals[i]->data_type,
687 val_list->vals[i]->data_len, val_list->vals[i]->data_blk,
868 nt_delete_val_key(vl->vals[i]);
1090 if ((!key->values->vals[i]->has_name && !*name) ||
1091 (key->values->vals[i]->has_name &&
1092 strcmp(name, key->values->vals[i]->name) == 0)){ /* Change the value */
1093 free(key->values->vals[
3778 print_key(const char *path, char *name, char *class_name, int root, int terminal, int vals) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Dgentest.py552 vals = [] variable
560 vals.append(vname)
561 if vals == []:
567 test.write("#define gen_nb_%s %d\n" % (name, len(vals)))
571 for value in vals:
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dbitwriter.c416 FLaC__INLINE FLAC__bool FLAC__bitwriter_write_byte_block(FLAC__BitWriter *bw, const FLAC__byte vals[], unsigned nvals) argument
422 if(!FLAC__bitwriter_write_raw_uint32(bw, (FLAC__uint32)(vals[i]), 8))
541 FLAC__bool FLAC__bitwriter_write_rice_signed_block(FLAC__BitWriter *bw, const FLAC__int32 *vals, unsigned nvals, unsigned parameter) argument
558 uval = (*vals<<1) ^ (*vals>>31);
575 /* burying the capacity check down here means we have to grow the buffer a little if there are more vals to do */
651 vals++;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/
H A Dov7670.c426 static int ov7670_write_array(struct i2c_client *c, struct regval_list *vals) argument
428 while (vals->reg_num != 0xff || vals->value != 0xff) {
429 int ret = ov7670_write(c, vals->reg_num, vals->value);
432 vals++;

Completed in 261 milliseconds

12