Searched refs:length (Results 1 - 25 of 5377) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/asm/
H A DByteVector.java48 int length; field in class:ByteVector
76 int length = this.length;
77 if (length + 1 > data.length) {
80 data[length++] = (byte) b;
81 this.length = length;
94 int length = this.length;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dmemmove.c11 memmove (void *dest0, void const *source0, size_t length) argument
17 for (source += length, dest += length; length; --length)
22 for (; length; --length)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libiconv-1.10/srclib/
H A Dmemmove.c11 memmove (char *dest, const char *source, unsigned length) argument
16 for (source += length, dest += length; length; --length)
21 for (; length; --length)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dmemmove.c11 memmove (void *dest0, void const *source0, size_t length) argument
17 for (source += length, dest += length; length; --length)
22 for (; length; --length)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libiconv-1.11/srclib/
H A Dmemmove.c13 memmove (void *dest0, void const *source0, size_t length) argument
19 for (source += length, dest += length; length; --length)
24 for (; length; --length)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dfltrimpl.h28 #define FILTER_OUTPUT3(site, statement, output, length, messageEnd, channel) \
32 if (Output(site, output, length, messageEnd, blocking, channel)) \
33 return STDMAX(size_t(1), length-m_inputPosition);\
36 #define FILTER_OUTPUT2(site, statement, output, length, messageEnd) \
37 FILTER_OUTPUT3(site, statement, output, length, messageEnd, DEFAULT_CHANNEL)
39 #define FILTER_OUTPUT(site, output, length, messageEnd) \
40 FILTER_OUTPUT2(site, 0, output, length, messageEnd)
45 #define FILTER_OUTPUT2_MODIFIABLE(site, statement, output, length, messageEnd) \
49 if (OutputModifiable(site, output, length, messageEnd, blocking)) \
50 return STDMAX(size_t(1), length
[all...]
H A Dstrciphr.cpp12 void AdditiveCipherTemplate<S>::UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &params) argument
15 policy.CipherSetKey(params, key, length);
29 void AdditiveCipherTemplate<S>::GenerateBlock(byte *outString, size_t length) argument
33 size_t len = STDMIN(m_leftOver, length);
35 length -= len;
39 if (!length)
47 if (length >= bytesPerIteration)
49 size_t iterations = length / bytesPerIteration;
52 length -= iterations * bytesPerIteration;
55 if (length >
67 ProcessData(byte *outString, const byte *inString, size_t length) argument
126 Resynchronize(const byte *iv, int length) argument
153 UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &params) argument
169 Resynchronize(const byte *iv, int length) argument
177 ProcessData(byte *outString, const byte *inString, size_t length) argument
233 CombineMessageAndShiftRegister(byte *output, byte *reg, const byte *message, size_t length) argument
240 CombineMessageAndShiftRegister(byte *output, byte *reg, const byte *message, size_t length) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/unistr/
H A Dtest-strnlen.h20 check_single (const UNIT *input, size_t length, size_t n) argument
23 ASSERT (result == (n <= length ? n : length));
29 size_t length; local
34 length = input_length - 1; /* = U_STRLEN (input) */
36 for (n = 0; n <= 2 * length + 2; n++)
37 check_single (input, length, n);
46 for (n = 0; n <= 2 * length + 2; n++)
48 size_t n_to_copy = (n <= length ? n : length
[all...]
H A Dtest-stpncpy.h20 check_single (const UNIT *input, size_t length, size_t n) argument
33 ASSERT (result == dest + 1 + (n <= length ? n : length));
36 for (i = 0; i < (n <= length ? n : length + 1); i++)
48 size_t length; local
53 length = input_length - 1; /* = U_STRLEN (input) */
55 for (n = 0; n <= 2 * length + 2; n++)
56 check_single (input, length, n);
65 for (n = 0; n <= 2 * length
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/third-party/miniupnp/
H A Dreceivedata.h14 int receivedata(int socket, char * data, int length, int timeout);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/mips/
H A Dcelp_math_mips.c59 int length)
62 const float* a_end = a + length;
66 "blez %[length], ff_dot_productf_end%= \n\t"
77 : [a_end]"r"(a_end), [length] "r" (length)
58 ff_dot_productf_mips(const float* a, const float* b, int length) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unistdio/
H A Du-vasprintf.h20 size_t length; local
21 DCHAR_T *result = VASNPRINTF (NULL, &length, format, args);
25 if (length > INT_MAX)
34 return length;
H A Du-vsnprintf.h20 size_t length; local
26 length = size;
27 result = VASNPRINTF (buf, &length, format, args);
37 size_t n = (length < size ? length : size - 1);
44 if (length > INT_MAX)
51 return length;
H A Du-vsprintf.h24 /* Pass an infinite length. But note that *vasnprintf may fail if the buffer
26 Also note that glibc's iconv fails with E2BIG when we pass a length that
27 is so large that buf + length wraps around, i.e.
28 (uintptr_t) (buf + length) < (uintptr_t) buf. */
29 size_t length; local
32 /* Set length = min (SIZE_MAX, INT_MAX, - (uintptr_t) buf - 1). */
33 length = (SIZE_MAX < INT_MAX ? SIZE_MAX : INT_MAX);
34 if (length > (~ (uintptr_t) buf) / sizeof (DCHAR_T))
35 length = (~ (uintptr_t) buf) / sizeof (DCHAR_T);
37 result = VASNPRINTF (buf, &length, forma
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/uniconv/
H A Du8-strconv-to-enc.c38 size_t length; local
43 length = u8_strlen (string) + 1;
45 if (u8_check (string, length))
51 result = (char *) malloc (length);
57 memcpy (result, (const char *) string, length);
63 length = 0;
67 NULL, &result, &length) < 0)
70 if (!(length > 0 && result[length-1] == '\0'
71 && strlen (result) == length
[all...]
H A Du-strconv-from-enc.h23 size_t length; local
28 NULL, &length);
32 if (!(length > 0 && result[length-1] == 0
33 && U_STRLEN (result) == length-1))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/
H A Dexstorob.c68 u32 length; local
82 length = source_desc->buffer.length;
85 * If target is a buffer of length zero or is a static buffer,
86 * allocate a new buffer of the proper length
88 if ((target_desc->buffer.length == 0) ||
90 target_desc->buffer.pointer = ACPI_ALLOCATE(length);
95 target_desc->buffer.length = length;
100 if (length <
165 u32 length; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Ddata_blob.c3 Easy management of byte-length data
40 DATA_BLOB data_blob(const void *p, size_t length) argument
44 if (!length) {
50 ret.data = (uint8 *)smb_xmemdup(p, length);
52 ret.data = SMB_XMALLOC_ARRAY(uint8, length);
54 ret.length = length;
63 DATA_BLOB data_blob_talloc(TALLOC_CTX *mem_ctx, const void *p, size_t length) argument
67 if (!length) {
73 ret.data = (uint8 *)TALLOC_MEMDUP(mem_ctx, p, length);
138 data_blob_const(const void *p, size_t length) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dcrc32.h14 #define crc32(seed, data, length) crc32_le(seed, (unsigned char const *)data, length)
24 #define ether_crc(length, data) bitrev32(crc32_le(~0, data, length))
25 #define ether_crc_le(length, data) crc32_le(~0, data, length)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/clib/
H A Dmemmove.c64 memcpy(dst0, src0, length)
73 memmove(dst0, src0, length)
76 bcopy(src0, dst0, length)
81 register size_t length;
87 if (length == 0 || dst == src) /* nothing to do */
108 if ((t ^ (size_t)dst) & wmask || length < wsize)
109 t = length;
112 length -= t;
118 t = length / wsize;
120 t = length
[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 DFastInputStream.java41 len = buffer.length;
51 * @param length the number of bytes to read.
53 public FastInputStream(byte[] buffer, int offset, int length) { argument
57 len = offset + length;
99 return readFast(toBuf, 0, toBuf.length);
102 public int read(byte[] toBuf, int offset, int length) throws IOException { argument
104 return readFast(toBuf, offset, length);
136 return readFast(toBuf, 0, toBuf.length);
144 public final int readFast(byte[] toBuf, int offset, int length) { argument
150 if (length > avai
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Dprint-beep.c33 /* Check for a string but not go beyond length
52 beep_print(const u_char *bp, u_int length) argument
55 if (l_strnstart("MSG", 4, (const char *)bp, length)) /* A REQuest */
57 else if (l_strnstart("RPY ", 4, (const char *)bp, length))
59 else if (l_strnstart("ERR ", 4, (const char *)bp, length))
61 else if (l_strnstart("ANS ", 4, (const char *)bp, length))
63 else if (l_strnstart("NUL ", 4, (const char *)bp, length))
65 else if (l_strnstart("SEQ ", 4, (const char *)bp, length))
67 else if (l_strnstart("END", 4, (const char *)bp, length))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/otus/
H A Dwrap_mem.c51 void zfwMemoryCopy(u8_t *dst, u8_t *src, u16_t length) argument
55 memcpy(dst, src, length);
57 * for(i=0; i<length; i++)
65 void zfwZeroMemory(u8_t *va, u16_t length) argument
68 memset(va, 0, length);
70 * for(i=0; i<length; i++)
78 void zfwMemoryMove(u8_t *dst, u8_t *src, u16_t length) argument
80 memcpy(dst, src, length);
84 u8_t zfwMemoryIsEqual(u8_t *m1, u8_t *m2, u16_t length) argument
89 ret = memcmp(m1, m2, length);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Dcheck_signature.c8 * @length: length of signature
16 const unsigned char *signature, int length)
18 while (length--) {
15 check_signature(const volatile void __iomem *io_addr, const unsigned char *signature, int length) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/libasprintf/
H A Dvasprintf.c42 size_t length; local
43 char *result = vasnprintf (NULL, &length, format, args);
47 if (length > INT_MAX)
56 return length;

Completed in 227 milliseconds

1234567891011>>