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

1234567891011>>

/openbsd-current/gnu/usr.bin/texinfo/lib/
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)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dnest18.C24 int foo(Length length) const;
27 int String::foo(Length length) const {
28 return length;
/openbsd-current/gnu/usr.bin/cvs/lib/
H A Dmemmove.c1 /* memmove -- copy memory regions of arbitary length
22 memmove -- copy memory regions of arbitary length
47 memmove (out, in, length)
50 size_t length;
52 bcopy(in, out, length);
H A Dftruncate.c13 ftruncate (fd, length)
15 off_t length;
17 return fcntl (fd, F_CHSIZE, length);
29 ftruncate (fd, length)
31 off_t length;
39 if (filebuf.st_size < length)
41 /* Extend file length. */
42 if (lseek (fd, (length - 1), SEEK_SET) < 0)
51 /* Truncate length. */
54 fl.l_start = length;
[all...]
/openbsd-current/lib/libc/string/
H A Dbcmp.c38 bcmp(const void *b1, const void *b2, size_t length) argument
42 if (length == 0)
49 while (--length);
H A Dbzero.c38 bzero(void *b, size_t length) argument
42 for (p = b; length--;)
H A Dbcopy.c49 bcopy(const void *src0, void *dst0, size_t length) argument
55 if (length == 0 || dst == src) /* nothing to do */
74 if ((t ^ (long)dst) & wmask || length < wsize)
75 t = length;
78 length -= t;
84 t = length / wsize;
86 t = length & wmask;
94 src += length;
95 dst += length;
98 if ((t ^ (long)dst) & wmask || length <
[all...]
H A Dmemmove.c49 memmove(void *dst0, const void *src0, size_t length) argument
55 if (length == 0 || dst == src) /* nothing to do */
74 if ((t ^ (long)dst) & wmask || length < wsize)
75 t = length;
78 length -= t;
84 t = length / wsize;
86 t = length & wmask;
94 src += length;
95 dst += length;
98 if ((t ^ (long)dst) & wmask || length <
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D941014-1.c5 register length;
9 tmp = (wch>>(unsigned int)(length * mult));
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dlength.t14 is(length(""), 0);
15 is(length("abc"), 3);
17 is(length(), 6);
23 is(length($a), 1);
27 is(length($a), 1);
33 is(length($a), 1);
37 is(length($a), 2);
43 is(length($a), 1);
47 is(length($a), 2);
53 is(length(
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/docs/doxygen/
H A Ddoxygroups.cc161 @a *length bytes, into which the demangled name
167 @param length If @a length is non-NULL, the length of the buffer containing
168 the demangled name is placed in @a *length.
194 size_t* length, int* status);
/openbsd-current/gnu/lib/libstdc++/libstdc++/docs/doxygen/
H A Ddoxygroups.cc145 @a *length bytes, into which the demangled name
151 @param length If @a length is non-NULL, the length of the buffer containing
152 the demangled name is placed in @a *length.
178 size_t* length, int* status);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20021015-1.c7 void g (void *p, char *list, int length, char **elementPtr, char **nextPtr) argument
19 int i, length = 100; local
24 g (0, list, length, &element, &list);
25 length -= (list - prevList);
/openbsd-current/usr.bin/dig/lib/isc/include/isc/
H A Dregion.h28 unsigned int length; member in struct:isc_region
33 unsigned int length; member in struct:isc_textregion
46 INSIST(_r->length >= _l); \
48 _r->length -= _l; \
/openbsd-current/gnu/usr.bin/perl/t/uni/
H A Dtie.t34 my $length = length $t;
38 is (length $u, $length, "length of '$t'");
39 is (length $u, $length, "length of '$t'");
40 is (length $u, $length, "lengt
[all...]
/openbsd-current/gnu/llvm/lldb/examples/summaries/
H A Dunicode_strings.py2 Example data formatters for strings represented as (pointer,length) pairs
18 length = value.GetChildMemberWithName("second").GetValueAsUnsigned(0)
21 if length == 0:
24 string_data = value.process.ReadMemory(pointer, length, error)
30 length = value.GetChildMemberWithName("second").GetValueAsUnsigned(0)
31 # assume length is in bytes - if in UTF16 chars, just multiply by 2
34 if length == 0:
37 string_data = value.process.ReadMemory(pointer, length, error)
44 length = value.GetChildMemberWithName("second").GetValueAsUnsigned(0)
45 # assume length i
[all...]
/openbsd-current/sys/lib/libkern/
H A Dbcopy.c55 bcopy(const void *src0, void *dst0, size_t length) argument
61 if (length == 0 || dst == src) /* nothing to do */
80 if ((t ^ (long)dst) & wmask || length < wsize)
81 t = length;
84 length -= t;
90 t = length / wsize;
92 t = length & wmask;
100 src += length;
101 dst += length;
104 if ((t ^ (long)dst) & wmask || length <
[all...]
H A Dbzero.c40 bzero(void *b, size_t length) argument
44 for (p = b; length--;)
/openbsd-current/gnu/usr.bin/perl/cpan/HTTP-Tiny/t/
H A D040_content.t22 my $length = $nchunks * length $chunk;
27 headers => { 'content-length' => $length }
30 is($got, $length, "written $length octets");
37 $handle->read_content_body(sub { $got += length $_[0] }, {}, $length);
38 is($got, $length, "read $length octet
[all...]
/openbsd-current/usr.bin/dig/lib/dns/rdata/generic/
H A Dopt_41.c29 uint16_t length; local
39 while (r.length > 0) {
42 length = uint16_fromregion(&r);
44 snprintf(buf, sizeof(buf), "%u %u", option, length);
46 INSIST(r.length >= length);
47 if (length > 0) {
52 or.length = length;
59 isc_region_consume(&r, length);
75 uint16_t length; local
[all...]
/openbsd-current/gnu/lib/libiberty/src/
H A Ddyn-string.c82 ds_struct_ptr->length = 0;
185 ds->length = 0;
199 if (dyn_string_resize (dest, src->length) == NULL)
204 dest->length = src->length;
215 int length = strlen (src); local
217 if (dyn_string_resize (dest, length) == NULL)
222 dest->length = length;
260 if (dyn_string_resize (dest, dest->length
281 int length = strlen (src); local
377 int length = end - start; local
[all...]
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);
/openbsd-current/gnu/usr.bin/binutils/gas/
H A Doutput-file.h22 void output_file_append (char *where, long length, char *filename);
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/
H A Doutput-file.h22 void output_file_append (char *where, long length, char *filename);

Completed in 486 milliseconds

1234567891011>>