Searched refs:buff (Results 1 - 25 of 92) sorted by relevance

1234

/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Danon4.C4 // Bug: g++ screws up the alignment of buff and dies.
10 char buff[sizeof(double)]; member in union:__anon1224
13 void *p = buff;
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Darrayio_0.f907 character(len=12), dimension(4) :: iu, buff variable
12 read (iu, '(a12/)') buff
13 read (iue(1), '(4a12)') buff
14 read (iu(4:1:-1), '(a12/)') buff
15 read (iu(v), '(a12/)') buff ! { dg-error "with vector subscript" }
16 read (iu((/2,4,3,1/)), '(a12/)') buff ! { dg-error "with vector subscript" }
17 print *, buff
H A Dlist_read_3.f907 character(len=80) buff variable in program:fg
15 write (buff,'(a)') '10,20,30,40'
16 read(buff,*) a, b, c, d
19 print*,buff
32 write (buff,'(a)') '10.,20.,30.,40.'
33 read(buff,*) a, b, c, d
41 print*,buff
49 write (buff,'(a)') '10.0,20.0,30.0,40.0'
50 read(buff,*) a, b, c, d
58 print*,buff
87 character(len=80) buff local in subroutine:abc
[all...]
H A Dlist_read_13.f3 character(len=30) :: buff = ", (2.0, 3.0),,6.0D0, 2*," variable
7 read(buff, *, err=10) AVD, AVC, BVC, BVD, CVC, CVD
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dcode-gen2.C10 char buff[40] ; local
11 char *tmp = &buff[0]; // also fails for char *tmp = buff;
13 if ((__SIZE_TYPE__) tmp != (__SIZE_TYPE__) &buff[0])
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr47364-2.c5 char buff[256]; local
6 foo (buff, prefix);
7 return strlen(buff);
H A D20020706-2.c8 unsigned char buff[5], reverse[4]; local
9 unsigned char *bp = buff;
25 (void)(*func)(funcparm, buff, cnt);
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/g77/
H A D7388.f3 character*25 buff(0:10) variable
9 buff(i) = 'tcase0a'
10 write(line,*) buff(i)(m1:m2)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/objects/char/
H A D6648-1_xin.cc27 char buff[2048]; local
29 std::cin.getline(buff, 2048);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/objects/wchar_t/
H A D6648-1_xin.cc27 wchar_t buff[2048]; local
29 std::wcin.getline(buff, 2048);
/haiku-buildtools/legacy/gcc/libf2c/libU77/
H A Dchdir_.c47 char *buff; local
51 buff = malloc (Lname+1);
52 if (!buff) return -1;
53 g_char (name, Lname, buff);
54 i = chdir (buff);
55 free (buff);
H A Dunlink_.c47 char *buff; local
51 buff = malloc (Lstr+1);
52 if (buff == NULL) return -1;
53 g_char (str, Lstr, buff);
54 i = unlink (buff);
55 free (buff);
H A Dperror_.c38 char buff[1000]; local
42 blast = buff + (Lstr < 1000 ? Lstr : 1000);
43 for (bp = buff ; bp<blast && *str!='\0' ; )
46 perror (buff);
H A Dchmod_.c58 char *buff; local
67 buff = malloc (Lname+Lmode+l+3+13+1);
68 if (!buff) return -1;
77 s_cat (buff, a, ii, &six, Lname+Lmode+l+3+13);
78 buff[Lname+Lmode+l+3+13] = '\0';
79 i = system (buff);
80 free (buff);
H A Daccess_.c60 char *buff; local
64 buff = malloc (Lname+1);
65 if (!buff) return -1;
66 g_char (name, Lname, buff);
77 i = access (buff, amode);
78 free (buff);
H A Dlstat_.c47 char *buff; local
52 buff = malloc (Lname+1);
53 if (buff == NULL) return -1;
54 g_char (name, Lname, buff);
55 err = lstat (buff, &buf);
56 free (buff);
H A Dstat_.c43 char *buff; local
48 buff = malloc (Lname+1);
49 if (buff == NULL) return -1;
50 g_char (name, Lname, buff);
51 err = stat (buff, &buf);
52 free (buff);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/algorithms/regex_replace/char/
H A Ddr2213.cc34 char buff[4096] = {0}; local
39 VERIFY(regex_replace(buff, s.data(), s.data() + s.size(), re, "|&|\\0|",
40 regex_constants::format_sed) == buff + res.size());
41 VERIFY(res == buff);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A D20040916-1.c11 uint8 *buff = 0; variable
30 len |= (*buff++);
35 d = *buff++;
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/arm/
H A Dhandler-align.c12 char buff[BUFF_LEN]; variable
16 return buff;
22 snprintf(msg, BUFF_LEN, "%d %p", 1, buff+BUFF_LEN);
/haiku-buildtools/legacy/gcc/libf2c/libF77/
H A Dsystem_.c21 char buff0[256], *buff; local
25 buff = bp = n < sizeof(buff0)
32 rv = system(buff);
33 if (buff != buff0)
34 free(buff);
/haiku-buildtools/legacy/gcc/gcc/f/
H A Dsts.c111 char *buff;
122 buff = malloc_new_ks (malloc_pool_image (), "ffests_printf_1D", len);
123 sprintf (buff, ctl, arg1);
124 ffests_puttext (s, buff, strlen (buff)); local
125 malloc_kill_ks (malloc_pool_image (), buff, len);
140 char *buff;
151 buff = malloc_new_ks (malloc_pool_image (), "ffests_printf_1U", len);
152 sprintf (buff, ctl, arg1);
153 ffests_puttext (s, buff, strle local
110 char *buff; local
139 char *buff; local
168 char *buff; local
181 malloc_kill_ks (malloc_pool_image (), buff, len); local
196 char *buff; local
210 malloc_kill_ks (malloc_pool_image (), buff, len); local
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/
H A Dpr45017.c19 char buff = 0x2f; local
20 if (tester(&buff) != 0x0f)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/match_results/
H A Dformat.cc57 char buff[4096] = {0}; local
59 VERIFY(m.format(buff, fmt.data(), fmt.data() + fmt.size(),
60 regex_constants::format_sed) == buff + res.size());
61 VERIFY(res == buff);
/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A Dsanitizer_printf.cc32 static int AppendChar(char **buff, const char *buff_end, char c) { argument
33 if (*buff < buff_end) {
34 **buff = c;
35 (*buff)++;
43 static int AppendNumber(char **buff, const char *buff_end, u64 absolute_value, argument
55 result += AppendChar(buff, buff_end, '-');
73 result += AppendChar(buff, buff_end, c);
75 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
78 result += AppendChar(buff, buff_end, (digit < 10) ? '0' + digit
84 static int AppendUnsigned(char **buff, cons argument
90 AppendSignedDecimal(char **buff, const char *buff_end, s64 num, u8 minimal_num_length, bool pad_with_zero) argument
97 AppendString(char **buff, const char *buff_end, int precision, const char *s) argument
110 AppendPointer(char **buff, const char *buff_end, u64 ptr_value) argument
118 VSNPrintf(char *buff, int buff_length, const char *format, va_list args) argument
[all...]

Completed in 299 milliseconds

1234