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

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dnested_array_constructor_4.f904 ! Alternate test that also produced an ICE because of a missing length.
9 INTEGER :: length variable in program:test
12 length = LEN ( (/ TRIM(x), 'a' /) // 'c')
14 IF (length /= 2) THEN
H A Ddeferred_character_assignment_1.f909 integer :: length variable
11 length = len (z)
13 if (len(z) .ne. length) call abort
16 if (len(z) .ne. length) call abort
19 if (len(z) .ne. length) call abort
H A Dint_2.f9010 subroutine token_allreduce_i8_v(dowhat, array, result, length)
14 integer, intent(in) :: length local in subroutine:token_allreduce_i8_v
19 real(REAL8) :: copy_r8(length), result_r8(length)
22 result(1:length) = int(result_r8(1:length), INT8)
/haiku-buildtools/legacy/gcc/texinfo/lib/
H A Dmemmove.c11 memmove (dest, source, length)
14 unsigned length;
18 for (source += length, dest += length; length; --length)
22 for (; length; --length)
/haiku-buildtools/legacy/gcc/texinfo/libtxi/
H A Dmemmove.c11 memmove (dest, source, length)
14 unsigned length;
18 for (source += length, dest += length; length; --length)
22 for (; length; --length)
H A Dbzero.c23 bzero (b, length)
25 register int length;
31 while (length > max_str)
34 length -= max_str;
37 (void) LIB$MOVC5 (&zero, &zero, &zero, &length, b);
39 while (length-- > 0)
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dconst-high-part.c8 sub (int length) argument
10 if (length <= buflen)
11 buf[length] = '\0';
H A Dpr41181.c4 static void x264_slicetype_path(char (*best_paths)[250], int n, int length) argument
6 __builtin_memcpy (best_paths[n], paths, length);
8 void x264_slicetype_analyse(int n, int length) argument
11 x264_slicetype_path (best_paths, n, length);
H A D20080903-1.c1 struct bar { unsigned short length; }; member in struct:bar
10 a->length = ((char *) b - c);
H A D941014-1.c5 register length;
9 tmp = (wch>>(unsigned int)(length * mult));
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/cilk-plus/AN/
H A Dpr61962.c11 void f (struct FloatStruct* dst, float *src, unsigned int length) argument
13 dst->f[0:length] = src[0:length];
/haiku-buildtools/isl/test_inputs/codegen/
H A Dseparate2.c1 if ((length - 1) % 16 <= 14)
5 if ((2 * c5 - c6 + 31) % 32 == 31 && 2 * ((length - 1) % 16) + 2 * c5 == 2 * ((length - 1) % 32) + c6 && c6 + 62 >= 2 * ((length - 1) % 16) + 2 * c5 && 2 * length + c6 >= 2 * ((length - 1) % 16) + 4 && 2 * ((length - 1) % 16) >= c6 && 2 * ((length - 1) % 16) + 2 * c5 >= c6)
6 S_3(c0, 0, (-(2 * ((length - 1) % 16)) + 2 * length
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dpr24315.c7 long length = ((((exponent) + ((((sizeof (long)) * 8) - 2) - 1)) / local
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dvariadic37.C5 static const __SIZE_TYPE__ length = sizeof...(Values); member in struct:tuple
8 int a0[tuple<>::length == 0? 1 : -1];
9 int a1[tuple<int>::length == 1? 1 : -1];
10 int a2[tuple<int, float>::length == 2? 1 : -1];
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dtailcall-5.c5 set_integer (void *dest, int value, int length) argument
8 __builtin_memcpy (dest, (void *) &tmp, length);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/abi/
H A Dpr42230.cc9 std::size_t length = 0; local
12 char* ret = abi::__cxa_demangle("e", 0, &length, &cc);
14 assert( (cc < 0 && !ret) || (ret && length) );
/haiku-buildtools/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;
/haiku-buildtools/gcc/liboffloadmic/runtime/
H A Doffload_common.cpp79 int64_t length
83 data, length);
84 memcpy(buffer_ptr, data, (size_t)length);
85 buffer_ptr += length;
86 tfr_size += length;
91 int64_t length
95 data, length);
96 memcpy(data, buffer_ptr, (size_t)length);
97 buffer_ptr += length;
98 tfr_size += length;
107 size_t length; local
139 size_t length; local
[all...]
/haiku-buildtools/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);
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/arm/
H A Dpr43920-2.c12 size_t length; local
20 length = end - start;
21 if (length == 0)
25 *length_ = length;
/haiku-buildtools/binutils/gold/
H A Dftruncate.c36 ftruncate (int fd, off_t length) argument
38 return fcntl (fd, F_CHSIZE, length);
50 ftruncate (int fd, off_t length) argument
58 if (filebuf.st_size < length)
60 /* Extend file length. */
61 if (lseek (fd, (length - 1), SEEK_SET) < 0)
71 /* Truncate length. */
75 fl.l_start = length;
93 ftruncate (int fd, off_t length) argument
95 return chsize (fd, length);
103 ftruncate(int fd, off_t length) argument
[all...]
/haiku-buildtools/binutils/libiberty/
H A Dmemchr.c8 @var{c}, or after @var{length} characters; in particular, a null
10 found within @var{length} characters of @code{*@var{s}}, a pointer
22 memchr (register const PTR src_void, int c, size_t length) argument
26 while (length-- > 0)
H A Dmemcpy.c7 size_t @var{length})
9 Copies @var{length} bytes from memory region @var{in} to region
22 memcpy (PTR out, const PTR in, size_t length) argument
24 bcopy(in, out, length);
/haiku-buildtools/gcc/libiberty/
H A Dmemchr.c8 @var{c}, or after @var{length} characters; in particular, a null
10 found within @var{length} characters of @code{*@var{s}}, a pointer
22 memchr (register const PTR src_void, int c, size_t length) argument
26 while (length-- > 0)
H A Dmemcpy.c7 size_t @var{length})
9 Copies @var{length} bytes from memory region @var{in} to region
22 memcpy (PTR out, const PTR in, size_t length) argument
24 bcopy(in, out, length);

Completed in 282 milliseconds

1234567891011>>