Searched refs:len (Results 226 - 250 of 2040) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dsms-3.c13 foo (int len, long a) argument
18 len = 1000;
19 for (i = 0; i < len; i++)
H A Dshrink-wrap-pretend.c16 unsigned int len; local
24 len = vsnprintf (&(s)[0], (DEBUG_BUFFER_SIZE), fmt, args);
27 if (len >= DEBUG_BUFFER_SIZE)
H A Dsms-12.c14 foo (int len, long a) argument
19 len = 1000;
20 for (i = 0; i < len; i++)
H A Dpr51990-2.c8 zzz (char *s1, char *s2, int len, int *q, int c) argument
16 for (i = 0; i < len; i++)
21 len += (b == 0 ? 0 : 1) + z;
23 *q = len;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/debug/dwarf2/
H A Dblock.C19 int len = (key->source & 0xFF000000)>>24; local
20 int inc = ((len - 32) / 32) + 1;
23 const unsigned char *limit = p + len;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/vect/
H A Dpr55857-2.c3 void foo (int *data, unsigned len, const int qlp_coeff[], argument
9 for(i = 0; i < (int)len; i++)
17 for(i = 0; i < (int)len; i++)
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dpr66648.c13 my_memcpy (char *dst, const char *src, unsigned int len) argument
15 if (len < 8)
18 __builtin_memcpy (dst, src, len);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/tree-ssa/
H A Dpr18178.C28 const ORIG len; member in struct:array
36 for (ORIG i = 0; i < a->len; ++i)
38 if (FIRST CAST i >= CAST (a->len))
/haiku-buildtools/gcc/zlib/contrib/blast/
H A Dblast.h35 typedef int (*blast_out)(void *how, unsigned char *buf, unsigned len);
48 * The input function is invoked: len = infun(how, &buf), where buf is set by
54 * The output function is invoked: err = outfun(how, buf, len), where the bytes
55 * to be written are buf[0..len-1]. If err is not zero, then blast() returns
56 * with an output error. outfun() is always called with len <= 4096. outhow
H A Dblast.c125 int len; /* current number of bits in code */ local
126 int code; /* len bits being decoded */
127 int first; /* first code of length len */
128 int count; /* number of codes of length len */
129 int index; /* index of first code of length len in symbol table */
137 len = 1;
144 if (code < first + count) { /* if length len, return symbol */
146 s->bitcnt = (s->bitcnt - len) & 7;
153 len++;
155 left = (MAXBITS+1) - len;
188 int len; /* current length when stepping through h->count[] */ local
281 int len; /* length for copy */ local
422 outf(void *how, unsigned char *buf, unsigned len) argument
[all...]
/haiku-buildtools/legacy/binutils/binutils/
H A Dwinduni.c45 int len; local
50 len = strlen (ascii);
51 *unicode = ((unichar *) res_alloc ((len + 1) * sizeof (unichar)));
59 len = MultiByteToWideChar (CP_ACP, 0, ascii, -1, NULL, 0);
60 if (len)
62 *unicode = ((unichar *) res_alloc (len * sizeof (unichar)));
63 MultiByteToWideChar (CP_ACP, 0, ascii, -1, *unicode, len);
67 len--;
71 *length = len;
/haiku-buildtools/legacy/gcc/gcc/java/
H A Dkeyword.h41 hash (str, len)
43 register unsigned int len; variable
74 register int hval = len;
86 return hval + asso_values[(unsigned char)str[len - 1]];
93 java_keyword (str, len)
95 register unsigned int len; variable
165 if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)
167 register int key = hash (str, len);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/opt/
H A Dstrength-reduce.C28 int len = __builtin_strlen (a); local
29 if (len == 0)
31 if (offset >= len)
32 offset = len - 1;
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Denum.C12 len = templ<int>::val enumerator in enum:Foo::__anon1317
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr51761.c3 struct S { unsigned int len; }; member in struct:S
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/builtins/
H A D20010124-1-lib.c32 void *memcpy(void *a, const void *b, size_t len) argument
36 if (a < b && a+len > b)
38 if (b < a && b+len > a)
46 while (len--)
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/
H A Dpr40470-1.c9 int len = 0; local
20 __asm("bsfl %[bmsk], %[len]" : [len] "=r" (len) : [bmsk] "r" (bmsk) );
21 return p1 + len;
H A Dpr40470-3.c9 int len = 0; local
20 __asm("bsfl %[bmsk], %[len]" : [len] "=r" (len) : [bmsk] "r" (bmsk) );
21 return p1 + len;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/hash/
H A Dchi2_q_bit_flip_set.cc33 const unsigned int len = 67; local
34 const unsigned int bitlen = len * 8;
36 const char base[len+1] = "abcdefghijklmnopqrstuvwxyz"
43 std::string s(base, base+len);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/sputn/char/
H A D9339.cc30 int len = 35; local
33 streamsize s1 = fbuf01.sputn("Pete Goldlust @ Carl Hammer Gallery", len);
34 VERIFY( s1 == len );
41 VERIFY( s2 == len );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/6_containers/array/requirements/
H A Dzero_sized_arrays.cc28 const size_t len = 0; local
29 typedef std::tr1::array<int, len> array_type;
46 typedef std::tr1::array<long, len> array_type1;
47 typedef std::tr1::array<char, len> array_type2;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/6_containers/array/tuple_interface/
H A Dtuple_element.cc33 const size_t len = 3; local
34 typedef array<int, len> array_type;
41 const size_t len = 0; local
42 typedef array<int, len> array_type;
/haiku-buildtools/binutils/zlib/contrib/blast/
H A Dblast.h39 typedef int (*blast_out)(void *how, unsigned char *buf, unsigned len);
52 * The input function is invoked: len = infun(how, &buf), where buf is set by
58 * The output function is invoked: err = outfun(how, buf, len), where the bytes
59 * to be written are buf[0..len-1]. If err is not zero, then blast() returns
60 * with an output error. outfun() is always called with len <= 4096. outhow
H A Dblast.c127 int len; /* current number of bits in code */ local
128 int code; /* len bits being decoded */
129 int first; /* first code of length len */
130 int count; /* number of codes of length len */
131 int index; /* index of first code of length len in symbol table */
139 len = 1;
146 if (code < first + count) { /* if length len, return symbol */
148 s->bitcnt = (s->bitcnt - len) & 7;
155 len++;
157 left = (MAXBITS+1) - len;
190 int len; /* current length when stepping through h->count[] */ local
283 int len; /* length for copy */ local
424 outf(void *how, unsigned char *buf, unsigned len) argument
[all...]
/haiku-buildtools/cloog/source/
H A Dint.c72 int cloog_seq_first_non_zero(cloog_int_t *p, unsigned len) argument
76 for (i = 0; i < len; ++i)
82 void cloog_seq_neg(cloog_int_t *dst, cloog_int_t *src, unsigned len) argument
85 for (i = 0; i < len; ++i)
89 void cloog_seq_cpy(cloog_int_t *dst, cloog_int_t *src, unsigned len) argument
92 for (i = 0; i < len; ++i)
96 static void cloog_seq_scale_down(cloog_int_t *dst, cloog_int_t *src, cloog_int_t m, unsigned len) argument
99 for (i = 0; i < len; ++i)
104 cloog_int_t m2, cloog_int_t *src2, unsigned len)
110 for (i = 0; i < len;
103 cloog_seq_combine(cloog_int_t *dst, cloog_int_t m1, cloog_int_t *src1, cloog_int_t m2, cloog_int_t *src2, unsigned len) argument
118 cloog_seq_abs_min_non_zero(cloog_int_t *p, unsigned len) argument
132 cloog_seq_gcd(cloog_int_t *p, unsigned len, cloog_int_t *gcd) argument
150 cloog_seq_is_neg(cloog_int_t *p1, cloog_int_t *p2, unsigned len) argument
165 cloog_seq_normalize(cloog_int_t *p, unsigned len) argument
[all...]

Completed in 186 milliseconds

1234567891011>>