Searched refs:len (Results 26 - 50 of 2040) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dchkp-stropt-13.c8 void test (int *buf1, int *buf2, size_t len) argument
10 memcpy (buf1, buf2, len);
H A Dchkp-stropt-11.c8 void test (void *buf1, void *buf2, size_t len) argument
10 memmove (buf1, buf2, len);
H A Dchkp-stropt-1.c8 void test (int *buf1, int *buf2, size_t len) argument
10 memcpy (buf1, buf2, len);
H A Dchkp-stropt-10.c8 void test (void *buf1, int c, size_t len) argument
10 memset (buf1, c, len);
H A Dchkp-stropt-16.c10 void test (int *buf1, int *buf2, size_t len) argument
12 mempcpy (buf1, buf2, len);
H A Dchkp-stropt-4.c10 void test (int *buf1, int *buf2, size_t len) argument
12 mempcpy (buf1, buf2, len);
H A Dchkp-stropt-15.c8 void test (int *buf1, int *buf2, size_t len) argument
10 memmove (buf1, buf2, len);
H A Dchkp-stropt-14.c8 void test (int *buf1, int c, size_t len) argument
10 memset (buf1, c, len);
H A Dchkp-stropt-3.c8 void test (int *buf1, int *buf2, size_t len) argument
10 memmove (buf1, buf2, len);
H A Dchkp-stropt-7.c8 void test (int *buf1, int *buf2, size_t len) argument
10 memmove (buf1, buf2, len);
H A Dchkp-stropt-5.c8 void test (int *buf1, int *buf2, size_t len) argument
10 memcpy (buf1, buf2, len);
H A Dchkp-stropt-2.c8 void test (int *buf1, int c, size_t len) argument
10 memset (buf1, c, len);
H A Dchkp-stropt-6.c8 void test (int *buf1, int c, size_t len) argument
10 memset (buf1, c, len);
H A Dchkp-stropt-8.c10 void test (int *buf1, int *buf2, size_t len) argument
12 mempcpy (buf1, buf2, len);
H A Dchkp-stropt-9.c8 void test (void *buf1, void *buf2, size_t len) argument
10 memcpy (buf1, buf2, len);
/haiku-buildtools/binutils/libiberty/
H A Dxstrndup.c51 size_t len = strlen (s); local
53 if (n < len)
54 len = n;
56 result = XNEWVEC (char, len + 1);
58 result[len] = '\0';
59 return (char *) memcpy (result, s, len);
H A Dbcopy.c15 bcopy (const void *src, void *dest, size_t len) argument
21 while (len--)
26 const char *lasts = (const char *)src + (len-1);
27 char *lastd = (char *)dest + (len-1);
28 while (len--)
/haiku-buildtools/gcc/libiberty/
H A Dxstrndup.c51 size_t len = strlen (s); local
53 if (n < len)
54 len = n;
56 result = XNEWVEC (char, len + 1);
58 result[len] = '\0';
59 return (char *) memcpy (result, s, len);
H A Dbcopy.c15 bcopy (const void *src, void *dest, size_t len) argument
21 while (len--)
26 const char *lasts = (const char *)src + (len-1);
27 char *lastd = (char *)dest + (len-1);
28 while (len--)
/haiku-buildtools/legacy/binutils/libiberty/
H A Dxstrndup.c51 size_t len = strlen (s); local
53 if (n < len)
54 len = n;
56 result = XNEWVEC (char, len + 1);
58 result[len] = '\0';
59 return (char *) memcpy (result, s, len);
/haiku-buildtools/legacy/gcc/libiberty/
H A Dbcopy.c21 bcopy (src, dest, len)
23 int len;
26 while (len--)
30 char *lasts = src + (len-1);
31 char *lastd = dest + (len-1);
32 while (len--)
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/tree-ssa/
H A Dpr47707.C19 int len; local
21 for (len = 4; len >= 1; len--)
24 ch.ch = len;
26 v2 = len;
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr54925.c8 baz (char *buf, unsigned short len) argument
11 if (len == 0)
13 nr_memcpy (data, (unsigned char *) buf, len);
18 nr_memcpy (unsigned char * to, unsigned char * from, unsigned short len) argument
21 while (len > 0)
23 len--;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dattr-assume_aligned-3.c4 char *my_alloc1 (int len) __attribute__((__assume_aligned__ (32)));
5 char *my_alloc2 (int len) __attribute__((assume_aligned (32, 4)));
8 test1 (int len) argument
11 char *p = my_alloc1 (len);
16 test2 (int len) argument
19 char *p = my_alloc2 (len);
H A Dattr-alloc_align-3.c4 char *my_alloc1 (int len, int align) __attribute__((__alloc_align__ (2)));
5 char *my_alloc2 (int align, int len) __attribute__((alloc_align (1)));
8 test1 (int len) argument
11 char *p = my_alloc1 (len, 32);
16 test2 (int len) argument
19 char *p = my_alloc2 (32, len);
24 test3 (int len) argument
27 char *p = my_alloc1 (len, 16);
32 test4 (int len) argument
35 char *p = my_alloc2 (16, len);
40 test5(int len, int align) argument
48 test6(int len, int align) argument
[all...]

Completed in 175 milliseconds

1234567891011>>