Lines Matching defs:c
148 # define INT64_C(c) CAT2(c,LL) argument
149 # define UINT64_C(c) CAT2(c,ULL) argument
152 # define INT64_C(c) CAT2(c,L) argument
153 # define UINT64_C(c) CAT2(c,UL) argument
155 # define INT64_C(c) ((I64TYPE)(c)) argument
156 # define UINT64_C(c) ((U64TYPE)(c)) argument
330 #define isALNUM(c) (isALPHA(c) || isDIGIT(c) || (c) == '_') argument
331 #define isIDFIRST(c) (isALPHA(c) || (c) == '_') argument
332 #define isALPHA(c) (isUPPER(c) || isLOWER(c)) argument
333 #define isSPACE(c) \ argument
335 #define isPSXSPC(c) (isSPACE(c) || (c) == '\v') argument
336 #define isBLANK(c) ((c) == ' ' || (c) == '\t') argument
337 #define isDIGIT(c) ((c) >= '0' && (c) <= '9') argument
340 # define isUPPER(c) isupper(c) argument
341 # define isLOWER(c) islower(c) argument
342 # define isALNUMC(c) isalnum(c) argument
343 # define isASCII(c) isascii(c) argument
344 # define isCNTRL(c) iscntrl(c) argument
345 # define isGRAPH(c) isgraph(c) argument
346 # define isPRINT(c) isprint(c) argument
347 # define isPUNCT(c) ispunct(c) argument
348 # define isXDIGIT(c) isxdigit(c) argument
349 # define toUPPER(c) toupper(c) argument
350 # define toLOWER(c) tolower(c) argument
352 # define isUPPER(c) ((c) >= 'A' && (c) <= 'Z') argument
353 # define isLOWER(c) ((c) >= 'a' && (c) <= 'z') argument
354 # define isALNUMC(c) (isALPHA(c) || isDIGIT(c)) argument
355 # define isASCII(c) ((c) <= 127) argument
356 # define isCNTRL(c) ((c) < ' ' || (c) == 127) argument
357 # define isGRAPH(c) (isALNUM(c) || isPUNCT(c)) argument
358 # define isPRINT(c) (((c) > 32 && (c) < 127) || (c) == ' ') argument
359 # define isPUNCT(c) (((c) >= 33 && (c) <= 47) || ((c) >= 58 && (c) <= 64) || ((c) >= 91 && (c) <… argument
360 # define isXDIGIT(c) (isDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || ((c) >= 'A' && (c) <= 'F')) argument
361 # define toUPPER(c) (isLOWER(c) ? (c) - ('a' - 'A') : (c)) argument
362 # define toLOWER(c) (isUPPER(c) ? (c) + ('a' - 'A') : (c)) argument
367 # define isALNUM_LC(c) \ argument
369 # define isIDFIRST_LC(c) \ argument
371 # define isALPHA_LC(c) NXIsAlpha((unsigned int)(c)) argument
372 # define isSPACE_LC(c) NXIsSpace((unsigned int)(c)) argument
373 # define isDIGIT_LC(c) NXIsDigit((unsigned int)(c)) argument
374 # define isUPPER_LC(c) NXIsUpper((unsigned int)(c)) argument
375 # define isLOWER_LC(c) NXIsLower((unsigned int)(c)) argument
376 # define isALNUMC_LC(c) NXIsAlNum((unsigned int)(c)) argument
377 # define isCNTRL_LC(c) NXIsCntrl((unsigned int)(c)) argument
378 # define isGRAPH_LC(c) NXIsGraph((unsigned int)(c)) argument
379 # define isPRINT_LC(c) NXIsPrint((unsigned int)(c)) argument
380 # define isPUNCT_LC(c) NXIsPunct((unsigned int)(c)) argument
381 # define toUPPER_LC(c) NXToUpper((unsigned int)(c)) argument
382 # define toLOWER_LC(c) NXToLower((unsigned int)(c)) argument
388 # define isALNUM_LC(c) (isalnum((unsigned char)(c)) || (char)(c) == '_') argument
389 # define isIDFIRST_LC(c) (isalpha((unsigned char)(c)) || (char)(c) == '_') argument
390 # define isALPHA_LC(c) isalpha((unsigned char)(c)) argument
391 # define isSPACE_LC(c) isspace((unsigned char)(c)) argument
392 # define isDIGIT_LC(c) isdigit((unsigned char)(c)) argument
393 # define isUPPER_LC(c) isupper((unsigned char)(c)) argument
394 # define isLOWER_LC(c) islower((unsigned char)(c)) argument
395 # define isALNUMC_LC(c) isalnum((unsigned char)(c)) argument
396 # define isCNTRL_LC(c) iscntrl((unsigned char)(c)) argument
397 # define isGRAPH_LC(c) isgraph((unsigned char)(c)) argument
398 # define isPRINT_LC(c) isprint((unsigned char)(c)) argument
399 # define isPUNCT_LC(c) ispunct((unsigned char)(c)) argument
400 # define toUPPER_LC(c) toupper((unsigned char)(c)) argument
401 # define toLOWER_LC(c) tolower((unsigned char)(c)) argument
405 # define isALNUM_LC(c) (isascii(c) && (isalnum(c) || (c) == '_')) argument
406 # define isIDFIRST_LC(c) (isascii(c) && (isalpha(c) || (c) == '_')) argument
407 # define isALPHA_LC(c) (isascii(c) && isalpha(c)) argument
408 # define isSPACE_LC(c) (isascii(c) && isspace(c)) argument
409 # define isDIGIT_LC(c) (isascii(c) && isdigit(c)) argument
410 # define isUPPER_LC(c) (isascii(c) && isupper(c)) argument
411 # define isLOWER_LC(c) (isascii(c) && islower(c)) argument
412 # define isALNUMC_LC(c) (isascii(c) && isalnum(c)) argument
413 # define isCNTRL_LC(c) (isascii(c) && iscntrl(c)) argument
414 # define isGRAPH_LC(c) (isascii(c) && isgraph(c)) argument
415 # define isPRINT_LC(c) (isascii(c) && isprint(c)) argument
416 # define isPUNCT_LC(c) (isascii(c) && ispunct(c)) argument
417 # define toUPPER_LC(c) toupper(c) argument
418 # define toLOWER_LC(c) tolower(c) argument
423 #define isPSXSPC_LC(c) (isSPACE_LC(c) || (c) == '\v') argument
424 #define isBLANK_LC(c) isBLANK(c) /* could be wrong */ argument
426 #define isALNUM_uni(c) is_uni_alnum(c) argument
427 #define isIDFIRST_uni(c) is_uni_idfirst(c) argument
428 #define isALPHA_uni(c) is_uni_alpha(c) argument
429 #define isSPACE_uni(c) is_uni_space(c) argument
430 #define isDIGIT_uni(c) is_uni_digit(c) argument
431 #define isUPPER_uni(c) is_uni_upper(c) argument
432 #define isLOWER_uni(c) is_uni_lower(c) argument
433 #define isALNUMC_uni(c) is_uni_alnumc(c) argument
434 #define isASCII_uni(c) is_uni_ascii(c) argument
435 #define isCNTRL_uni(c) is_uni_cntrl(c) argument
436 #define isGRAPH_uni(c) is_uni_graph(c) argument
437 #define isPRINT_uni(c) is_uni_print(c) argument
438 #define isPUNCT_uni(c) is_uni_punct(c) argument
439 #define isXDIGIT_uni(c) is_uni_xdigit(c) argument
440 #define toUPPER_uni(c,s,l) to_uni_upper(c,s,l) argument
441 #define toTITLE_uni(c,s,l) to_uni_title(c,s,l) argument
442 #define toLOWER_uni(c,s,l) to_uni_lower(c,s,l) argument
443 #define toFOLD_uni(c,s,l) to_uni_fold(c,s,l) argument
445 #define isPSXSPC_uni(c) (isSPACE_uni(c) ||(c) == '\f') argument
446 #define isBLANK_uni(c) isBLANK(c) /* could be wrong */ argument
448 #define isALNUM_LC_uvchr(c) (c < 256 ? isALNUM_LC(c) : is_uni_alnum_lc(c)) argument
449 #define isIDFIRST_LC_uvchr(c) (c < 256 ? isIDFIRST_LC(c) : is_uni_idfirst_lc(c)) argument
450 #define isALPHA_LC_uvchr(c) (c < 256 ? isALPHA_LC(c) : is_uni_alpha_lc(c)) argument
451 #define isSPACE_LC_uvchr(c) (c < 256 ? isSPACE_LC(c) : is_uni_space_lc(c)) argument
452 #define isDIGIT_LC_uvchr(c) (c < 256 ? isDIGIT_LC(c) : is_uni_digit_lc(c)) argument
453 #define isUPPER_LC_uvchr(c) (c < 256 ? isUPPER_LC(c) : is_uni_upper_lc(c)) argument
454 #define isLOWER_LC_uvchr(c) (c < 256 ? isLOWER_LC(c) : is_uni_lower_lc(c)) argument
455 #define isALNUMC_LC_uvchr(c) (c < 256 ? isALNUMC_LC(c) : is_uni_alnumc_lc(c)) argument
456 #define isCNTRL_LC_uvchr(c) (c < 256 ? isCNTRL_LC(c) : is_uni_cntrl_lc(c)) argument
457 #define isGRAPH_LC_uvchr(c) (c < 256 ? isGRAPH_LC(c) : is_uni_graph_lc(c)) argument
458 #define isPRINT_LC_uvchr(c) (c < 256 ? isPRINT_LC(c) : is_uni_print_lc(c)) argument
459 #define isPUNCT_LC_uvchr(c) (c < 256 ? isPUNCT_LC(c) : is_uni_punct_lc(c)) argument
461 #define isPSXSPC_LC_uni(c) (isSPACE_LC_uni(c) ||(c) == '\f') argument
462 #define isBLANK_LC_uni(c) isBLANK(c) /* could be wrong */ argument
485 #define isPSXSPC_utf8(c) (isSPACE_utf8(c) ||(c) == '\f') argument
486 #define isBLANK_utf8(c) isBLANK(c) /* could be wrong */ argument
501 #define isPSXSPC_LC_utf8(c) (isSPACE_LC_utf8(c) ||(c) == '\f') argument
502 #define isBLANK_LC_utf8(c) isBLANK(c) /* could be wrong */ argument
506 # define toCTRL(c) Perl_ebcdic_control(aTHX_ c) argument
512 # define toCTRL(c) (toUPPER(c) ^ 64) argument
595 #define Newc(x,v,n,t,c) (v = (MEM_WRAP_CHECK(n,t), (c*)safemalloc((MEM_SIZE)((n)*sizeof(t))))) argument
600 #define Renewc(v,n,t,c) \ argument
617 #define Newc(x,v,n,t,c) (v = (c*)safemalloc((MEM_SIZE)((n)*sizeof(t)))) argument
622 #define Renewc(v,n,t,c) \ argument
637 #define Newc(x,v,n,s,c) (v = Null(s *)) argument