Searched refs:tbuf (Results 1 - 7 of 7) sorted by relevance

/haiku-buildtools/gcc/libcpp/
H A Dcharset.c773 struct _cpp_strbuf tbuf; local
792 tbuf.asize = 1;
793 tbuf.text = XNEWVEC (uchar, tbuf.asize);
794 tbuf.len = 0;
796 if (!APPLY_CONVERSION (pfile->narrow_cset_desc, sbuf, 1, &tbuf))
801 if (tbuf.len != 1)
808 c = tbuf.text[0];
809 free(tbuf.text);
1094 struct _cpp_strbuf *tbuf, struc
1092 convert_ucn(cpp_reader *pfile, const uchar *from, const uchar *limit, struct _cpp_strbuf *tbuf, struct cset_converter cvt) argument
1125 emit_numeric_escape(cpp_reader *pfile, cppchar_t n, struct _cpp_strbuf *tbuf, struct cset_converter cvt) argument
1176 convert_hex(cpp_reader *pfile, const uchar *from, const uchar *limit, struct _cpp_strbuf *tbuf, struct cset_converter cvt) argument
1226 convert_oct(cpp_reader *pfile, const uchar *from, const uchar *limit, struct _cpp_strbuf *tbuf, struct cset_converter cvt) argument
1262 convert_escape(cpp_reader *pfile, const uchar *from, const uchar *limit, struct _cpp_strbuf *tbuf, struct cset_converter cvt) argument
1382 struct _cpp_strbuf tbuf; local
[all...]
/haiku-buildtools/legacy/binutils/bfd/
H A Dvms-hdr.c147 static unsigned char tbuf[18]; local
161 sprintf ((char *) tbuf, "%2s-%3s-%s %s",
171 Descriptor.Ptr = tbuf;
176 vms_debug (6, "vmstimestring:'%s'\n", tbuf);
179 return tbuf;
/haiku-buildtools/binutils/bfd/
H A Dvms-misc.c452 static unsigned char tbuf[18];
464 sprintf ((char *) tbuf, "%2s-%3s-%s %s",
473 Descriptor.Ptr = tbuf;
477 vms_debug2 ((6, "vmstimestring:'%s'\n", tbuf));
479 return tbuf;
450 static unsigned char tbuf[18]; local
/haiku-buildtools/gcc/gcc/config/pdp11/
H A Dpdp11.c148 long tbuf; local
149 tbuf = ((buf[0] >> 16) & 0xffff) | ((buf[0] & 0xffff) << 16);
150 (*vax_f_format.decode) (fmt, r, &tbuf);
166 long tbuf[2]; local
167 tbuf[0] = ((buf[0] >> 16) & 0xffff) | ((buf[0] & 0xffff) << 16);
168 tbuf[1] = ((buf[1] >> 16) & 0xffff) | ((buf[1] & 0xffff) << 16);
169 (*vax_d_format.decode) (fmt, r, tbuf);
/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A Dsanitizer_common_syscalls.inc245 PRE_SYSCALL(times)(void *tbuf) {}
247 POST_SYSCALL(times)(long res, void *tbuf) {
249 if (tbuf) POST_WRITE(tbuf, struct_tms_sz);
/haiku-buildtools/gcc/gcc/ada/
H A Dadaint.c2944 struct utimbuf tbuf;
2951 tbuf.actime = fbuf.st_atime;
2952 tbuf.modtime = fbuf.st_mtime;
2954 if (utime (to, &tbuf) == -1)
/haiku-buildtools/gcc/libsanitizer/include/sanitizer/
H A Dlinux_syscall_hooks.h42 #define __sanitizer_syscall_pre_times(tbuf) \
43 __sanitizer_syscall_pre_impl_times((long)(tbuf))
44 #define __sanitizer_syscall_post_times(res, tbuf) \
45 __sanitizer_syscall_post_impl_times(res, (long)(tbuf))
2017 void __sanitizer_syscall_pre_impl_times(long tbuf);
2018 void __sanitizer_syscall_post_impl_times(long res, long tbuf);

Completed in 148 milliseconds