Searched refs:ch (Results 1 - 25 of 350) sorted by relevance

1234567891011>>

/vbox/include/iprt/
H A Dctype.h42 #define RT_C_IS_BLANK(ch) RTLocCIsBlank((ch))
43 #define RT_C_IS_ALNUM(ch) RTLocCIsAlNum((ch))
44 #define RT_C_IS_ALPHA(ch) RTLocCIsAlpha((ch))
45 #define RT_C_IS_CNTRL(ch) RTLocCIsCntrl((ch))
46 #define RT_C_IS_DIGIT(ch) RTLocCIsDigit((ch))
65 RTLocCIsBlank(int ch) argument
77 RTLocCIsCntrl(int ch) argument
89 RTLocCIsDigit(int ch) argument
100 RTLocCIsLower(int ch) argument
111 RTLocCIsODigit(int ch) argument
122 RTLocCIsPrint(int ch) argument
133 RTLocCIsPunct(int ch) argument
148 RTLocCIsSpace(int ch) argument
160 RTLocCIsUpper(int ch) argument
171 RTLocCIsXDigit(int ch) argument
184 RTLocCIsAlpha(int ch) argument
195 RTLocCIsAlNum(int ch) argument
206 RTLocCIsGraph(int ch) argument
218 RTLocCToLower(int ch) argument
229 RTLocCToUpper(int ch) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/VBoxDebugLib/
H A DVBoxPrintChar.c37 * @param ch The char to print.
39 size_t VBoxPrintChar(int ch) argument
41 ASMOutU8(EFI_DEBUG_PORT, (uint8_t)ch);
/vbox/src/VBox/Runtime/common/path/
H A DRTPathChangeToDosSlashes.cpp51 char ch; local
53 while ((ch = *psz) != '\0')
55 if (ch == '/')
H A DRTPathChangeToUnixSlashes.cpp51 char ch; local
53 while ((ch = *psz) != '\0')
55 if (ch == '\\')
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dinet_net_pton.c140 int ch; local
146 ch = *src++;
147 if (ch == '0' && (src[0] == 'x' || src[0] == 'X')
154 while ((ch = *src++) != '\0' &&
155 isascii(ch) && isxdigit(ch)) {
156 if (isupper(ch))
157 ch = tolower(ch);
158 n = (int)(strchr(xdigits, ch)
[all...]
H A Dns_ttl.c118 int ch; local
120 for (p = odst; (ch = *p) != '\0'; p++)
121 if (isascii(ch) && isupper(ch))
122 *p = (char)( tolower(ch));
131 int ch, digits, dirty; local
137 while ((ch = *src++) != '\0') {
138 if (!isascii(ch) || !isprint(ch))
140 if (isdigit(ch)) {
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dserial.h12 extern void serial_putc ( int ch );
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/sysevent/
H A Dtst.post_chan.c32 evchan_t *ch; local
34 if (sysevent_evc_bind("channel_dtest", &ch,
41 if (sysevent_evc_publish(ch, "class_dtest", "subclass_dtest",
43 (void) sysevent_evc_unbind(ch);
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/IntrinsicLib/
H A DMemoryIntrinsics.c24 void * memset (void *dest, char ch, unsigned int count) argument
35 *(Pointer++) = ch;
/vbox/src/VBox/Runtime/common/string/
H A Dmemchr.cpp37 * @returns Pointer to the first instance of ch in pv.
38 * @returns NULL if ch wasn't found.
40 * @param ch The character to search for.
45 _CRTIMP __checkReturn _CONST_RETURN void * __cdecl memchr( __in_bcount_opt(_MaxCount) const void * pv, __in int ch, __in size_t cb) variable
47 void *memchr(const void *pv, int ch, size_t cb)
50 void *memchr(const void *pv, int ch, size_t cb)
57 if (*pu8 == ch)
H A Dmemset.cpp39 * @param ch The filler char.
44 void * __cdecl memset(__out_bcount_full_opt(_Size) void *pvDst, __in int ch, __in size_t cb) variable
46 void *memset(void *pvDst, int ch, size_t cb)
49 void *memset(void *pvDst, int ch, size_t cb)
61 register uint32_t u32 = ch | (ch << 8);
H A Dstrversion.cpp42 #define RTSTRVER_IS_PUNCTUACTION(ch) \
43 ( (ch) == '_' || (ch) == '-' || (ch) == '+' || RT_C_IS_PUNCT(ch) )
71 char ch; local
76 ch = *++psz;
77 while (ch && RT_C_IS_DIGIT(ch));
94 ch
[all...]
H A Dstrpbrk.cpp55 int ch; local
57 while ((ch = *psz++) != '\0')
58 if (ch == chCur)
H A DRTUtf16CopyAscii.cpp56 unsigned char ch = pszSrc[cchCopy]; local
57 if (RT_LIKELY(ch < 0x80))
58 pwszDst[cchCopy] = ch;
61 AssertMsgFailed(("ch=%#x\n", ch));
H A Dstrchr_alias.c40 extern char *(strchr)(const char *psz, int ch) argument
42 return RT_NOCRT(strchr)(psz, ch);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Ddebug.h107 #define WINE_TRACE_(ch) WINE_TRACE
112 #define WINE_WARN_(ch) WINE_WARN
114 #define WINE_FIXME_(ch) WINE_FIXME
132 #define WINE_TRACE_(ch) WINE_TRACE
137 #define WINE_WARN_(ch) WINE_WARN
139 #define WINE_FIXME_(ch) WINE_FIXME
182 extern int wine_dbg_log( enum __wine_debug_class cls, struct __wine_debug_channel *ch, const char *func,
233 #define WINE_TRACE_(ch) __WINE_DPRINTF(_TRACE,&__wine_dbch_##ch)
235 #define WINE_TRACE_ON(ch) __WINE_IS_DEBUG_O
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/vbox/libWineStub/include/wine/
H A Ddebug.h132 #define WINE_TRACE_(ch) WINE_TRACE
137 #define WINE_WARN_(ch) WINE_WARN
139 #define WINE_FIXME_(ch) WINE_FIXME
157 #define WINE_TRACE_(ch) WINE_TRACE
162 #define WINE_WARN_(ch) WINE_WARN
164 #define WINE_FIXME_(ch) WINE_FIXME
207 extern int wine_dbg_log( enum __wine_debug_class cls, struct __wine_debug_channel *ch, const char *func,
258 #define WINE_TRACE_(ch) __WINE_DPRINTF(_TRACE,&__wine_dbch_##ch)
260 #define WINE_TRACE_ON(ch) __WINE_IS_DEBUG_O
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprscanf.c66 * A function that pushes the character 'ch' back to 'stream'.
68 typedef void (*_PRUngetCharFN)(void *stream, int ch);
102 #define UNGET(state, ch) \
103 ((state)->nChar--, (state)->unget((state)->stream, ch))
110 * value to 'ch' only if we have not exceeded the field width of
112 * 'ch' is valid only if the macro WITHIN_WIDTH evaluates to true.
115 #define GET_IF_WITHIN_WIDTH(state, ch) \
117 (ch) = GET(state); \
232 int ch; local
258 GET_IF_WITHIN_WIDTH(state, ch);
342 int ch; local
424 int ch; local
569 int ch; local
647 StringUngetChar(void *stream, int ch) argument
[all...]
/vbox/src/VBox/Devices/PC/BIOS/
H A Dfont8x8.inc9 db 06ch, 0feh, 0feh, 0feh, 07ch, 038h, 010h, 000h
10 db 010h, 038h, 07ch, 0feh, 07ch, 038h, 010h, 000h
11 db 038h, 07ch, 038h, 0feh, 0feh, 07ch, 038h, 07ch
12 db 010h, 010h, 038h, 07ch, 0feh, 07ch, 038h, 07ch
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dfold.c32 static inline WCHAR to_unicode_digit( WCHAR ch )
35 return ch + wine_digitmap[wine_digitmap[ch >> 8] + (ch & 0xff)];
38 static inline WCHAR to_unicode_native( WCHAR ch )
41 return ch + wine_compatmap[wine_compatmap[ch >> 8] + (ch & 0xff)];
168 WCHAR ch = *src; local
172 expand = get_ligature(ch);
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/libWineStub/include/wine/
H A Ddebug.h170 #define WINE_TRACE_(ch) WINE_TRACE
175 #define WINE_WARN_(ch) WINE_WARN
177 #define WINE_FIXME_(ch) WINE_FIXME
195 #define WINE_TRACE_(ch) WINE_TRACE
200 #define WINE_WARN_(ch) WINE_WARN
202 #define WINE_FIXME_(ch) WINE_FIXME
245 extern int wine_dbg_log( enum __wine_debug_class cls, struct __wine_debug_channel *ch, const char *func,
296 #define WINE_TRACE_(ch) __WINE_DPRINTF(_TRACE,&__wine_dbch_##ch)
298 #define WINE_TRACE_ON(ch) __WINE_IS_DEBUG_O
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/libWineStub/include/wine/
H A Ddebug.h170 #define WINE_TRACE_(ch) WINE_TRACE
175 #define WINE_WARN_(ch) WINE_WARN
177 #define WINE_FIXME_(ch) WINE_FIXME
195 #define WINE_TRACE_(ch) WINE_TRACE
200 #define WINE_WARN_(ch) WINE_WARN
202 #define WINE_FIXME_(ch) WINE_FIXME
245 extern int wine_dbg_log( enum __wine_debug_class cls, struct __wine_debug_channel *ch, const char *func,
296 #define WINE_TRACE_(ch) __WINE_DPRINTF(_TRACE,&__wine_dbch_##ch)
298 #define WINE_TRACE_ON(ch) __WINE_IS_DEBUG_O
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Ddebug.h166 #define WINE_TRACE_(ch) WINE_TRACE
171 #define WINE_WARN_(ch) WINE_WARN
173 #define WINE_FIXME_(ch) WINE_FIXME
191 #define WINE_TRACE_(ch) WINE_TRACE
196 #define WINE_WARN_(ch) WINE_WARN
198 #define WINE_FIXME_(ch) WINE_FIXME
241 extern int wine_dbg_log( enum __wine_debug_class cls, struct __wine_debug_channel *ch, const char *func,
292 #define WINE_TRACE_(ch) __WINE_DPRINTF(_TRACE,&__wine_dbch_##ch)
294 #define WINE_TRACE_ON(ch) __WINE_IS_DEBUG_O
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/vbox/libWineStub/include/wine/
H A Ddebug.h170 #define WINE_TRACE_(ch) WINE_TRACE
175 #define WINE_WARN_(ch) WINE_WARN
177 #define WINE_FIXME_(ch) WINE_FIXME
195 #define WINE_TRACE_(ch) WINE_TRACE
200 #define WINE_WARN_(ch) WINE_WARN
202 #define WINE_FIXME_(ch) WINE_FIXME
245 extern int wine_dbg_log( enum __wine_debug_class cls, struct __wine_debug_channel *ch, const char *func,
296 #define WINE_TRACE_(ch) __WINE_DPRINTF(_TRACE,&__wine_dbch_##ch)
298 #define WINE_TRACE_ON(ch) __WINE_IS_DEBUG_O
[all...]
/vbox/src/VBox/Runtime/testcase/
H A DtstRTCType.cpp203 for (int ch = 0; ch < (int)RT_ELEMENTS(g_afCharMap); ch++)
205 TEST_X(ch, iscntrl, X_CNTRL);
206 TEST_X(ch, isspace, X_SPACE);
207 TEST_X(ch, isblank, X_BLANK);
208 TEST_X(ch, isprint, X_PRINT);
209 TEST_X(ch, ispunct, X_PUNCT);
210 TEST_X(ch, isgraph, X_GRAPH);
211 TEST_X(ch, isdigi
[all...]

Completed in 120 milliseconds

1234567891011>>