• Home
  • Raw
  • Download

Lines Matching refs:HChar

57 static HChar  temporary[N_TEMPORARY_BYTES] __attribute__((aligned(REQ_ALIGN)));
58 static HChar* temporary_first = &temporary[0];
59 static HChar* temporary_curr = &temporary[0];
60 static HChar* temporary_last = &temporary[N_TEMPORARY_BYTES-1];
66 static HChar permanent[N_PERMANENT_BYTES] __attribute__((aligned(REQ_ALIGN)));
67 static HChar* permanent_first = &permanent[0];
68 static HChar* permanent_curr = &permanent[0];
69 static HChar* permanent_last = &permanent[N_PERMANENT_BYTES-1];
71 HChar* private_LibVEX_alloc_first = &temporary[0];
72 HChar* private_LibVEX_alloc_curr = &temporary[0];
73 HChar* private_LibVEX_alloc_last = &temporary[N_TEMPORARY_BYTES-1];
161 const HChar* pool = "???"; in private_LibVEX_alloc_OOM()
218 void vex_assert_fail ( const HChar* expr, in vex_assert_fail()
219 const HChar* file, Int line, const HChar* fn ) in vex_assert_fail()
228 void vpanic ( const HChar* str ) in vpanic()
243 SizeT vex_strlen ( const HChar* str ) in vex_strlen()
250 Bool vex_streq ( const HChar* s1, const HChar* s2 ) in vex_streq()
275 void convert_int ( /*OUT*/HChar* buf, Long n0, in convert_int()
279 HChar c; in convert_int()
323 UInt vprintf_wrk ( void(*sink)(HChar), in vprintf_wrk() argument
324 const HChar* format, in vprintf_wrk()
336 do { const HChar* _qq = _str; for (; *_qq; _qq++) PUT(*_qq); } \ in vprintf_wrk()
339 const HChar* saved_format; in vprintf_wrk()
341 HChar padchar; in vprintf_wrk()
344 HChar intbuf[100]; /* big enough for a 64-bit # in base 2 */ in vprintf_wrk()
398 const HChar* str = va_arg(ap, HChar*); in vprintf_wrk()
409 HChar c = (HChar)va_arg(ap, int); in vprintf_wrk()
410 HChar str[2]; in vprintf_wrk()
500 static HChar myprintf_buf[1000];
503 static void add_to_myprintf_buf ( HChar c ) in add_to_myprintf_buf()
515 static UInt vex_vprintf ( const HChar* format, va_list vargs ) in vex_vprintf()
530 UInt vex_printf ( const HChar* format, ... ) in vex_printf()
544 void vfatal ( const HChar* format, ... ) in vfatal()
557 static HChar *vg_sprintf_ptr;
559 static void add_to_vg_sprintf_buf ( HChar c ) in add_to_vg_sprintf_buf()
564 UInt vex_sprintf ( HChar* buf, const HChar *format, ... ) in vex_sprintf()