/haiku/src/system/libroot/posix/glibc/locale/ |
H A D | C-translit.h | 114 L"\x00a0" L"\0" L"\x00a9" L"\0" L"\x00ab" L"\0" L"\x00ad" L"\0" L"\x00ae" 115 L"\0" L"\x00b5" L"\0" L"\x00b8" L"\0" L"\x00bb" L"\0" L"\x00bc" L"\0" 116 L"\x00bd" L"\0" L"\x00be" L"\0" L"\x00c6" L"\0" L"\x00d7" L"\0" L"\x00df" 117 L"\0" L"\x00e6" L"\0" L"\x0132" L"\0" L"\x0133" L"\0" L"\x0149" L"\0" 118 L"\x0152" L"\0" L"\x0152" L"\0" L"\x0153" L"\0" L"\x0153" L"\0" L"\x017f" 119 L"\0" L"\x01c7" L"\0" L"\x01c8" L"\0" L"\x01c9" L"\0" L"\x01ca" L"\0" 120 L"\x01cb" L"\0" L"\x01cc" L"\0" L"\x01f1" L"\0" L"\x01f2" L"\0" L"\x01f3" 121 L"\0" L"\x02bc" L"\0" L"\x02c6" L"\0" L"\x02c8" L"\0" L"\x02cb" L"\0" 122 L"\x02cd" L"\0" L"\x02d0" L"\0" L"\x02dc" L"\0" L"\x2002" L"\0" L"\x2003" 123 L"\0" L"\x2004" L"\0" L"\x2005" L"\0" L"\x2006" L"\0" L"\x2008" L"\0" [all …]
|
H A D | C-collate.c | 67 L'\x00', L'\x01', L'\x02', L'\x03', L'\x04', L'\x05', L'\x06', L'\x07', 68 L'\x08', L'\x09', L'\x0a', L'\x0b', L'\x0c', L'\x0d', L'\x0e', L'\x0f', 69 L'\x10', L'\x11', L'\x12', L'\x13', L'\x14', L'\x15', L'\x16', L'\x17', 70 L'\x18', L'\x19', L'\x1a', L'\x1b', L'\x1c', L'\x1d', L'\x1e', L'\x1f', 71 L'\x20', L'\x21', L'\x22', L'\x23', L'\x24', L'\x25', L'\x26', L'\x27', 72 L'\x28', L'\x29', L'\x2a', L'\x2b', L'\x2c', L'\x2d', L'\x2e', L'\x2f', 73 L'\x30', L'\x31', L'\x32', L'\x33', L'\x34', L'\x35', L'\x36', L'\x37', 74 L'\x38', L'\x39', L'\x3a', L'\x3b', L'\x3c', L'\x3d', L'\x3e', L'\x3f', 75 L'\x40', L'\x41', L'\x42', L'\x43', L'\x44', L'\x45', L'\x46', L'\x47', 76 L'\x48', L'\x49', L'\x4a', L'\x4b', L'\x4c', L'\x4d', L'\x4e', L'\x4f', [all …]
|
H A D | C-time.c | 87 { wstr: (const uint32_t *) L"Sun" }, 88 { wstr: (const uint32_t *) L"Mon" }, 89 { wstr: (const uint32_t *) L"Tue" }, 90 { wstr: (const uint32_t *) L"Wed" }, 91 { wstr: (const uint32_t *) L"Thu" }, 92 { wstr: (const uint32_t *) L"Fri" }, 93 { wstr: (const uint32_t *) L"Sat" }, 94 { wstr: (const uint32_t *) L"Sunday" }, 95 { wstr: (const uint32_t *) L"Monday" }, 96 { wstr: (const uint32_t *) L"Tuesday" }, [all …]
|
H A D | C-ctype.c | 618 { wstr: (uint32_t *) L"0" }, 619 { wstr: (uint32_t *) L"1" }, 620 { wstr: (uint32_t *) L"2" }, 621 { wstr: (uint32_t *) L"3" }, 622 { wstr: (uint32_t *) L"4" }, 623 { wstr: (uint32_t *) L"5" }, 624 { wstr: (uint32_t *) L"6" }, 625 { wstr: (uint32_t *) L"7" }, 626 { wstr: (uint32_t *) L"8" }, 627 { wstr: (uint32_t *) L"9" }, [all …]
|
/haiku/src/tests/system/libroot/posix/ |
H A D | wcs_test.cpp | 40 const wchar_t* string = L""; in test_wcslen() 52 const wchar_t* string = L"test"; in test_wcslen() 64 const wchar_t* string = L"t\xE4st"; in test_wcslen() 76 const wchar_t* string = L"te\x00st"; in test_wcslen() 88 const wchar_t* string = L"test"; in test_wcslen() 100 const wchar_t* string = L"test"; in test_wcslen() 112 const wchar_t* string = L"test"; in test_wcslen() 142 const wchar_t* a = L""; in test_wcscmp() 143 const wchar_t* b = L""; in test_wcscmp() 155 const wchar_t* a = L"a"; in test_wcscmp() [all …]
|
H A D | tst-swscanf.c | 31 { L"%[abc]", L"%l[abc]", L"aabbccddaabb", 1 ,"aabbcc", L"aabbcc", 0 }, 32 { L"%[^def]", L"%l[^def]", L"aabbccddaabb", 1, "aabbcc", L"aabbcc", 0 }, 33 { L"%[^abc]", L"%l[^abc]", L"aabbccddaabb", 0, "", L"", 0 }, 34 { L"%[a-c]", L"%l[a-c]", L"aabbccddaabb", 1, "aabbcc", L"aabbcc", 1 }, 35 { L"%[^d-f]", L"%l[^d-f]", L"aabbccddaabb", 1, "aabbcc", L"aabbcc", 1 }, 36 { L"%[^a-c]", L"%l[^a-c]", L"aabbccddaabb", 0, "", L"", 1 }, 37 { L"%[^a-c]", L"%l[^a-c]", L"bbccddaabb", 0, "", L"", 1 }
|
H A D | fwide_test.c | 23 fwprintf(stderr, L"stderr should now be set to wide mode ...\n"); in main() 31 fwprintf(stdout, L"%ls", L"this should *not* be visible!\n"); in main() 33 fprintf(stderr, "%ls", L"this should *not* be visible!\n"); in main() 34 fwprintf(stdout, L"%s", "this should *not* be visible!\n"); in main() 36 fprintf(stdout, "%ls", L"this *should* be visible!\n"); in main() 37 fwprintf(stderr, L"%s", "this *should* be visible!\n"); in main() 40 fwprintf(stderr, L"%ls", L"this *should* be visible!\n"); in main() 45 fwprintf(stdout, L"%ls", L"this should *not* be visible!\n"); in main() 47 fprintf(stderr, "%ls", L"this should *not* be visible!\n"); in main() 48 fwprintf(stdout, L"%s", "this should *not* be visible!\n"); in main() [all …]
|
H A D | tst-swprintf.c | 26 n = swprintf(buf, nbuf,L"Hello %s" , "world"); in main() 32 else if (wcscmp(buf, L"Hello world") != 0) in main() 38 n = swprintf(buf, nbuf, L"Is this >%g< 3.1?", 3.1); in main() 42 } else if (wcscmp (buf, L"Is this >3.1< 3.1?") != 0) { in main() 49 ssize_t res = swprintf(buf, tests[n].n, L"%s", tests[n].str); in main() 65 if (swprintf(buf, nbuf, L"%.0s", "foo") != 0 || wcslen(buf) != 0) { in main() 71 if (swprintf(buf, nbuf, L"%.0ls", L"foo") != 0 || wcslen(buf) != 0) { in main()
|
H A D | tst-swscanf2.c | 9 const wchar_t in[] =L"7 + 35 is 42" ; in main() 21 n = swscanf (in, L"%d + %d is %d", &a, &b, &c); in main() 28 n = swscanf (L"one two three !!", L"%s %S %s %c%C", in main() 30 if (n != 5 || strcmp (buf1, "one") != 0 || wcscmp (wbuf2, L"two") != 0 in main() 31 || strcmp (buf3, "three") != 0 || c4 != '!' || wc5 != L'!') { in main()
|
H A D | test_wcfuncs.c | 60 ch = L'A'; in main() 66 ch = L'a'; in main() 71 if (towlower(L'A') != L'a') { in main() 75 if (towupper(L'a') != L'A') { in main()
|
H A D | tst-wprintf.c | 8 fputws(L"Hello world!\n", stdout); in main() 9 wprintf (L"This %s a %ls string: %d\n", "is", L"mixed", 42); in main() 10 wprintf (L"%Iu\n", 0xfeedbeef); in main()
|
/haiku/src/system/libroot/posix/glibc/libio/ |
H A D | iowpadn.c | 33 L' ', L' ', L' ', L' ', L' ', L' ', L' ', L' ', 34 L' ', L' ', L' ', L' ', L' ', L' ', L' ', L' ' 38 L'0', L'0', L'0', L'0', L'0', L'0', L'0', L'0', 39 L'0', L'0', L'0', L'0', L'0', L'0', L'0', L'0' 54 if (pad == L' ') 56 else if (pad == L'0')
|
/haiku/src/libs/bsd/ |
H A D | vis.c | 99 #define BELL L'\a' 125 #define iswoctal(c) (((u_char)(c)) >= L'0' && ((u_char)(c)) <= L'7') 126 #define iswwhite(c) (c == L' ' || c == L'\t' || c == L'\n') 127 #define iswsafe(c) (c == L'\b' || c == BELL || c == L'\r') 128 #define xtoa(c) L"0123456789abcdef"[c] 129 #define XTOA(c) L"0123456789ABCDEF"[c] 133 static const wchar_t char_shell[] = L"'`\";&<>()|{}]\\$!^~"; 134 static const wchar_t char_glob[] = L"*?[#"; 168 || c == L'$' || c == L'-' || c == L'_' || c == L'.' || c == L'+' in do_hvis() 170 || c == L'!' || c == L'*' || c == L'\'' || c == L'(' || c == L')' in do_hvis() [all …]
|
/haiku/src/system/libroot/posix/glibc/include/arch/x86/ |
H A D | asm-syntax.h | 28 #undef L 31 # define L(body) .L##body macro 33 # define L(body) .L/**/body macro 37 # define L(body) L##body macro 39 # define L(body) L/**/body macro
|
/haiku/src/apps/haikudepot/model/ |
H A D | Logger.h | 19 #define HDLOGLEVELCHAR(L) ( \ argument 20 L == LOG_LEVEL_INFO ? 'I' \ 21 : L == LOG_LEVEL_DEBUG ? 'D' \ 22 : L == LOG_LEVEL_TRACE ? 'T' \ 23 : L == LOG_LEVEL_ERROR ? 'E' \ 37 #define HDLOGPREFIX(L) printf("@%08" B_PRId64 " {%c} <t:%" B_PRIu32 "> ", \ argument 39 HDLOGLEVELCHAR(L), \ 43 #define HDLOG(L, M...) do { if (Logger::IsLevelEnabled(L)) { \ argument 44 HDLOGPREFIX(L) \
|
/haiku/src/system/libroot/posix/glibc/arch/x86/ |
H A D | rshift.S | 53 jne L(normal) 56 jnc L(special) /* jump if res_ptr + 1 >= s_ptr */ 59 jnc L(special) /* jump if s_ptr >= res_ptr + size */ 61 L(normal): 71 jz L(end) 76 L(oop): movl 28(%edi),%eax /* fetch destination cache line */ 110 jnz L(oop) 112 L(end): popl %ebx 114 jz L(end2) 115 L(oop2): [all …]
|
H A D | lshift.S | 53 jne L(normal) 56 jnc L(special) /* jump if s_ptr + 1 >= res_ptr */ 59 jnc L(special) /* jump if res_ptr >= s_ptr + size */ 61 L(normal): 74 jz L(end) 79 L(oop): movl -28(%edi),%eax /* fetch destination cache line */ 113 jnz L(oop) 115 L(end): popl %ebx 117 jz L(end2) 118 L(oop2): [all …]
|
H A D | sub_n.S | 59 jz L(end) 63 L(oop): movl 28(%edi),%eax /* fetch destination cache line */ 66 L(1): movl (%esi),%eax 75 L(2): movl 8(%esi),%eax 84 L(3): movl 16(%esi),%eax 93 L(4): movl 24(%esi),%eax 105 jnz L(oop) 108 L(end): 110 js L(end2) 112 L(oop2): [all …]
|
H A D | add_n.S | 59 jz L(end) 63 L(oop): movl 28(%edi),%eax /* fetch destination cache line */ 66 L(1): movl (%esi),%eax 75 L(2): movl 8(%esi),%eax 84 L(3): movl 16(%esi),%eax 93 L(4): movl 24(%esi),%eax 105 jnz L(oop) 108 L(end): 110 js L(end2) 112 L(oop2): [all …]
|
/haiku/src/system/libroot/posix/glibc/arch/m68k/ |
H A D | lshift.S | 52 bne L(Lnormal) 54 bls L(Lspecial) /* jump if s_ptr >= res_ptr */ 63 bls L(Lspecial) /* jump if res_ptr >= s_ptr + s_size */ 65 L(Lnormal:) 85 beq L(Lend) 87 bcs L(L1) 90 L(Loop:) 97 L(L1:) 105 dbf R(s_size),L(Loop) 107 bcc L(Loop) [all …]
|
H A D | rshift.S | 51 bne L(Lnormal) 53 bls L(Lspecial) /* jump if res_ptr >= s_ptr */ 62 bls L(Lspecial) /* jump if s_ptr >= res_ptr + s_size */ 64 L(Lnormal:) 74 beq L(Lend) 76 bcs L(L1) 79 L(Loop:) 86 L(L1:) 94 dbf R(s_size),L(Loop) 96 bcc L(Loop) [all …]
|
/haiku/src/system/libroot/posix/glibc/stdio-common/ |
H A D | printf-parse.h | 101 return (const UCHAR_T *) __wcschrnul ((const CHAR_T *) format, L'%'); in find_spec() 371 case L'i': in parse_one_spec() 372 case L'd': in parse_one_spec() 373 case L'u': in parse_one_spec() 374 case L'o': in parse_one_spec() 375 case L'X': in parse_one_spec() 376 case L'x': in parse_one_spec() 391 case L'e': in parse_one_spec() 392 case L'E': in parse_one_spec() 393 case L'f': in parse_one_spec() [all …]
|
/haiku/src/system/libroot/posix/glibc/arch/ppc/ |
H A D | lshift.S | 42 bge cr0,L(big) # branch if size >= 16 44 bdz L(end1) 46 L(0): lwzu r10,-4(r4) 51 bdz L(end2) 57 bdnz L(0) 59 L(end1):slw r0,r11,r6 65 L(boom): tweq r0,r0 69 L(big): mflr r9 70 bltl- cr0,L(boom) # Never taken, only used to set LR. 81 L(end2):slw r0,r10,r6 [all …]
|
H A D | add_n.S | 45 bt 31,L(2) 53 b L(0) 55 L(2): lwz r7,0(r5) 59 beq L(1) 65 L(0): lwz r9,4(r4) 73 bdnz L(0) 75 L(1): addze r3,r10
|
H A D | sub_n.S | 45 bt 31,L(2) 53 b L(0) 55 L(2): lwz r7,0(r5) 59 beq L(1) 64 L(0): 73 bdnz L(0) 75 L(1): subfe r3,r3,r3
|