Searched refs:len (Results 201 - 225 of 2040) sorted by relevance

1234567891011>>

/haiku-buildtools/jam/
H A Dpathmac.c64 f->f_grist.len = p - file;
73 f->f_dir.len = p - file;
82 f->f_dir.len++;
92 f->f_member.len = end - p - 2;
108 f->f_suffix.len = end - p;
115 f->f_base.len = end - file;
147 int len )
149 if( !len )
151 if( len == 1 && ptr[0] == DELIM )
153 if( len
[all...]
H A Dpathunix.c64 f->f_grist.len = p - file;
83 f->f_dir.len = p - file;
87 if( !f->f_dir.len )
88 f->f_dir.len = 1;
93 if( f->f_dir.len == 2 && file[1] == ':' )
94 f->f_dir.len = 3;
107 f->f_member.len = end - p - 2;
123 f->f_suffix.len = end - p;
130 f->f_base.len = end - file;
146 if( f->f_grist.len )
[all...]
/haiku-buildtools/gcc/gmp/mpq/
H A Dget_str.c28 size_t str_alloc, len; local
47 len = strlen (str);
50 str[len++] = '/';
51 mpz_get_str (str+len, base, mpq_denref(q));
52 len += strlen (str+len);
55 ASSERT (len == strlen(str));
56 ASSERT (str_alloc == 0 || len+1 <= str_alloc);
57 ASSERT (len+1 <= /* size recommended to applications */
62 __GMP_REALLOCATE_FUNC_MAYBE_TYPE (str, str_alloc, len
[all...]
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/bench/shootout/
H A Dreverse-complement.go73 w := len(buf)
79 line = line[0 : len(line)-1]
80 nchar += len(line)
81 if len(line)+nchar/60+128 >= w {
82 nbuf := make([]byte, len(buf)*5)
83 copy(nbuf[len(nbuf)-len(buf):], buf)
84 w += len(nbuf) - len(buf)
98 for j := w; j < len(bu
[all...]
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/
H A Dbug254.go13 if len(a) != 10 || len(b) != 10 {
14 println("len", len(a), len(b))
/haiku-buildtools/gcc/zlib/
H A Dinftrees.c40 unsigned len; /* a code's length in bits */ local
107 for (len = 0; len <= MAXBITS; len++)
108 count[len] = 0;
132 for (len = 1; len <= MAXBITS; len++) {
134 left -= count[len];
142 for (len
[all...]
/haiku-buildtools/binutils/zlib/
H A Dinftrees.c40 unsigned len; /* a code's length in bits */ local
107 for (len = 0; len <= MAXBITS; len++)
108 count[len] = 0;
132 for (len = 1; len <= MAXBITS; len++) {
134 left -= count[len];
142 for (len
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/graphite/
H A Did-pr45230-1.c32 test (const unsigned char *s1, const unsigned char *s2, size_t len, int expected) argument
34 int value = strncmp ((char *) s1, (char *) s2, len);
47 size_t off1, off2, len, i; local
54 for (len = 0; len < MAX_TEST; len++)
61 for (i = 0; i < len; i++)
73 for (i = 0; i < len; i++)
83 test (buf1, buf2, len, 0);
89 test (buf1, buf2, len,
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dstrncmp-1.c33 test (const unsigned char *s1, const unsigned char *s2, size_t len, int expected) argument
35 int value = strncmp ((char *) s1, (char *) s2, len);
47 size_t off1, off2, len, i; local
54 for (len = 0; len < MAX_TEST; len++)
61 for (i = 0; i < len; i++)
73 for (i = 0; i < len; i++)
83 test (buf1, buf2, len, 0);
89 test (buf1, buf2, len,
[all...]
H A Dstrlen-1.c33 size_t off, len, len2, i; local
37 for (len = 0; len < MAX_TEST; len++)
43 for (i = 0; i < len; i++)
52 if (len != len2)
H A Dpr34415.c5 int len = 1; local
22 len++;
24 if (len > 2 && *p == ':')
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/
H A Dindirect1.go37 // line number for each len call when
40 len(m0)+
41 len(m1)+ // ERROR "illegal|invalid|must be"
42 len(m2)+ // ERROR "illegal|invalid|must be"
43 len(m3)+
44 len(m4)+ // ERROR "illegal|invalid|must be"
46 len(s0)+
47 len(s1)+ // ERROR "illegal|invalid|must be"
48 len(s2)+ // ERROR "illegal|invalid|must be"
49 len(s
[all...]
H A Dinitcomma.go17 if len(a) != 2 {
18 println("len a", len(a))
21 if len(b) != 5 {
22 println("len b", len(b))
25 if len(c) != 1 {
26 println("len d", len(c))
29 if len(
[all...]
/haiku-buildtools/gcc/libssp/ssp/
H A Dstring.h55 #define memcpy(dest, src, len) \
57 ? __builtin___memcpy_chk (dest, src, len, __ssp_bos0 (dest)) \
58 : __memcpy_ichk (dest, src, len))
67 #define memmove(dest, src, len) \
69 ? __builtin___memmove_chk (dest, src, len, __ssp_bos0 (dest)) \
70 : __memmove_ichk (dest, src, len))
78 #define mempcpy(dest, src, len) \
80 ? __builtin___mempcpy_chk (dest, src, len, __ssp_bos0 (dest)) \
81 : __mempcpy_ichk (dest, src, len))
90 #define memset(dest, ch, len) \
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dbmi-bextr-1.c13 unsigned char len = (int) ((src2 >> 8) & 0xff); local
16 unsigned last = (start+len) < 64 ? start+len : 64;
32 unsigned char start, len; local
38 len = i + (i * 1983) % 64;
41 src2 = start | (((long long)len) << 8);
H A Dbmi-bextr-2.c13 unsigned char len = (int) ((src2 >> 8) & 0xff); local
16 unsigned last = (start+len) < 32 ? start+len : 32;
32 unsigned char start, len; local
38 len = i + (i * 1983) % 32;
41 src2 = start | (((unsigned)len) << 8);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr58981.c24 int off, len, i; local
31 for (len = 1; len < MAX_COPY; len++)
36 p = __builtin_memcpy (u.buf + off, A, len);
45 for (i = 0; i < len; i++, q++)
H A Dpr59605.c26 int off, len, i; local
33 for (len = 1; len < MAX_COPY; len++)
38 p = __builtin_memcpy (u.buf + off, A, len);
47 for (i = 0; i < len; i++, q++)
H A Dpr32338-1.c34 unsigned int len; local
35 len = fnl (q);
36 if (len > 512)
H A Dpr33017.c12 int len; local
15 len = strlen (string);
17 var[len + off + 2] = 0x57;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostringstream/cons/char/
H A D3.cc35 std::string::size_type len = str01.size(); local
37 VERIFY( len == 0 );
44 len = str02.size();
46 VERIFY( len != 0 );
53 len = str03.size();
55 VERIFY( len == 0 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostringstream/cons/wchar_t/
H A D3.cc33 std::wstring::size_type len = str01.size(); local
35 VERIFY( len == 0 );
42 len = str02.size();
44 VERIFY( len != 0 );
51 len = str03.size();
53 VERIFY( len == 0 );
/haiku-buildtools/legacy/gcc/gcc/java/
H A Dmangle.c41 unicode_mangling_length (name, len)
43 int len;
46 const unsigned char *limit = (const unsigned char *)name + len;
73 emit_unicode_mangled_name (obstack, name, len)
76 int len;
79 const unsigned char *limit = (const unsigned char *)name + len;
110 append_gpp_mangled_name (obstack, name, len)
113 int len;
115 int encoded_len = unicode_mangling_length (name, len);
122 emit_unicode_mangled_name (obstack, name, len);
[all...]
/haiku-buildtools/legacy/gcc/libio/
H A Diofputs.c34 _IO_size_t len = strlen (str); local
39 if (_IO_sputn (fp, str, len) != len)
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/lto/
H A D20091004-3_1.C11 double len; local
13 VLength(len, D);
14 VLength(len, D);

Completed in 152 milliseconds

1234567891011>>