Searched refs:rem (Results 1 - 25 of 152) sorted by path

1234567

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/bzip2/
H A Dbzip2.c279 UInt32 rem, tmp; local
281 rem = 0;
283 tmp = rem * 256 + n->b[i];
285 rem = tmp % 10;
287 return rem;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A Dversion-check.pl42 my %rem;
53 $rem{$sym}=$a[2];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/
H A Dsymbol-scan.pl53 my %rem;
95 $rem{$sym}=$a[2];
142 if(($doc{$e} ne "used") && !$rem{$e}) {
160 printf "%d symbols are listed in symbols-in-versions\n (out of which %d are listed as removed)\n", scalar(keys %doc), scalar(keys %rem);
161 printf "%d symbols in symbols-in-versions should match the ones in headers\n", scalar(keys %doc) - scalar(keys %rem);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/unit/
H A Dunit1309.c93 int rem = (i+7)%NUM_NODES; variable
96 printf("remove pointer %d, payload %ld\n", rem,
97 (long)(nodes[rem].payload));
98 rc = Curl_splayremovebyaddr(root, &nodes[rem], &root);
101 printf("remove %d failed!\n", rem);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/misc/
H A Dss.c1109 char *loc, *rem, *data; local
1121 rem = p+6;
1123 if ((p = strchr(rem, ':')) == NULL)
1138 sscanf(rem, "%x:%x", s.remote.data, (unsigned*)&s.rport);
1147 sscanf(rem, "%08x%08x%08x%08x:%x",
1717 char *loc, *rem, *data; local
1729 rem = p+6;
1731 if ((p = strchr(rem, ':')) == NULL)
1746 sscanf(rem, "%x:%x", s.remote.data, (unsigned*)&s.rport);
1755 sscanf(rem, "
2279 char id[256], rem[256]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Ddsputil.c3369 static int try_8x8basis_c(int16_t rem[64], int16_t weight[64], int16_t basis[64], int scale){ argument
3374 int b= rem[i] + ((basis[i]*scale + (1<<(BASIS_SHIFT - RECON_SHIFT-1)))>>(BASIS_SHIFT - RECON_SHIFT));
3384 static void add_8x8basis_c(int16_t rem[64], int16_t basis[64], int scale){ argument
3388 rem[i] += (basis[i]*scale + (1<<(BASIS_SHIFT - RECON_SHIFT-1)))>>(BASIS_SHIFT - RECON_SHIFT);
H A Ddsputil.h445 int (*try_8x8basis)(int16_t rem[64], int16_t weight[64], int16_t basis[64], int scale);
446 void (*add_8x8basis)(int16_t rem[64], int16_t basis[64], int scale);
H A Dmpegvideo_enc.c3265 int16_t rem[64]; local
3330 rem[i]= dc - (orig[i]<<RECON_SHIFT); //FIXME use orig dirrectly instead of copying to rem[]
3333 STOP_TIMER("memset rem[]")}
3368 s->dsp.add_8x8basis(rem, basis[j], coeff);
3375 STOP_TIMER("init rem[]")
3382 int best_score=s->dsp.try_8x8basis(rem, weight, basis[0], 0);
3398 d1[i] = (rem[i]*w*w + (1<<(RECON_SHIFT+12-1)))>>(RECON_SHIFT+12);
3401 STOP_TIMER("rem*w*w")}
3426 score= s->dsp.try_8x8basis(rem, weigh
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/x86/
H A Ddsputil_mmx_qns_template.c27 static int DEF(try_8x8basis)(int16_t rem[64], int16_t weight[64], int16_t basis[64], int scale) argument
64 : "r"(basis), "r"(rem), "r"(weight), "g"(scale)
69 static void DEF(add_8x8basis)(int16_t rem[64], int16_t basis[64], int scale) argument
94 : "r"(basis), "r"(rem), "g"(scale)
98 rem[i] += (basis[i]*scale + (1<<(BASIS_SHIFT - RECON_SHIFT-1)))>>(BASIS_SHIFT - RECON_SHIFT);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dnutdec.c265 int rem= 1024; local
270 rem -= nut->header_len[i];
271 if(rem < 0){
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/
H A Dadler32.c135 unsigned rem; local
138 rem = (unsigned)(len2 % BASE);
140 sum2 = rem * sum1;
143 sum2 += ((adler1 >> 16) & 0xffff) + ((adler2 >> 16) & 0xffff) + BASE - rem;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/examples/
H A Dgun.c170 rem = 0; \
201 int left; /* bits left in rem */
202 unsigned rem; /* unused bits from input */ local
253 rem = (unsigned)last >> 1; /* remaining 7 bits */
273 code = rem; /* low bits of code */
294 rem = (unsigned)last >> (8 - left); /* unused bits from last byte */
356 /* loop for next code with final and prev as the last match, rem and
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/aes/
H A Daes_cfb.c165 int n,rem,num; local
182 rem = nbits%8;
184 if(rem==0)
188 ivec[n] = ovec[n+num]<<rem | ovec[n+num+1]>>(8-rem);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/bn/
H A Dbn.h346 int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d,
348 #define BN_mod(rem,m,d,ctx) BN_div(NULL,(rem),(m),(d),(ctx))
417 const BIGNUM *add, const BIGNUM *rem,
455 int BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m,
H A Dbn_div.c67 int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d,
84 if (rem != NULL)
85 { if (BN_copy(rem,m) == NULL) return(0); }
93 if (rem == NULL) rem = BN_CTX_get(ctx);
94 if (D == NULL || dv == NULL || rem == NULL)
100 if (BN_copy(rem,m) == NULL) goto end;
112 if (BN_ucmp(rem,D) >= 0)
115 if (!BN_usub(rem,rem,
270 BN_ULONG n0,n1,rem=0; local
[all...]
H A Dbn_mod.c119 int BN_mod(BIGNUM *rem, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx)
121 return(BN_div(NULL,rem,m,d,ctx));
122 /* note that rem->neg == m->neg (unless the remainder is zero) */
H A Dbn_prime.c128 const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx);
130 const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx);
133 const BIGNUM *add, const BIGNUM *rem,
162 if (!probable_prime_dh_safe(rnd,bits,add,rem,ctx))
167 if (!probable_prime_dh(rnd,bits,add,rem,ctx))
381 const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx)
391 /* we need ((rnd-rem) % add) == 0 */
395 if (rem == NULL)
398 { if (!BN_add(rnd,rnd,rem)) goto err; }
418 const BIGNUM *rem, BN_CT
132 BN_generate_prime(BIGNUM *ret, int bits, int safe, const BIGNUM *add, const BIGNUM *rem, void (*callback)(int,int,void *), void *cb_arg) argument
380 probable_prime_dh(BIGNUM *rnd, int bits, const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx) argument
417 probable_prime_dh_safe(BIGNUM *p, int bits, const BIGNUM *padd, const BIGNUM *rem, BN_CTX *ctx) argument
[all...]
H A Dbn_recp.c129 int BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, argument
142 if (rem != NULL)
143 r=rem;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/des/
H A Ddes.c370 int num=0,j,k,l,rem,ll,len,last,ex=0; local
467 rem=0;
473 num=l=fread(&(buf[rem]),1,BUFSIZE,DES_IN);
474 l+=rem;
475 num+=rem;
483 rem=l%8;
484 len=l-rem;
487 for (i=7-rem; i>0; i--)
489 buf[l++]=rem;
491 len+=rem;
687 int i,j,left,rem,ret=num; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/include/openssl/
H A Dbn.h346 int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d,
348 #define BN_mod(rem,m,d,ctx) BN_div(NULL,(rem),(m),(d),(ctx))
417 const BIGNUM *add, const BIGNUM *rem,
455 int BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/ms/
H A Dmingw32.bat1 @rem OpenSSL with Mingw32+GNU as
2 @rem ---------------------------
75 rem copy ms\tlhelp32.h outinc
H A Dmw.bat1 @rem OpenSSL with Mingw32
2 @rem --------------------
4 @rem Makefile
7 @rem DLL definition files
13 @rem Build the libraries
17 @rem Generate the DLLs and input libraries
H A Dtenc.bat0 rem called by testenc
H A Dtencce.bat0 rem called by testencce
H A Dtest.bat8 rem run this from inside the bin directory

Completed in 224 milliseconds

1234567