Searched refs:bytes (Results 26 - 50 of 800) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dogg_decoder_aspect.c105 FLAC__OggDecoderAspectReadStatus FLAC__ogg_decoder_aspect_read_callback_wrapper(FLAC__OggDecoderAspect *aspect, FLAC__byte buffer[], size_t *bytes, FLAC__OggDecoderAspectReadCallbackProxy read_callback, const FLAC__StreamDecoder *decoder, void *client_data) argument
108 const size_t bytes_requested = *bytes;
121 * the same number of bytes from Ogg, then pass what's decoded down to
133 * to read in enough pages to return the full number of bytes
136 *bytes = 0;
137 while (*bytes < bytes_requested && !aspect->end_of_stream) {
140 size_t n = bytes_requested - *bytes;
141 if ((size_t)aspect->working_packet.bytes <= n) {
143 n = aspect->working_packet.bytes;
145 *bytes
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Draid6recov.c24 void raid6_2data_recov(int disks, size_t bytes, int faila, int failb, argument
45 raid6_call.gen_syndrome(disks, bytes, ptrs);
58 while ( bytes-- ) {
71 void raid6_datap_recov(int disks, size_t bytes, int faila, void **ptrs) argument
85 raid6_call.gen_syndrome(disks, bytes, ptrs);
95 while ( bytes-- ) {
105 void raid6_dual_recov(int disks, size_t bytes, int faila, int failb, void **ptrs) argument
116 raid6_call.gen_syndrome(disks, bytes, ptrs);
125 raid6_datap_recov(disks, bytes, faila, ptrs);
128 raid6_2data_recov(disks, bytes, fail
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/include/linux/netfilter/
H A Dxt_sctp.h38 #define bytes(type) (sizeof(type) * 8) macro
42 (chunkmap)[type / bytes(__u32)] |= \
43 1 << (type % bytes(__u32)); \
48 (chunkmap)[type / bytes(__u32)] &= \
49 ~(1 << (type % bytes(__u32))); \
54 ((chunkmap)[type / bytes (__u32)] & \
55 (1 << (type % bytes (__u32)))) ? 1: 0; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/netfilter/
H A Dxt_sctp.h39 #define bytes(type) (sizeof(type) * 8) macro
43 chunkmap[type / bytes(u_int32_t)] |= \
44 1 << (type % bytes(u_int32_t)); \
49 chunkmap[type / bytes(u_int32_t)] &= \
50 ~(1 << (type % bytes(u_int32_t))); \
55 (chunkmap[type / bytes (u_int32_t)] & \
56 (1 << (type % bytes (u_int32_t)))) ? 1: 0; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/netfilter_ipv4/
H A Dipt_sctp.h37 #define bytes(type) (sizeof(type) * 8) macro
41 chunkmap[type / bytes(u_int32_t)] |= \
42 1 << (type % bytes(u_int32_t)); \
47 chunkmap[type / bytes(u_int32_t)] &= \
48 ~(1 << (type % bytes(u_int32_t))); \
53 (chunkmap[type / bytes (u_int32_t)] & \
54 (1 << (type % bytes (u_int32_t)))) ? 1: 0; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/iptables-1.x/include/linux/netfilter_ipv4/
H A Dipt_sctp.h39 #define bytes(type) (sizeof(type) * 8) macro
43 chunkmap[type / bytes(u_int32_t)] |= \
44 1 << (type % bytes(u_int32_t)); \
49 chunkmap[type / bytes(u_int32_t)] &= \
50 ~(1 << (type % bytes(u_int32_t))); \
55 (chunkmap[type / bytes (u_int32_t)] & \
56 (1 << (type % bytes (u_int32_t)))) ? 1: 0; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/netfilter/
H A Dxt_connbytes.c15 MODULE_DESCRIPTION("iptables match for matching number of pkts/bytes per connection");
32 u_int64_t bytes = 0; local
59 what = counters[IP_CT_DIR_ORIGINAL].bytes;
62 what = counters[IP_CT_DIR_REPLY].bytes;
65 what = counters[IP_CT_DIR_ORIGINAL].bytes;
66 what += counters[IP_CT_DIR_REPLY].bytes;
73 bytes = counters[IP_CT_DIR_ORIGINAL].bytes;
77 bytes = counters[IP_CT_DIR_REPLY].bytes;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dmbuiter.h73 relocates iterator when the string is moved by ptrdiff bytes.
117 size_t cur.bytes number of bytes of current character
136 iter->cur.bytes = 1;
145 iter->cur.bytes = mbrtowc (&iter->cur.wc, iter->cur.ptr,
148 if (iter->cur.bytes == (size_t) -1)
151 iter->cur.bytes = 1;
156 else if (iter->cur.bytes == (size_t) -2)
159 iter->cur.bytes = strlen (iter->cur.ptr);
166 if (iter->cur.bytes
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/rand/
H A Drand_egd.c66 * RAND_query_egd_bytes(path, buf, bytes)
67 * will actually query "bytes" bytes of entropy form the egd-socket located
70 * The number of bytes is not limited by the maximum chunk size of EGD,
71 * which is 255 bytes. If more than 255 bytes are wanted, several chunks
72 * of entropy bytes are requested. The connection is left open until the
76 * num the number of bytes read from the EGD socket. This number is either
77 * the number of bytes requested or smaller, if the EGD pool is
82 * RAND_egd_bytes(path, bytes) wil
99 RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) argument
108 RAND_egd_bytes(const char *path,int bytes) argument
136 RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) argument
284 RAND_egd_bytes(const char *path, int bytes) argument
[all...]
H A Drandfile.c93 int RAND_load_file(const char *file, long bytes) argument
95 /* If bytes >= 0, read up to 'bytes' bytes.
96 * if bytes == -1, read complete file. */
109 if (bytes == 0) return(ret);
116 * of bytes from a random device, nor do we want to use buffered
119 bytes = (bytes == -1) ? 2048 : bytes; /* o
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/bn/
H A Dbn_rand.c121 int ret=0,bit,bytes,mask; local
130 bytes=(bits+7)/8;
134 buf=(unsigned char *)OPENSSL_malloc(bytes);
147 if (RAND_pseudo_bytes(buf, bytes) == -1)
152 if (RAND_bytes(buf, bytes) <= 0)
164 for (i = 0; i < bytes; i++)
198 buf[bytes-1]|=1;
199 if (!BN_bin2bn(buf,bytes,rnd)) goto err;
204 OPENSSL_cleanse(buf,bytes);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/
H A Dbn_rand.c121 int ret=0,bit,bytes,mask; local
130 bytes=(bits+7)/8;
134 buf=(unsigned char *)OPENSSL_malloc(bytes);
147 if (RAND_pseudo_bytes(buf, bytes) == -1)
152 if (RAND_bytes(buf, bytes) <= 0)
164 for (i = 0; i < bytes; i++)
198 buf[bytes-1]|=1;
199 if (!BN_bin2bn(buf,bytes,rnd)) goto err;
204 OPENSSL_cleanse(buf,bytes);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/rand/
H A Drand_egd.c66 * RAND_query_egd_bytes(path, buf, bytes)
67 * will actually query "bytes" bytes of entropy form the egd-socket located
70 * The number of bytes is not limited by the maximum chunk size of EGD,
71 * which is 255 bytes. If more than 255 bytes are wanted, several chunks
72 * of entropy bytes are requested. The connection is left open until the
76 * num the number of bytes read from the EGD socket. This number is either
77 * the number of bytes requested or smaller, if the EGD pool is
82 * RAND_egd_bytes(path, bytes) wil
99 RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) argument
108 RAND_egd_bytes(const char *path,int bytes) argument
136 RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) argument
284 RAND_egd_bytes(const char *path, int bytes) argument
[all...]
H A Drandfile.c93 int RAND_load_file(const char *file, long bytes) argument
95 /* If bytes >= 0, read up to 'bytes' bytes.
96 * if bytes == -1, read complete file. */
109 if (bytes == 0) return(ret);
116 * of bytes from a random device, nor do we want to use buffered
119 bytes = (bytes == -1) ? 2048 : bytes; /* o
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dmbuiter.h73 relocates iterator when the string is moved by ptrdiff bytes.
117 size_t cur.bytes number of bytes of current character
136 iter->cur.bytes = 1;
145 iter->cur.bytes = mbrtowc (&iter->cur.wc, iter->cur.ptr,
148 if (iter->cur.bytes == (size_t) -1)
151 iter->cur.bytes = 1;
156 else if (iter->cur.bytes == (size_t) -2)
159 iter->cur.bytes = strlen (iter->cur.ptr);
166 if (iter->cur.bytes
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/util/test/
H A DPackedIntegerTest.java123 int bytes = off - before;
124 if (bytes != bytesExpected) {
125 fail("output of value=" + i + " bytes=" + bytes +
128 bytes = PackedInteger.getWriteIntLength(i);
129 if (bytes != bytesExpected) {
130 fail("count of value=" + i + " bytes=" + bytes +
139 int bytes = PackedInteger.getReadIntLength(buf, off);
140 if (bytes !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dutil.c40 id3_length_t bytes = 0, count; local
49 ++bytes;
52 if (bytes) {
54 end += bytes;
58 for (count = bytes; count; *--end = *--ptr) {
66 return length + bytes;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dutil.c40 id3_length_t bytes = 0, count; local
49 ++bytes;
52 if (bytes) {
54 end += bytes;
58 for (count = bytes; count; *--end = *--ptr) {
66 return length + bytes;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/pqueue/
H A Dpq_compat.h98 #define pq_64bit_bin2num(bn, bytes, len) BN_bin2bn(bytes, len, bn)
99 #define pq_64bit_num2bin(bn, bytes) BN_bn2bin(bn, bytes)
138 #define pq_64bit_bin2num(num, bytes, len) bytes_to_long_long(bytes, num)
139 #define pq_64bit_num2bin(num, bytes) long_long_to_bytes(num, bytes)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dpq_compat.h98 #define pq_64bit_bin2num(bn, bytes, len) BN_bin2bn(bytes, len, bn)
99 #define pq_64bit_num2bin(bn, bytes) BN_bn2bin(bn, bytes)
138 #define pq_64bit_bin2num(num, bytes, len) bytes_to_long_long(bytes, num)
139 #define pq_64bit_num2bin(num, bytes) long_long_to_bytes(num, bytes)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/mtd/
H A Dubi-user.h52 * this number of bytes to the volume character device. The update is finished
53 * when the claimed number of bytes is passed. So, the volume update sequence
108 * @bytes: volume size in bytes
137 int64_t bytes; member in struct:ubi_mkvol_req
148 * @bytes: new size of the volume in bytes
152 * smaller then the number of bytes they bear. To arbitrarily shrink a static
154 * zero number of bytes).
157 int64_t bytes; member in struct:ubi_rsvol_req
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/
H A Dxor.h47 xor_arm4regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
49 unsigned int lines = bytes / sizeof(unsigned long) / 4;
67 xor_arm4regs_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
70 unsigned int lines = bytes / sizeof(unsigned long) / 4;
89 xor_arm4regs_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
92 unsigned int lines = bytes / sizeof(unsigned long) / 2;
108 xor_arm4regs_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
111 unsigned int lines = bytes / sizeof(unsigned long) / 2;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm26/
H A Dxor.h47 xor_arm4regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
49 unsigned int lines = bytes / sizeof(unsigned long) / 4;
67 xor_arm4regs_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
70 unsigned int lines = bytes / sizeof(unsigned long) / 4;
89 xor_arm4regs_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
92 unsigned int lines = bytes / sizeof(unsigned long) / 2;
108 xor_arm4regs_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
111 unsigned int lines = bytes / sizeof(unsigned long) / 2;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/i2c/other/
H A Dpt2258.c48 unsigned char bytes[2]; local
52 bytes[0] = PT2258_CMD_RESET;
54 if (snd_i2c_sendbytes(pt->i2c_dev, bytes, 1) != 1)
60 bytes[0] = PT2258_CMD_MUTE;
62 if (snd_i2c_sendbytes(pt->i2c_dev, bytes, 1) != 1)
69 bytes[0] = 0xd0;
70 bytes[1] = 0xe0;
72 if (snd_i2c_sendbytes(pt->i2c_dev, bytes, 2) != 2)
111 unsigned char bytes[2]; local
120 bytes[
166 unsigned char bytes[2]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/lib/
H A Dev6-memcpy.S8 * - uses bcmpge to compare 8 bytes in parallel
67 ldq $1, 0($17) # L : get 8 bytes
84 wh64 ($7) # L1 : memory subsystem hint: 64 bytes at
86 ldq $6, 0($17) # L0 : bytes 0..7
90 ldq $4, 8($17) # L : bytes 8..15
91 ldq $5, 16($17) # L : bytes 16..23
95 ldq $3, 24($17) # L : bytes 24..31
100 addq $17, 32, $17 # E : src += 32 bytes
101 stq $6, 0($16) # L : bytes 0..7
105 stq $4, 8($16) # L : bytes
[all...]

Completed in 232 milliseconds

1234567891011>>