Searched refs:len (Results 1 - 25 of 2040) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gcc.target/arm/
H A Dthumb1-load-64bit-constant-3.c7 foo (int len) argument
9 return (long long) (((long long) 1 << len) - 1);
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20001123-2.c17 unsigned len; local
19 for (len = 0; len < 2; len++)
H A D20040317-1.c1 int String2Array(int len, char strarr[][len]) argument
H A Dpr12578.c3 void trivial_regexp_p(int *s, int len) argument
5 while (--len) {
H A D20030320-1.c11 size_t len; local
20 len = 0;
21 while (name[len] == str[len] && name[len] != '\0')
22 ++len;
26 if (name[len] != '}')
32 len += 2;
34 else if (name[len] != '\0' && name[len] !
[all...]
H A D20070915-1.c11 int len; local
14 for (len = 0; len < 2; len++)
16 p = __builtin___memset_chk (u2.buf, '\0', len, 15);
H A D20110401-1.c1 void asn1_length_der (unsigned long int len, unsigned char *ans, int *ans_len) argument
5 if (len < 128) {
7 ans[0] = (unsigned char) len;
11 while (len) {
12 temp[k++] = len & 0xFF;
13 len = len >> 8;
H A Dlibcall-1.c9 int len; local
12 len = bar();
13 return digs[len];
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dtrunc-1.c10 size_t len; local
12 len = ~(sizeof (size_t) - 1); /* { dg-bogus "truncated" "bogus truncation warning" } */
14 return len - len;
H A D20101010-1.c9 int len; local
10 if (bar1 (&len))
12 char devpath [len];
13 if (bar2 (devpath) == len)
14 return len;
H A Dpr52445.c6 foo (char *buf, unsigned long len) argument
9 if (len > 1)
H A Dpr42630.c5 int sum(int *buf, int len) argument
8 while (--len > 0) s += *buf++;
H A DWstrict-overflow-17.c10 int len, i; local
12 for (len = 1; len < 5000; ++len)
14 for (i = 0; i < len; ++i)
H A Dstrlenopt-25.c10 int len, len2; local
11 len = strlen (p);
14 return len - len2;
H A Ddoloop-2.c6 void bi_reverse(int len) argument
10 } while (--len > 0);
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/ubsan/
H A Dpr59667.c8 unsigned int len = 1; local
9 float (*P)[len][len] = 0;
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/powerpc/
H A Dpr47197.c10 void func(unsigned char *buf, unsigned len) argument
12 vec_dst(buf, (len >= 256 ? 0 : len) | 512, 2);
/haiku-buildtools/gcc/libgcc/config/frv/
H A Dcmovh.c27 __cmovh (short *dest, const short *src, unsigned len) argument
30 unsigned num = len >> 1;
34 if (dest_byte < src_byte || dest_byte > src_byte+len)
39 if ((len & 1) != 0)
40 dest_byte[len-1] = src_byte[len-1];
44 while (len-- > 0)
45 dest_byte[len] = src_byte[len];
H A Dcmovd.c27 __cmovd (long long *dest, const long long *src, unsigned len) argument
30 unsigned num = len >> 3;
31 unsigned xlen = len & ~7;
35 if (dest_byte < src_byte || dest_byte > src_byte+len)
40 while (len > xlen)
48 while (len-- > 0)
49 dest_byte[len] = src_byte[len];
H A Dcmovw.c27 __cmovw (int *dest, const int *src, unsigned len) argument
30 unsigned num = len >> 2;
31 unsigned xlen = len & ~3;
35 if (dest_byte < src_byte || dest_byte > src_byte+len)
40 while (len > xlen)
48 while (len-- > 0)
49 dest_byte[len] = src_byte[len];
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/asan/
H A Dpr62140-1.c4 int memcmp (const void *p, const void *q, int len);
6 int f (int *p, int *q, int len) argument
8 return memcmp (p, q, len);
/haiku-buildtools/binutils/gold/testsuite/
H A Dleb128_unittest.cc39 size_t len; local
64 CHECK(read_unsigned_LEB_128(u1, &len) == 0 && len == sizeof(u1));
65 CHECK(read_unsigned_LEB_128(u2, &len) == 1 && len == sizeof(u2));
66 CHECK(read_unsigned_LEB_128(u3, &len) == 126 && len == sizeof(u3));
67 CHECK(read_unsigned_LEB_128(u4, &len) == 127 && len == sizeof(u4));
68 CHECK(read_unsigned_LEB_128(u5, &len)
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20051104-1.c5 int len; member in struct:__anon1695
12 s.len = 0;
14 if (s.name [s.len] != 0)
15 s.name [s.len] = 0;
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/
H A DWunused-var-6.c10 int len = a * 3; local
11 char t[len];
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dchkp-stropt-12.c10 void test (void *buf1, void *buf2, size_t len) argument
12 mempcpy (buf1, buf2, len);

Completed in 142 milliseconds

1234567891011>>