Home
last modified time | relevance | path

Searched defs:c (Results 126 – 150 of 275) sorted by relevance

1234567891011

/PHP-5.5/ext/hash/
H A Dhash_tiger.c42 #define round(a,b,c,x,mul) \ argument
54 #define pass(a,b,c,mul) \ argument
H A Dhash_ripemd.c205 php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3]; in RIPEMD128Transform() local
296 php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3]; in RIPEMD256Transform() local
394 php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3], e = state[4]; in RIPEMD160Transform() local
493 php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3], e = state[4]; in RIPEMD320Transform() local
/PHP-5.5/ext/gd/libgd/
H A Dgd.h87 #define gdTrueColorGetAlpha(c) (((c) & 0x7F000000) >> 24) argument
88 #define gdTrueColorGetRed(c) (((c) & 0xFF0000) >> 16) argument
89 #define gdTrueColorGetGreen(c) (((c) & 0x00FF00) >> 8) argument
90 #define gdTrueColorGetBlue(c) ((c) & 0x0000FF) argument
730 #define gdImageRed(im, c) ((im)->trueColor ? gdTrueColorGetRed(c) : \ argument
732 #define gdImageGreen(im, c) ((im)->trueColor ? gdTrueColorGetGreen(c) : \ argument
734 #define gdImageBlue(im, c) ((im)->trueColor ? gdTrueColorGetBlue(c) : \ argument
736 #define gdImageAlpha(im, c) ((im)->trueColor ? gdTrueColorGetAlpha(c) : \ argument
H A Dgd2time.c18 int c; in main() local
H A Dgd_rotate.c208 int c,r,g,b,a; in gdImageRotate90() local
255 int c,r,g,b,a; in gdImageRotate180() local
303 int c,r,g,b,a; in gdImageRotate270() local
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregparse.c310 int c; in str_end_cmp() local
1583 OnigCodePoint c; in onig_scan_unsigned_number() local
1610 OnigCodePoint c; in scan_unsigned_hexadecimal_number() local
1638 OnigCodePoint c; in scan_unsigned_octal_number() local
2194 QtfrNode *p, *c; in onig_reduce_nested_quantifier() local
2276 int c; member
2314 OnigCodePoint c; in fetch_range_quantifier() local
2404 OnigCodePoint c; in fetch_escaped_value() local
3124 OnigCodePoint c; in fetch_token() local
3827 int c, r; in add_ctype_to_cc() local
[all …]
/PHP-5.5/Zend/
H A Dzend_indent.c36 unsigned char c; in handle_whitespace() local
H A Dzend_language_scanner.c31 # define YYDEBUG(s, c) argument
110 #define HANDLE_NEWLINE(c) \ argument
121 #define IS_LABEL_START(c) (((c) >= 'a' && (c) <= 'z') || ((c) >= 'A' && (c) <= 'Z') || (c) == '_' |… argument
123 #define ZEND_IS_OCT(c) ((c)>='0' && (c)<='7') argument
124 #define ZEND_IS_HEX(c) (((c)>='0' && (c)<='9') || ((c)>='a' && (c)<='f') || ((c)>='A' && (c)<='F')) argument
H A Dzend_highlight.c29 ZEND_API void zend_html_putc(char c) in zend_html_putc()
/PHP-5.5/ext/mbstring/oniguruma/enc/
H A Dsjis.c98 int c, i, len; in mbc_to_code() local
204 const UChar c = *s; in is_allowed_reverse_match() local
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_atomic.h25 #define atomic_cmp_set(a,b,c) __sync_bool_compare_and_swap(a,b,c) argument
92 #define atomic_cmp_set(a,b,c) __sync_bool_compare_and_swap(a,b,c) argument
/PHP-5.5/sapi/isapi/stresstest/
H A Dstresstest.cpp485 int c = NULL; in main() local
732 TIsapiContext *c = (TIsapiContext *)hConn; in GetServerVariable() local
764 TIsapiContext *c = (TIsapiContext *)hConn; in ReadClient() local
777 TIsapiContext *c = (TIsapiContext *)hConn; in WriteClient() local
791 TIsapiContext *c = (TIsapiContext *)hConn; in ServerSupportFunction() local
/PHP-5.5/TSRM/
H A Dtsrm_virtual_cwd.h63 #define IS_SLASH(c) ((c) == '/' || (c) == '\\') argument
64 #define IS_SLASH_P(c) (*(c) == '/' || \ argument
82 #define IS_SLASH(c) ((c) == '/' || (c) == '\\') argument
83 #define IS_SLASH_P(c) IS_SLASH(*(c)) argument
101 #define IS_SLASH(c) ((c) == '/') argument
102 #define IS_SLASH_P(c) (*(c) == '/') argument
/PHP-5.5/ext/mbstring/libmbfl/filters/
H A Dmbfilter_tl_jisx0201_jisx0208.c41 mbfl_filt_tl_jisx0201_jisx0208(int c, mbfl_convert_filter *filt) in mbfl_filt_tl_jisx0201_jisx0208()
/PHP-5.5/ext/mbstring/libmbfl/tests/
H A Dconv_kana.c110 const int c = fgetc(stdin); in main() local
H A Dstrcut.c73 const int c = fgetc(stdin); in main() local
H A Dconv_encoding.c64 const int c = fgetc(stdin); in main() local
/PHP-5.5/ext/standard/
H A Dphp_smart_str.h46 #define SMART_STR_REALLOC(a,b,c) realloc((a),(b)) argument
48 #define SMART_STR_REALLOC(a,b,c) perealloc((a),(b),(c)) argument
84 #define smart_str_appendc(dest, c) \ argument
H A Dmd5.h46 php_uint32 a, b, c, d; member
H A Dlcg.c51 #define MODMULT(a, b, c, m, s) q = s/a;s=b*(s-a*q)-c*q;if(s<0)s+=m argument
/PHP-5.5/ext/ereg/regex/
H A Dengine.c51 #define SP(t, s, c) print(m, t, s, c, stdout) argument
55 #define SP(t, s, c) /* nothing */ argument
636 register int c = (start == m->beginp) ? OUT : *(start-1); local
727 register int c = (start == m->beginp) ? OUT : *(start-1); local
H A Ddebug.c24 register int c; local
H A Dmain.c37 int c; local
372 opt(c, s) in opt() argument
/PHP-5.5/ext/opcache/Optimizer/
H A Dpass1_5.c238 zval c; variable
/PHP-5.5/ext/fileinfo/libmagic/
H A Dis_tar.c51 #define isodigit(c) ( ((c) >= '0') && ((c) <= '7') ) argument

Completed in 289 milliseconds

1234567891011