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

1234567891011>>

/freebsd-10.1-release/contrib/ntp/tests/ntpd/
H A Drc_cmdlength.c17 size_t length, commandLength; local
23 length = strlen(command1);
24 commandLength = remoteconfig_cmdlength(command1, command1+length);
27 length = strlen(command2);
28 commandLength = remoteconfig_cmdlength(command2, command2+length);
31 length = strlen(command3);
32 commandLength = remoteconfig_cmdlength(command3, command3+length);
35 length = strlen(command4);
36 commandLength = remoteconfig_cmdlength(command4, command4+length);
/freebsd-10.1-release/crypto/heimdal/lib/asn1/
H A Dder_cmp.c39 if (p->length != q->length)
40 return p->length - q->length;
43 p->length * sizeof(*p->components));
50 if (p->length != q->length)
51 return p->length - q->length;
52 return memcmp(p->data, q->data, p->length);
[all...]
H A Dder_copy.c88 to->length = from->length;
89 to->data = malloc(to->length + 1);
92 memcpy(to->data, from->data, to->length);
93 ((char *)to->data)[to->length] = '\0';
107 to->length = from->length;
108 to->data = malloc(to->length * sizeof(to->data[0]));
109 if(to->length != 0 && to->data == NULL)
111 memcpy(to->data, from->data, to->length * sizeo
[all...]
/freebsd-10.1-release/sys/boot/arm/at91/libat91/
H A Dsd-card.h33 int MCI_write (unsigned dest, char* source, unsigned length);
34 int MCI_read (char* dest, unsigned source, unsigned length);
/freebsd-10.1-release/contrib/ntp/lib/isc/
H A Dregion.c38 l = (r1->length < r2->length) ? r1->length : r2->length;
43 return ((r1->length == r2->length) ? 0 :
44 (r1->length < r2->length) ? -1 : 1);
H A Dbufferlist.c33 unsigned int length; local
37 length = 0;
41 length += isc_buffer_usedlength(buffer);
45 return (length);
51 unsigned int length; local
55 length = 0;
59 length += isc_buffer_availablelength(buffer);
63 return (length);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDataExtractor.cpp17 uint64_t length = GetU32(offset_ptr); local
18 m_is_dwarf64 = (length == UINT32_MAX);
20 length = GetU64(offset_ptr);
21 return length;
/freebsd-10.1-release/lib/libc/string/
H A Dbcmp.c42 bcmp(const void *b1, const void *b2, size_t length) argument
46 if (length == 0)
53 while (--length);
54 return (length);
/freebsd-10.1-release/lib/libc/sys/
H A Dftruncate.c46 ftruncate(fd, length)
48 off_t length;
52 return(__sys_ftruncate(fd, length));
54 return(__sys_freebsd6_ftruncate(fd, 0, length));
H A Dtruncate.c46 truncate(path, length)
48 off_t length;
52 return(__sys_truncate(path, length));
54 return(__sys_freebsd6_truncate(path, 0, length));
/freebsd-10.1-release/sys/powerpc/ps3/
H A Dps3-hv-header.awk24 for (i = 1; i <= length(ins); i++) {
26 if (i < length(ins)) printf(", ");
29 if (length(outs) > 0 && length(ins) > 0)
32 for (i = 1; i <= length(outs); i++) {
34 if (i < length(outs)) printf(", ");
37 if (length(outs) == 0 && length(ins) == 0)
/freebsd-10.1-release/contrib/ntp/lib/isc/include/isc/
H A Dregion.h29 unsigned int length; member in struct:isc_region
34 unsigned int length; member in struct:isc_textregion
42 unsigned int length; member in struct:isc_constregion
47 unsigned int length; member in struct:isc_consttextregion
60 INSIST(_r->length >= _l); \
62 _r->length -= _l; \
69 INSIST(_r->length >= _l); \
71 _r->length -= _l; \
78 INSIST(_r->length >= _l); \
80 _r->length
[all...]
/freebsd-10.1-release/lib/libc/i386/sys/
H A Di386_get_ioperm.c33 i386_get_ioperm(unsigned int start, unsigned int *length, int *enable) argument
39 p.length = *length;
44 *length = p.length;
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_entry_sparse.c54 int64_t offset, int64_t length)
58 if (offset < 0 || length < 0)
61 if (offset + length < 0 ||
62 offset + length > archive_entry_size(entry))
63 /* A value of "length" parameter is too large. */
66 if (sp->offset + sp->length > offset)
69 if (sp->offset + sp->length == offset) {
70 if (sp->offset + sp->length + length < 0)
71 /* A value of "length" paramete
53 archive_entry_sparse_add_entry(struct archive_entry *entry, int64_t offset, int64_t length) argument
137 archive_entry_sparse_next(struct archive_entry * entry, int64_t *offset, int64_t *length) argument
[all...]
/freebsd-10.1-release/contrib/binutils/gas/
H A Doutput-file.h22 void output_file_append (char *where, long length, char *filename);
/freebsd-10.1-release/contrib/binutils/libiberty/
H A Dmemchr.c7 @var{c}, or after @var{length} characters; in particular, a null
9 found within @var{length} characters of @code{*@var{s}}, a pointer
21 memchr (register const PTR src_void, int c, size_t length) argument
25 while (length-- > 0)
H A Dmemcpy.c6 @deftypefn Supplemental void* memcpy (void *@var{out}, const void *@var{in}, size_t @var{length})
8 Copies @var{length} bytes from memory region @var{in} to region
21 memcpy (PTR out, const PTR in, size_t length) argument
23 bcopy(in, out, length);
H A Ddyn-string.c73 ds_struct_ptr->length = 0;
176 ds->length = 0;
190 if (dyn_string_resize (dest, src->length) == NULL)
195 dest->length = src->length;
206 int length = strlen (src); local
208 if (dyn_string_resize (dest, length) == NULL)
213 dest->length = length;
251 if (dyn_string_resize (dest, dest->length
272 int length = strlen (src); local
368 int length = end - start; local
[all...]
/freebsd-10.1-release/contrib/gcclibs/libiberty/
H A Dmemchr.c7 @var{c}, or after @var{length} characters; in particular, a null
9 found within @var{length} characters of @code{*@var{s}}, a pointer
21 memchr (register const PTR src_void, int c, size_t length) argument
25 while (length-- > 0)
H A Dmemcpy.c6 @deftypefn Supplemental void* memcpy (void *@var{out}, const void *@var{in}, size_t @var{length})
8 Copies @var{length} bytes from memory region @var{in} to region
21 memcpy (PTR out, const PTR in, size_t length) argument
23 bcopy(in, out, length);
H A Ddyn-string.c73 ds_struct_ptr->length = 0;
176 ds->length = 0;
190 if (dyn_string_resize (dest, src->length) == NULL)
195 dest->length = src->length;
206 int length = strlen (src); local
208 if (dyn_string_resize (dest, length) == NULL)
213 dest->length = length;
251 if (dyn_string_resize (dest, dest->length
272 int length = strlen (src); local
368 int length = end - start; local
[all...]
/freebsd-10.1-release/contrib/tcpdump/
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))
/freebsd-10.1-release/contrib/unbound/util/storage/
H A Dlookup3.h49 * @param length: the length of the key, in uint32_ts
53 uint32_t hashword(const uint32_t *k, size_t length, uint32_t initval);
58 * @param length: the length of the key, in uint8_ts
62 uint32_t hashlittle(const void *k, size_t length, uint32_t initval);
/freebsd-10.1-release/crypto/heimdal/lib/krb5/
H A Dcodec.c41 size_t length,
46 return decode_EncTicketPart(data, length, t, len);
52 size_t length,
57 return encode_EncTicketPart(data, length, t, len);
63 size_t length,
68 return decode_EncASRepPart(data, length, t, len);
74 size_t length,
79 return encode_EncASRepPart(data, length, t, len);
85 size_t length,
90 return decode_EncTGSRepPart(data, length,
[all...]
/freebsd-10.1-release/sys/powerpc/powerpc/
H A Dbcopy.c66 memcpy(void *dst0, const void *src0, size_t length) argument
75 if (length == 0 || dst == src) { /* nothing to do */
96 if ((t ^ (uintptr_t)dst) & wmask || length < wsize) {
97 t = length;
102 length -= t;
108 t = length / wsize;
111 t = length & wmask;
119 src += length;
120 dst += length;
124 if ((t ^ (uintptr_t)dst) & wmask || length <
144 bcopy(const void *src0, void *dst0, size_t length) argument
[all...]

Completed in 272 milliseconds

1234567891011>>