Searched refs:length (Results 151 - 175 of 5377) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/ieee1394/
H A Dieee1394_transactions.c53 int length)
56 packet->header[3] = length << 16;
73 int length)
76 packet->header[3] = length << 16;
79 packet->data_size = length + (length % 4 ? 4 - (length % 4) : 0);
83 int length)
86 packet->header[3] = (length << 16) | extcode;
88 packet->data_size = length;
52 fill_async_readblock(struct hpsb_packet *packet, u64 addr, int length) argument
72 fill_async_writeblock(struct hpsb_packet *packet, u64 addr, int length) argument
82 fill_async_lock(struct hpsb_packet *packet, u64 addr, int extcode, int length) argument
103 fill_async_stream_packet(struct hpsb_packet *packet, int length, int channel, int tag, int sync) argument
286 hpsb_make_readpacket(struct hpsb_host *host, nodeid_t node, u64 addr, size_t length) argument
314 hpsb_make_writepacket(struct hpsb_host *host, nodeid_t node, u64 addr, quadlet_t * buffer, size_t length) argument
349 hpsb_make_streampacket(struct hpsb_host *host, u8 * buffer, int length, int channel, int tag, int sync) argument
391 u32 length; local
429 u32 length; local
491 hpsb_read(struct hpsb_host *host, nodeid_t node, unsigned int generation, u64 addr, quadlet_t * buffer, size_t length) argument
538 hpsb_write(struct hpsb_host *host, nodeid_t node, unsigned int generation, u64 addr, quadlet_t * buffer, size_t length) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Dprint-ripng.c62 ripng_print(const u_char *dat, unsigned int length) argument
74 i = min(length, amt);
82 j = length / sizeof(*ni);
89 if (j * sizeof(*ni) != length - 4)
90 printf(" ripng-req %d[%u]:", j, length);
104 j = length / sizeof(*ni);
105 if (j * sizeof(*ni) != length - 4)
106 printf(" ripng-resp %d[%u]:", j, length);
122 printf(" ripng-%d ?? %u", rp->rip6_cmd, length);
H A Dprint-sll.c54 sll_print(register const struct sll_header *sllp, u_int length) argument
104 (void)printf(", length %u: ", length);
111 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
118 u_int length = h->len; local
136 sll_print(sllp, length);
141 length -= SLL_HDR_LEN;
162 ipx_print(p, length);
170 if (llc_print(p, length, caplen, NULL, NULL,
182 sll_print(sllp, length
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/Micromax/Linux/driver/ndis/src/
H A Dqmi_oper.h43 * buf_size:the data buffer length.
53 * length:the pMsgBuff max length.
56 * >0 : call success,the package length used.
59 int QCTL_GetClientID(UInt8 * pMsgBuff,UInt32 length,UInt8 qmiType);
64 * Input: length:the pMsgBuff max length.
68 * >0 : call success,the package length used.
71 int QCTL_ReleaseClientID(UInt8* pMsgBuff,UInt32 length,NDIS_QMI_STATUS* pndis_status);
76 * Input: length
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dmodes.cpp57 void CFB_ModePolicy::CipherResynchronize(const byte *iv, size_t length) argument
86 void OFB_ModePolicy::CipherResynchronize(byte *keystreamBuffer, const byte *iv, size_t length) argument
88 CopyOrZero(m_register, iv, length);
128 void CTR_ModePolicy::CipherResynchronize(byte *keystreamBuffer, const byte *iv, size_t length) argument
130 assert(length == BlockSize());
131 CopyOrZero(m_register, iv, length);
135 void BlockOrientedCipherModeBase::UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &params) argument
137 m_cipher->SetKey(key, length, params);
147 void ECB_OneWay::ProcessData(byte *outString, const byte *inString, size_t length) argument
149 assert(length
153 ProcessData(byte *outString, const byte *inString, size_t length) argument
166 ProcessLastBlock(byte *outString, const byte *inString, size_t length) argument
193 ProcessData(byte *outString, const byte *inString, size_t length) argument
207 ProcessLastBlock(byte *outString, const byte *inString, size_t length) argument
[all...]
H A Drandpool.h18 void IncorporateEntropy(const byte *input, size_t length);
22 void Put(const byte *input, size_t length) {IncorporateEntropy(input, length);} argument
H A Dauthenc.cpp56 size_t length; local
57 const byte *iv = GetIVAndThrowIfInvalid(params, length);
59 Resynchronize(iv, (int)length);
62 void AuthenticatedSymmetricCipherBase::Resynchronize(const byte *iv, int length) argument
71 Resync(iv, this->ThrowIfInvalidIVLength(length));
75 void AuthenticatedSymmetricCipherBase::Update(const byte *input, size_t length) argument
77 if (length == 0)
86 AuthenticateData(input, length);
87 m_totalHeaderLength += length;
96 AuthenticateData(input, length);
104 ProcessData(byte *outString, const byte *inString, size_t length) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/serial/
H A DSerialBinding.java109 int length = entry.getSize();
111 byte[] bufWithHeader = new byte[length + hdr.length];
113 System.arraycopy(hdr, 0, bufWithHeader, 0, hdr.length);
115 bufWithHeader, hdr.length, length);
119 new FastInputStream(bufWithHeader, 0, bufWithHeader.length),
137 * non-zero value and the size property to a value less than the length of
164 entry.setData(fo.getBufferBytes(), hdr.length,
165 fo.getBufferLength() - hdr.length);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/des/
H A Dpcbc_enc.c62 long length, DES_key_schedule *schedule,
78 for (; length>0; length-=8)
80 if (length >= 8)
86 c2ln(in,sin0,sin1,length);
101 for (; length>0; length-=8)
110 if (length >= 8)
116 l2cn(tout0,tout1,out,length);
61 DES_pcbc_encrypt(const unsigned char *input, unsigned char *output, long length, DES_key_schedule *schedule, DES_cblock *ivec, int enc) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/des/
H A Dpcbc_enc.c62 long length, DES_key_schedule *schedule,
77 for (; length > 0; length -= 8) {
78 if (length >= 8) {
82 c2ln(in, sin0, sin1, length);
96 for (; length > 0; length -= 8) {
104 if (length >= 8) {
108 l2cn(tout0, tout1, out, length);
61 DES_pcbc_encrypt(const unsigned char *input, unsigned char *output, long length, DES_key_schedule *schedule, DES_cblock *ivec, int enc) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/des/
H A Dpcbc_enc.c62 long length, DES_key_schedule *schedule,
77 for (; length > 0; length -= 8) {
78 if (length >= 8) {
82 c2ln(in, sin0, sin1, length);
96 for (; length > 0; length -= 8) {
104 if (length >= 8) {
108 l2cn(tout0, tout1, out, length);
61 DES_pcbc_encrypt(const unsigned char *input, unsigned char *output, long length, DES_key_schedule *schedule, DES_cblock *ivec, int enc) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/
H A Dpngrio.c33 png_read_data(png_structp png_ptr, png_bytep data, png_size_t length) argument
35 png_debug1(4, "reading %d bytes", (int)length);
38 (*(png_ptr->read_data_fn))(png_ptr, data, length);
51 png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length) argument
61 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
64 check = (png_size_t)fread(data, (png_size_t)1, length,
68 if (check != length)
81 png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length) argument
95 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check,
99 check = fread(n_data, 1, length, io_pt
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/png/
H A Dpngrio.c27 png_read_data(png_structp png_ptr, png_bytep data, png_size_t length) argument
29 png_debug1(4,"reading %d bytes\n", (int)length);
31 (*(png_ptr->read_data_fn))(png_ptr, data, length);
43 png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length) argument
51 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
54 check = (png_size_t)fread(data, (png_size_t)1, length,
58 if (check != length)
71 png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length) argument
83 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
86 check = fread(n_data, 1, length, io_pt
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/hardware/eicon/
H A Dum_idi.h18 int length);
22 int length);
32 int length, divas_um_idi_copy_from_user_fn_t cp_fn);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A Dgdth_proc.h11 static int gdth_set_info(char *buffer,int length,struct Scsi_Host *host,
13 static int gdth_get_info(char *buffer,char **start,off_t offset,int length,
17 int length, gdth_ha_str *ha);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/line6/
H A Dmidibuf.h29 extern int midibuf_ignore(struct MidiBuffer *mb, int length);
31 extern int midibuf_read(struct MidiBuffer *mb, unsigned char *data, int length);
36 int length);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dacelp_filters.h46 * @param filter_length filter length
47 * @param length length of output
56 int frac_pos, int filter_length, int length);
63 int frac_pos, int filter_length, int length);
72 * @param length input data size
90 const int16_t* in, int length);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/uniconv/
H A Dtest-u32-conv-to-enc.c67 size_t length; local
71 NULL, &length);
73 ASSERT (length == strlen (expected));
74 ASSERT (memcmp (result, expected, length) == 0);
98 size_t length = 0xdead; local
102 NULL, &length);
108 ASSERT (length == 0xdead);
115 ASSERT (length == strlen (expected));
116 ASSERT (memcmp (result, expected, length) == 0
117 || memcmp (result, expected_translit, length)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dsgirledec.c93 int length = FFMIN(v, width - x); local
94 if (length <= 0)
96 memset(dst + y * linesize + x, RBG323_TO_BGR8(*src), length);
97 INC_XY(length);
98 v -= length;
104 int length = FFMIN3(v, width - x, src_end - src); local
105 if (src_end - src < length || length <= 0)
107 rbg323_to_bgr8(dst + y * linesize + x, src, length);
108 INC_XY(length);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/random/
H A Drndlinux.c91 size_t length, int level )
99 size_t want = length;
107 if (n_hw > length/2)
108 n_hw = length/2;
109 if (length > 1)
110 length -= n_hw;
131 while (length)
143 if (!any_need_entropy || last_so_far != (want - length) )
145 last_so_far = want - length;
164 int nbytes = length < sizeo
88 _gcry_rndlinux_gather_random(void (*add)(const void*, size_t, enum random_origins), enum random_origins origin, size_t length, int level ) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/random/
H A Drndlinux.c91 size_t length, int level )
99 size_t want = length;
107 if (n_hw > length/2)
108 n_hw = length/2;
109 if (length > 1)
110 length -= n_hw;
131 while (length)
143 if (!any_need_entropy || last_so_far != (want - length) )
145 last_so_far = want - length;
164 int nbytes = length < sizeo
88 _gcry_rndlinux_gather_random(void (*add)(const void*, size_t, enum random_origins), enum random_origins origin, size_t length, int level ) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/unistr/
H A Dtest-u16-to-u32.c31 size_t length; local
35 result = u16_to_u32 (input, input_length, NULL, &length);
38 if (!(length == expected_length))
49 length = expected_length - 1;
50 preallocated = (uint32_t *) malloc (length * sizeof (uint32_t));
51 result = u16_to_u32 (input, input_length, preallocated, &length);
56 if (!(length == expected_length))
68 length = expected_length;
69 preallocated = (uint32_t *) malloc (length * sizeof (uint32_t));
70 result = u16_to_u32 (input, input_length, preallocated, &length);
132 size_t length; local
[all...]
H A Dtest-u16-to-u8.c31 size_t length; local
35 result = u16_to_u8 (input, input_length, NULL, &length);
38 if (!(length == expected_length))
49 length = expected_length - 1;
50 preallocated = (uint8_t *) malloc (length * sizeof (uint8_t));
51 result = u16_to_u8 (input, input_length, preallocated, &length);
56 if (!(length == expected_length))
68 length = expected_length;
69 preallocated = (uint8_t *) malloc (length * sizeof (uint8_t));
70 result = u16_to_u8 (input, input_length, preallocated, &length);
135 size_t length; local
[all...]
H A Dtest-u32-to-u16.c31 size_t length; local
35 result = u32_to_u16 (input, input_length, NULL, &length);
38 if (!(length == expected_length))
49 length = expected_length - 1;
50 preallocated = (uint16_t *) malloc (length * sizeof (uint16_t));
51 result = u32_to_u16 (input, input_length, preallocated, &length);
56 if (!(length == expected_length))
68 length = expected_length;
69 preallocated = (uint16_t *) malloc (length * sizeof (uint16_t));
70 result = u32_to_u16 (input, input_length, preallocated, &length);
132 size_t length; local
[all...]
H A Dtest-u32-to-u8.c31 size_t length; local
35 result = u32_to_u8 (input, input_length, NULL, &length);
38 if (!(length == expected_length))
49 length = expected_length - 1;
50 preallocated = (uint8_t *) malloc (length * sizeof (uint8_t));
51 result = u32_to_u8 (input, input_length, preallocated, &length);
56 if (!(length == expected_length))
68 length = expected_length;
69 preallocated = (uint8_t *) malloc (length * sizeof (uint8_t));
70 result = u32_to_u8 (input, input_length, preallocated, &length);
135 size_t length; local
[all...]

Completed in 270 milliseconds

1234567891011>>