Searched refs:length (Results 76 - 100 of 5377) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unistr/
H A Du8-to-u32.c38 size_t length; local
50 length = 0;
53 If length > 0, then result != NULL. */
72 if (length + 1 > allocated)
77 if (length + 1 > allocated)
78 allocated = length + 1;
92 if (result == resultbuf && length > 0)
94 length * sizeof (DST_UNIT));
97 result[length++] = uc;
100 if (length
[all...]
H A Du16-to-u8.c38 size_t length; local
50 length = 0;
53 If length > 0, then result != NULL. */
72 count = u8_uctomb (result + length, uc, allocated - length);
85 if (length + 6 > allocated)
86 allocated = length + 6;
100 if (result == resultbuf && length > 0)
102 length * sizeof (DST_UNIT));
104 count = u8_uctomb (result + length, u
[all...]
H A Du8-to-u16.c38 size_t length; local
50 length = 0;
53 If length > 0, then result != NULL. */
72 count = u16_uctomb (result + length, uc, allocated - length);
85 if (length + 2 > allocated)
86 allocated = length + 2;
100 if (result == resultbuf && length > 0)
102 length * sizeof (DST_UNIT));
104 count = u16_uctomb (result + length, u
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Descape.h28 const char *string, size_t length,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/packages/NetWare/
H A Dget_ver.awk30 copyright_string = substr($0, 28, length($0)-28)
32 version_string = substr($3, 2, length($3)-2)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/cio/
H A Dcio_debug.h23 static inline void CIO_HEX_EVENT(int level, void *data, int length) argument
27 while (length > 0) {
28 debug_event(cio_debug_trace_id, level, data, length);
29 length -= cio_debug_trace_id->buf_size;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dcrc32c.h6 extern u32 crc32c(u32 crc, const void *address, unsigned int length);
H A Drelay.h186 size_t length);
192 * @length: number of bytes to write
203 size_t length)
210 if (unlikely(buf->offset + length > chan->subbuf_size))
211 length = relay_switch_subbuf(buf, length);
212 memcpy(buf->data + buf->offset, data, length);
213 buf->offset += length;
221 * @length: number of bytes to write
231 size_t length)
201 relay_write(struct rchan *chan, const void *data, size_t length) argument
229 __relay_write(struct rchan *chan, const void *data, size_t length) argument
254 relay_reserve(struct rchan *chan, size_t length) argument
278 subbuf_start_reserve(struct rchan_buf *buf, size_t length) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/line6/
H A Dmidibuf.c24 static const int length[] = { 3, 3, 3, 3, 2, 2, 3 }; local
25 return length[(code >> 4) - 8];
32 static const int length[] = { -1, 2, -1, 2, -1, -1, 1, 1, 1, 1, local
34 return length[code & 0x0f];
90 int midibuf_write(struct MidiBuffer *this, unsigned char *data, int length) argument
96 if (midibuf_is_full(this) || (length <= 0))
100 if (data[length - 1] == 0xfe) {
101 --length;
107 if (length > bytes_free)
108 length
132 midibuf_read(struct MidiBuffer *this, unsigned char *data, int length) argument
235 midibuf_ignore(struct MidiBuffer *this, int length) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/des/
H A Dcbc3_enc.c62 void DES_3cbc_encrypt(DES_cblock *input, DES_cblock *output, long length, argument
66 int off=((int)length-1)/8;
67 long l8=((length+7)/8)*8;
73 (unsigned char*)output,length,&ks1,iv1,enc);
74 if (length >= sizeof(DES_cblock))
80 if (length >= sizeof(DES_cblock))
85 if (length >= sizeof(DES_cblock))
91 if (length >= sizeof(DES_cblock))
94 (unsigned char*)output,length,&ks1,iv1,enc);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/plugin_xmms/
H A Dhttp.h23 extern int flac_http_read(gpointer data, gint length);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/hardware/eicon/
H A Ddiva.h13 const void *src, int length);
16 const void __user *src, int length);
22 int length, divas_xdi_copy_from_user_fn_t cp_fn);
25 int length,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sunrpc/auth_gss/
H A Dgss_generic_token.c55 (constructed, definite-length)
56 <length> possible multiple bytes, need to parse/generate
65 the sequence tag and length octets, the mech OID DER encoding, and the
72 der_length_size( int length) argument
74 if (length < (1<<7))
76 else if (length < (1<<8))
82 else if (length < (1<<16))
84 else if (length < (1<<24))
92 der_write_length(unsigned char **buf, int length) argument
94 if (length < (
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/include/asm/
H A Dacpi-ext.h18 extern acpi_status hp_acpi_csr_space (acpi_handle, u64 *base, u64 *length);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/des/
H A Dcbc3_enc.c62 void DES_3cbc_encrypt(DES_cblock *input, DES_cblock *output, long length, argument
66 int off = ((int)length - 1) / 8;
67 long l8 = ((length + 7) / 8) * 8;
72 (unsigned char *)output, length, &ks1, iv1, enc);
73 if (length >= sizeof(DES_cblock))
79 if (length >= sizeof(DES_cblock))
82 if (length >= sizeof(DES_cblock))
88 if (length >= sizeof(DES_cblock))
91 (unsigned char *)output, length, &ks1, iv1, enc);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/des/
H A Dcbc3_enc.c62 void DES_3cbc_encrypt(DES_cblock *input, DES_cblock *output, long length, argument
66 int off = ((int)length - 1) / 8;
67 long l8 = ((length + 7) / 8) * 8;
72 (unsigned char *)output, length, &ks1, iv1, enc);
73 if (length >= sizeof(DES_cblock))
79 if (length >= sizeof(DES_cblock))
82 if (length >= sizeof(DES_cblock))
88 if (length >= sizeof(DES_cblock))
91 (unsigned char *)output, length, &ks1, iv1, enc);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Dprint-arcnet.c42 u_int length, u_int caplen);
59 arcnet_print(const u_char *bp, u_int length, int phds, int flag, u_int seqid) argument
72 length);
81 length);
88 length);
96 (flag + 3) / 2, length);
101 flag/2 + 1, length);
107 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
114 u_int length = h->len; local
143 arcnet_print(p, length,
202 u_int length = h->len; local
256 arcnet_encap_print(u_char arctype, const u_char *p, u_int length, u_int caplen) argument
[all...]
H A Dprint-chdlc.c56 register u_int length = h->len; local
63 return (chdlc_print(p,length));
67 chdlc_print(register const u_char *p, u_int length) { argument
72 printf("%s, ethertype %s (0x%04x), length %u: ",
76 length);
79 length -= CHDLC_HDRLEN;
84 ip_print(gndo, p, length);
88 ip6_print(gndo, p, length);
92 chdlc_slarp_print(p, length);
96 chdlc_cdp_print(p, length);
146 chdlc_slarp_print(const u_char *cp, u_int length) argument
[all...]
H A Dprint-ether.c93 const u_char *bp, u_int length)
119 (void)ND_PRINT((ndo, ", length %u: ", length));
130 const u_char *p, u_int length, u_int caplen,
138 if (caplen < ETHER_HDRLEN || length < ETHER_HDRLEN) {
146 ether_hdr_print(ndo, p, length);
148 orig_length = length;
150 length -= ETHER_HDRLEN;
163 if (llc_print(p, length, caplen, ESRC(ep), EDST(ep),
183 if (caplen < 4 || length <
92 ether_hdr_print(netdissect_options *ndo, const u_char *bp, u_int length) argument
129 ether_print(netdissect_options *ndo, const u_char *p, u_int length, u_int caplen, void (*print_encap_header)(netdissect_options *ndo, const u_char *), const u_char *encap_header_arg) argument
321 ethertype_print(netdissect_options *ndo, u_short ether_type, const u_char *p, u_int length, u_int caplen) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/arcnet/
H A Darc-rawmode.c40 struct archdr *pkthdr, int length);
43 static int prepare_tx(struct net_device *dev, struct archdr *pkt, int length,
89 struct archdr *pkthdr, int length)
96 BUGMSG(D_DURING, "it's a raw packet (length=%d)\n", length);
98 if (length > MTU)
99 ofs = 512 - length;
101 ofs = 256 - length;
103 skb = alloc_skb(length + ARC_HDR_SIZE, GFP_ATOMIC);
109 skb_put(skb, length
88 rx(struct net_device *dev, int bufnum, struct archdr *pkthdr, int length) argument
163 prepare_tx(struct net_device *dev, struct archdr *pkt, int length, int bufnum) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/mod_db4/
H A Dmm_hash.c49 static unsigned int hash_hash(const char *key, int length) argument
53 while (--length)
59 void *mm_hash_find(MM_Hash *table, const void *key, int length) argument
62 unsigned int hash = hash_hash((const char *)key, length) % MM_HASH_SIZE;
66 if (length != b->length) continue;
67 if (memcmp(key, b->key, length)) continue;
75 void mm_hash_update(MM_Hash *table, char *key, int length, void *data) argument
80 hash = hash_hash(key, length) % MM_HASH_SIZE;
84 if (length !
103 mm_hash_delete(MM_Hash *table, char *key, int length) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/
H A Dutids.c91 u32 length; local
106 length = ACPI_EISAID_STRING_SIZE;
108 length = obj_desc->string.length + 1;
115 (acpi_size) length);
133 hid->length = length;
168 u32 length; local
183 length = ACPI_MAX64_DECIMAL_DIGITS + 1;
185 length
253 u32 length; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/util/
H A DFastOutputStream.java46 * We can return the same byte[] for 0 length arrays.
136 public void write(byte[] fromBuf, int offset, int length) argument
139 writeFast(fromBuf, offset, length);
179 if (len + 1 > buf.length)
192 int needed = len + fromBuf.length - buf.length;
196 System.arraycopy(fromBuf, 0, buf, len, fromBuf.length);
197 len += fromBuf.length;
205 public final void writeFast(byte[] fromBuf, int offset, int length) { argument
207 int needed = len + length
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/uniconv/
H A Du16-conv-to-enc.c59 size_t length; local
71 length = 0;
74 If length > 0, then result != NULL. */
96 count = u8_uctomb (result + length, uc, allocated - length);
109 if (length + 6 > allocated)
110 allocated = length + 6;
124 if (result == resultbuf && length > 0)
126 length * sizeof (DST_UNIT));
128 count = u8_uctomb (result + length, u
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/unistr/
H A Dtest-strncat.h20 check_single (const UNIT *input, size_t length, size_t n) argument
47 for (i = 0; i < (n <= length ? n : length); i++)
59 size_t length; local
64 length = input_length - 1; /* = U_STRLEN (input) */
66 for (n = 0; n <= 2 * length + 2; n++)
67 check_single (input, length, n);
76 for (n = 0; n <= 2 * length + 2; n++)
78 size_t n_to_copy = (n <= length ? n : length
[all...]

Completed in 221 milliseconds

1234567891011>>