Searched refs:bound (Results 51 - 75 of 249) sorted by relevance

12345678910

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl/apps/
H A DCA.sh35 bound=$3
40 echo $line|grep "^-----END.*$bound" 2>/dev/null 1>/dev/null
49 echo $line|grep "^-----BEGIN.*$bound" 2>/dev/null 1>/dev/null
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl-1.0.0q/apps/
H A DCA.sh35 bound=$3
40 echo $line|grep "^-----END.*$bound" 2>/dev/null 1>/dev/null
49 echo $line|grep "^-----BEGIN.*$bound" 2>/dev/null 1>/dev/null
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl/apps/
H A DCA.sh35 bound=$3
40 echo $line|grep "^-----END.*$bound" 2>/dev/null 1>/dev/null
49 echo $line|grep "^-----BEGIN.*$bound" 2>/dev/null 1>/dev/null
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-linux/sysroot/etc/ssl/misc/
H A DCA.sh35 bound=$3
40 echo $line|grep "^-----END.*$bound" 2>/dev/null 1>/dev/null
49 echo $line|grep "^-----BEGIN.*$bound" 2>/dev/null 1>/dev/null
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-brcm-linux-uclibcgnueabi/sysroot/etc/ssl/misc/
H A DCA.sh35 bound=$3
40 echo $line|grep "^-----END.*$bound" 2>/dev/null 1>/dev/null
49 echo $line|grep "^-----BEGIN.*$bound" 2>/dev/null 1>/dev/null
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl-1.0.0q/apps/
H A DCA.sh35 bound=$3
40 echo $line|grep "^-----END.*$bound" 2>/dev/null 1>/dev/null
49 echo $line|grep "^-----BEGIN.*$bound" 2>/dev/null 1>/dev/null
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/lltdc/src/
H A Dband.c69 uint32_t bound = ((b->Ni * BAND_GAMMA) + (BAND_ALPHA * BAND_BETA -1)) local
71 b->Ni = TOPOMIN(100*BAND_NMAX, TOPOMAX(bound, value));
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/lltdc/src/
H A Dband.c69 uint32_t bound = ((b->Ni * BAND_GAMMA) + (BAND_ALPHA * BAND_BETA -1)) local
71 b->Ni = TOPOMIN(100*BAND_NMAX, TOPOMAX(bound, value));
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/net/
H A Dpkt_sched.h57 psched_tdiff_bounded(psched_time_t tv1, psched_time_t tv2, psched_time_t bound) argument
59 return min(tv1 - tv2, bound);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/net/
H A Dpkt_sched.h57 psched_tdiff_bounded(psched_time_t tv1, psched_time_t tv2, psched_time_t bound) argument
59 return min(tv1 - tv2, bound);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/lltdc/src/
H A Dband.c69 uint32_t bound = ((b->Ni * BAND_GAMMA) + (BAND_ALPHA * BAND_BETA -1)) local
71 b->Ni = TOPOMIN(100*BAND_NMAX, TOPOMAX(bound, value));
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl-1.0.0q/crypto/asn1/
H A Dasn_mime.c103 static int mime_bound_check(char *line, int linelen, char *bound, int blen);
104 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret);
283 char bound[33], c; local
299 RAND_pseudo_bytes((unsigned char *)bound, 32);
301 c = bound[i] & 0xf;
304 bound[i] = c;
306 bound[32] = 0;
313 bound, mime_eol, mime_eol);
317 BIO_printf(bio, "------%s%s", bound, mime_eol);
320 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eo
608 multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret) argument
923 mime_bound_check(char *line, int linelen, char *bound, int blen) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/include/
H A Dbcmutils.h770 /* modulo inc/dec - assumes x E [0, bound - 1] */
771 #define MODDEC(x, bound) MUX((x) == 0, (bound) - 1, (x) - 1)
772 #define MODINC(x, bound) MUX((x) == (bound) - 1, 0, (x) + 1)
774 /* modulo inc/dec, bound = 2^k */
775 #define MODDEC_POW2(x, bound) (((x) - 1) & ((bound) - 1))
776 #define MODINC_POW2(x, bound) (((x) + 1) & ((bound)
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl/crypto/asn1/
H A Dasn_mime.c105 static int mime_bound_check(char *line, int linelen, char *bound, int blen);
106 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret);
276 char bound[33], c; local
292 if (RAND_pseudo_bytes((unsigned char *)bound, 32) < 0)
295 c = bound[i] & 0xf;
300 bound[i] = c;
302 bound[32] = 0;
309 bound, mime_eol, mime_eol);
313 BIO_printf(bio, "------%s%s", bound, mime_eol);
316 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eo
595 multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret) argument
940 mime_bound_check(char *line, int linelen, char *bound, int blen) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl-1.0.0q/crypto/asn1/
H A Dasn_mime.c103 static int mime_bound_check(char *line, int linelen, char *bound, int blen);
104 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret);
283 char bound[33], c; local
299 RAND_pseudo_bytes((unsigned char *)bound, 32);
301 c = bound[i] & 0xf;
304 bound[i] = c;
306 bound[32] = 0;
313 bound, mime_eol, mime_eol);
317 BIO_printf(bio, "------%s%s", bound, mime_eol);
320 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eo
608 multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret) argument
923 mime_bound_check(char *line, int linelen, char *bound, int blen) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl/crypto/asn1/
H A Dasn_mime.c105 static int mime_bound_check(char *line, int linelen, char *bound, int blen);
106 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret);
276 char bound[33], c; local
292 if (RAND_pseudo_bytes((unsigned char *)bound, 32) < 0)
295 c = bound[i] & 0xf;
300 bound[i] = c;
302 bound[32] = 0;
309 bound, mime_eol, mime_eol);
313 BIO_printf(bio, "------%s%s", bound, mime_eol);
316 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eo
595 multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret) argument
940 mime_bound_check(char *line, int linelen, char *bound, int blen) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl-1.0.0q/crypto/asn1/
H A Dasn_mime.c103 static int mime_bound_check(char *line, int linelen, char *bound, int blen);
104 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret);
283 char bound[33], c; local
299 RAND_pseudo_bytes((unsigned char *)bound, 32);
301 c = bound[i] & 0xf;
304 bound[i] = c;
306 bound[32] = 0;
313 bound, mime_eol, mime_eol);
317 BIO_printf(bio, "------%s%s", bound, mime_eol);
320 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eo
608 multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret) argument
923 mime_bound_check(char *line, int linelen, char *bound, int blen) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl/crypto/asn1/
H A Dasn_mime.c105 static int mime_bound_check(char *line, int linelen, char *bound, int blen);
106 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret);
276 char bound[33], c; local
292 if (RAND_pseudo_bytes((unsigned char *)bound, 32) < 0)
295 c = bound[i] & 0xf;
300 bound[i] = c;
302 bound[32] = 0;
309 bound, mime_eol, mime_eol);
313 BIO_printf(bio, "------%s%s", bound, mime_eol);
316 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eo
595 multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret) argument
940 mime_bound_check(char *line, int linelen, char *bound, int blen) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/net/ieee802154/
H A Ddgram.c47 unsigned bound:1; member in struct:dgram_sock
97 ro->bound = 0;
118 ro->bound = 1;
177 if (!ro->bound) {
217 if (!ro->bound)
246 ro->bound ? &ro->src_addr : NULL, size);
329 if (!ro->bound)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/net/ieee802154/
H A Ddgram.c47 unsigned bound:1; member in struct:dgram_sock
97 ro->bound = 0;
118 ro->bound = 1;
177 if (!ro->bound) {
217 if (!ro->bound)
246 ro->bound ? &ro->src_addr : NULL, size);
329 if (!ro->bound)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/lzma/C/Compress/Lzma/
H A DLzmaDecodeSize.c119 UInt32 bound = (rd->Range >> kNumBitModelTotalBits) * *prob; local
120 if (rd->Code < bound)
122 rd->Range = bound;
133 rd->Range -= bound;
134 rd->Code -= bound;
146 UInt32 bound = (range >> kNumBitModelTotalBits) * *prob; \
147 if (code < bound) \
148 { A0; range = bound; *prob += (kBitModelTotal - *prob) >> kNumMoveBits; mi <<= 1; } \
150 { A1; range -= bound; code -= bound; *pro
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/lzma/C/Compress/Lzma/
H A DLzmaDecodeSize.c119 UInt32 bound = (rd->Range >> kNumBitModelTotalBits) * *prob; local
120 if (rd->Code < bound)
122 rd->Range = bound;
133 rd->Range -= bound;
134 rd->Code -= bound;
146 UInt32 bound = (range >> kNumBitModelTotalBits) * *prob; \
147 if (code < bound) \
148 { A0; range = bound; *prob += (kBitModelTotal - *prob) >> kNumMoveBits; mi <<= 1; } \
150 { A1; range -= bound; code -= bound; *pro
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/lzma/C/Compress/Lzma/
H A DLzmaDecodeSize.c119 UInt32 bound = (rd->Range >> kNumBitModelTotalBits) * *prob; local
120 if (rd->Code < bound)
122 rd->Range = bound;
133 rd->Range -= bound;
134 rd->Code -= bound;
146 UInt32 bound = (range >> kNumBitModelTotalBits) * *prob; \
147 if (code < bound) \
148 { A0; range = bound; *prob += (kBitModelTotal - *prob) >> kNumMoveBits; mi <<= 1; } \
150 { A1; range -= bound; code -= bound; *pro
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/gpu/drm/nouveau/
H A Dnouveau_sgdma.c18 bool bound; member in struct:nouveau_sgdma_be
64 if (nvbe->bound)
125 nvbe->bound = true;
140 if (!nvbe->bound)
165 nvbe->bound = false;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/gpu/drm/nouveau/
H A Dnouveau_sgdma.c18 bool bound; member in struct:nouveau_sgdma_be
64 if (nvbe->bound)
125 nvbe->bound = true;
140 if (!nvbe->bound)
165 nvbe->bound = false;

Completed in 138 milliseconds

12345678910