cs                820 ext/com_dotnet/com_com.c 	zend_bool cs = TRUE;
cs                824 ext/com_dotnet/com_com.c 	if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "s|b", &name, &namelen, &cs)) {
cs                835 ext/com_dotnet/com_com.c 		} else if (php_com_import_typelib(pTL, cs ? CONST_CS : 0, codepage) == SUCCESS) {
cs                635 ext/gd/libgd/gd.h void gdImageGd2(gdImagePtr im, FILE *out, int cs, int fmt);
cs                645 ext/gd/libgd/gd.h void* gdImageGd2Ptr(gdImagePtr im, int cs, int fmt, int *size);
cs                 54 ext/gd/libgd/gd_gd2.c static int _gd2GetHeader(gdIOCtxPtr in, int *sx, int *sy, int *cs, int *vers, int *fmt, int *ncx, int *ncy, t_chunk_info ** chunkIdx)
cs                105 ext/gd/libgd/gd_gd2.c 	if (gdGetWord(cs, in) != 1) {
cs                108 ext/gd/libgd/gd_gd2.c 	GD2_DBG(php_gd_error("ChunkSize: %d", *cs));
cs                110 ext/gd/libgd/gd_gd2.c 	if ((*cs < GD2_CHUNKSIZE_MIN) || (*cs > GD2_CHUNKSIZE_MAX)) {
cs                111 ext/gd/libgd/gd_gd2.c 		GD2_DBG(php_gd_error("Bad chunk size: %d", *cs));
cs                165 ext/gd/libgd/gd_gd2.c static gdImagePtr _gd2CreateFromFile (gdIOCtxPtr in, int *sx, int *sy, int *cs, int *vers, int *fmt, int *ncx, int *ncy, t_chunk_info ** cidx)
cs                169 ext/gd/libgd/gd_gd2.c 	if (_gd2GetHeader (in, sx, sy, cs, vers, fmt, ncx, ncy, cidx) != 1) {
cs                253 ext/gd/libgd/gd_gd2.c 	int ncx, ncy, nc, cs, cx, cy;
cs                269 ext/gd/libgd/gd_gd2.c 	if (!(im = _gd2CreateFromFile(in, &sx, &sy, &cs, &vers, &fmt, &ncx, &ncy, &chunkIdx))) {
cs                287 ext/gd/libgd/gd_gd2.c 		chunkMax = cs * bytesPerPixel * cs;
cs                300 ext/gd/libgd/gd_gd2.c 			ylo = cy * cs;
cs                301 ext/gd/libgd/gd_gd2.c 			yhi = ylo + cs;
cs                320 ext/gd/libgd/gd_gd2.c 				xlo = cx * cs;
cs                321 ext/gd/libgd/gd_gd2.c 				xhi = xlo + cs;
cs                415 ext/gd/libgd/gd_gd2.c 	int nc, ncx, ncy, cs, cx, cy;
cs                441 ext/gd/libgd/gd_gd2.c 	if (_gd2GetHeader(in, &fsx, &fsy, &cs, &vers, &fmt, &ncx, &ncy, &chunkIdx) != 1) {
cs                476 ext/gd/libgd/gd_gd2.c 			chunkMax = cs * cs * 4;
cs                478 ext/gd/libgd/gd_gd2.c 			chunkMax = cs * cs;
cs                489 ext/gd/libgd/gd_gd2.c 	scx = srcx / cs;
cs                490 ext/gd/libgd/gd_gd2.c 	scy = srcy / cs;
cs                498 ext/gd/libgd/gd_gd2.c 	ecx = (srcx + w) / cs;
cs                499 ext/gd/libgd/gd_gd2.c 	ecy = (srcy + h) / cs;
cs                513 ext/gd/libgd/gd_gd2.c 		ylo = cy * cs;
cs                514 ext/gd/libgd/gd_gd2.c 		yhi = ylo + cs;
cs                521 ext/gd/libgd/gd_gd2.c 			xlo = cx * cs;
cs                522 ext/gd/libgd/gd_gd2.c 			xhi = xlo + cs;
cs                532 ext/gd/libgd/gd_gd2.c 					dpos = (cy * (cs * fsx) * 4 + cx * cs * (yhi - ylo) * 4) + dstart;
cs                534 ext/gd/libgd/gd_gd2.c 					dpos = cy * (cs * fsx) + cx * cs * (yhi - ylo) + dstart;
cs                622 ext/gd/libgd/gd_gd2.c static void _gd2PutHeader (gdImagePtr im, gdIOCtx * out, int cs, int fmt, int cx, int cy)
cs                636 ext/gd/libgd/gd_gd2.c 	gdPutWord(cs, out);
cs                642 ext/gd/libgd/gd_gd2.c static void _gdImageGd2 (gdImagePtr im, gdIOCtx * out, int cs, int fmt)
cs                670 ext/gd/libgd/gd_gd2.c 	if (cs == 0) {
cs                671 ext/gd/libgd/gd_gd2.c 		cs = GD2_CHUNKSIZE;
cs                672 ext/gd/libgd/gd_gd2.c 	} else if (cs < GD2_CHUNKSIZE_MIN) {
cs                673 ext/gd/libgd/gd_gd2.c 		cs = GD2_CHUNKSIZE_MIN;
cs                674 ext/gd/libgd/gd_gd2.c 	} else if (cs > GD2_CHUNKSIZE_MAX) {
cs                675 ext/gd/libgd/gd_gd2.c 		cs = GD2_CHUNKSIZE_MAX;
cs                679 ext/gd/libgd/gd_gd2.c 	ncx = im->sx / cs + 1;
cs                680 ext/gd/libgd/gd_gd2.c 	ncy = im->sy / cs + 1;
cs                683 ext/gd/libgd/gd_gd2.c 	_gd2PutHeader (im, out, cs, fmt, ncx, ncy);
cs                693 ext/gd/libgd/gd_gd2.c 		compMax = (int)(cs * bytesPerPixel * cs * 1.02f) + 12;
cs                696 ext/gd/libgd/gd_gd2.c 		chunkData = safe_emalloc(cs * bytesPerPixel, cs, 0);
cs                697 ext/gd/libgd/gd_gd2.c 		memset(chunkData, 0, cs * bytesPerPixel * cs);
cs                722 ext/gd/libgd/gd_gd2.c 			ylo = cy * cs;
cs                723 ext/gd/libgd/gd_gd2.c 			yhi = ylo + cs;
cs                732 ext/gd/libgd/gd_gd2.c 				xlo = cx * cs;
cs                733 ext/gd/libgd/gd_gd2.c 				xhi = xlo + cs;
cs                810 ext/gd/libgd/gd_gd2.c void gdImageGd2 (gdImagePtr im, FILE * outFile, int cs, int fmt)
cs                814 ext/gd/libgd/gd_gd2.c 	_gdImageGd2(im, out, cs, fmt);
cs                819 ext/gd/libgd/gd_gd2.c void *gdImageGd2Ptr (gdImagePtr im, int cs, int fmt, int *size)
cs                824 ext/gd/libgd/gd_gd2.c 	_gdImageGd2(im, out, cs, fmt);
cs                 16 ext/gd/libgd/pngtogd2.c   int cs, fmt;
cs                 45 ext/gd/libgd/pngtogd2.c   cs = atoi (argv[3]);
cs                 47 ext/gd/libgd/pngtogd2.c   gdImageGd2 (im, out, cs, fmt);
cs               11241 ext/mbstring/oniguruma/enc/unicode.c       OnigCodePoint cs[3][4];
cs               11245 ext/mbstring/oniguruma/enc/unicode.c 	cs[fn][0] = to->code[fn];
cs               11246 ext/mbstring/oniguruma/enc/unicode.c 	if (onig_st_lookup(Unfold1Table, (st_data_t )cs[fn][0],
cs               11249 ext/mbstring/oniguruma/enc/unicode.c 	    cs[fn][i+1] = z3->code[i];
cs               11262 ext/mbstring/oniguruma/enc/unicode.c 	    items[n].code[0]  = cs[0][i];
cs               11263 ext/mbstring/oniguruma/enc/unicode.c 	    items[n].code[1]  = cs[1][j];
cs               11286 ext/mbstring/oniguruma/enc/unicode.c 	      items[n].code[0]  = cs[0][i];
cs               11287 ext/mbstring/oniguruma/enc/unicode.c 	      items[n].code[1]  = cs[1][j];
cs               11288 ext/mbstring/oniguruma/enc/unicode.c 	      items[n].code[2]  = cs[2][k];
cs                974 ext/mysqli/mysqli_nonapi.c 	MY_CHARSET_INFO			cs;
cs                976 ext/mysqli/mysqli_nonapi.c 	const MYSQLND_CHARSET	*cs;
cs                986 ext/mysqli/mysqli_nonapi.c 	mysql_get_character_set_info(mysql->mysql, &cs);
cs                987 ext/mysqli/mysqli_nonapi.c 	name = (char *)cs.csname;
cs                988 ext/mysqli/mysqli_nonapi.c 	collation = (char *)cs.name;
cs                989 ext/mysqli/mysqli_nonapi.c 	dir = (char *)cs.dir;
cs                990 ext/mysqli/mysqli_nonapi.c 	minlength = cs.mbminlen;
cs                991 ext/mysqli/mysqli_nonapi.c 	maxlength = cs.mbmaxlen;
cs                992 ext/mysqli/mysqli_nonapi.c 	number = cs.number;
cs                993 ext/mysqli/mysqli_nonapi.c 	state = cs.state;
cs                994 ext/mysqli/mysqli_nonapi.c 	comment = cs.comment;
cs                996 ext/mysqli/mysqli_nonapi.c 	cs = mysql->mysql->data->charset;
cs                997 ext/mysqli/mysqli_nonapi.c 	if (!cs) {
cs               1001 ext/mysqli/mysqli_nonapi.c 	name = cs->name;
cs               1002 ext/mysqli/mysqli_nonapi.c 	collation = cs->collation;
cs               1003 ext/mysqli/mysqli_nonapi.c 	minlength = cs->char_minlen;
cs               1004 ext/mysqli/mysqli_nonapi.c 	maxlength = cs->char_maxlen;
cs               1005 ext/mysqli/mysqli_nonapi.c 	number = cs->nr;
cs               1006 ext/mysqli/mysqli_nonapi.c 	comment = cs->comment;
cs                205 ext/mysqlnd/mysqlnd.h #define mysqlnd_set_character_set(conn, cs)	((conn)->data)->m->set_charset((conn)->data, (cs))
cs                349 ext/opcache/Optimizer/block_pass.c #define DEL_SOURCE(cs) do { \
cs                350 ext/opcache/Optimizer/block_pass.c 		*(cs) = (*(cs))->next; \
cs                357 ext/opcache/Optimizer/block_pass.c 	zend_block_source **cs;
cs                360 ext/opcache/Optimizer/block_pass.c 	for (cs = &list; *cs; cs = &((*cs)->next)) {
cs                361 ext/opcache/Optimizer/block_pass.c 		if ((*cs)->from == new) {
cs                363 ext/opcache/Optimizer/block_pass.c 				DEL_SOURCE(cs);
cs                369 ext/opcache/Optimizer/block_pass.c 		if ((*cs)->from == old) {
cs                371 ext/opcache/Optimizer/block_pass.c 				DEL_SOURCE(cs);
cs                373 ext/opcache/Optimizer/block_pass.c 				(*cs)->from = new;
cs                383 ext/opcache/Optimizer/block_pass.c 	zend_block_source **cs = &to->sources;
cs                394 ext/opcache/Optimizer/block_pass.c 	while (*cs) {
cs                395 ext/opcache/Optimizer/block_pass.c 		if ((*cs)->from == from) {
cs                396 ext/opcache/Optimizer/block_pass.c 		 	DEL_SOURCE(cs);
cs                399 ext/opcache/Optimizer/block_pass.c 		cs = &((*cs)->next);
cs               1332 ext/opcache/Optimizer/block_pass.c 					zend_block_source *cs = block->op1_to->sources;
cs               1335 ext/opcache/Optimizer/block_pass.c 					while(cs) {
cs               1336 ext/opcache/Optimizer/block_pass.c 						if (cs->from->follow_to == block->op1_to) {
cs               1340 ext/opcache/Optimizer/block_pass.c 						cs = cs->next;
cs               1748 ext/pcre/pcrelib/pcre_compile.c   pcre_uchar *ce, *cs;
cs               1795 ext/pcre/pcrelib/pcre_compile.c     cs = ce = (pcre_uchar *)cd->start_code + GET(cc, 1);  /* Start subpattern */
cs               1797 ext/pcre/pcrelib/pcre_compile.c     if (cc > cs && cc < ce) return -1;                    /* Recursion */
cs               1801 ext/pcre/pcrelib/pcre_compile.c       for (r = recurses; r != NULL; r = r->prev) if (r->group == cs) break;
cs               1805 ext/pcre/pcrelib/pcre_compile.c     this_recurse.group = cs;
cs               1806 ext/pcre/pcrelib/pcre_compile.c     d = find_fixedlength(cs + IMM2_SIZE, utf, atend, cd, &this_recurse);
cs                104 ext/pcre/pcrelib/pcre_study.c   pcre_uchar *cs, *ce;
cs                116 ext/pcre/pcrelib/pcre_study.c     cs = cc + GET(cc, 1);
cs                117 ext/pcre/pcrelib/pcre_study.c     if (*cs != OP_ALT)
cs                119 ext/pcre/pcrelib/pcre_study.c       cc = cs + 1 + LINK_SIZE;
cs                396 ext/pcre/pcrelib/pcre_study.c         ce = cs = (pcre_uchar *)PRIV(find_bracket)(startcode, utf, GET2(slot, 0));
cs                397 ext/pcre/pcrelib/pcre_study.c         if (cs == NULL) return -2;
cs                399 ext/pcre/pcrelib/pcre_study.c         if (cc > cs && cc < ce)     /* Simple recursion */
cs                408 ext/pcre/pcrelib/pcre_study.c           for (r = recurses; r != NULL; r = r->prev) if (r->group == cs) break;
cs                419 ext/pcre/pcrelib/pcre_study.c             this_recurse.group = cs;
cs                420 ext/pcre/pcrelib/pcre_study.c             dd = find_minlength(re, cs, startcode, options, &this_recurse,
cs                436 ext/pcre/pcrelib/pcre_study.c       ce = cs = (pcre_uchar *)PRIV(find_bracket)(startcode, utf, GET2(cc, 1));
cs                437 ext/pcre/pcrelib/pcre_study.c       if (cs == NULL) return -2;
cs                439 ext/pcre/pcrelib/pcre_study.c       if (cc > cs && cc < ce)    /* Simple recursion */
cs                447 ext/pcre/pcrelib/pcre_study.c         for (r = recurses; r != NULL; r = r->prev) if (r->group == cs) break;
cs                456 ext/pcre/pcrelib/pcre_study.c           this_recurse.group = cs;
cs                457 ext/pcre/pcrelib/pcre_study.c           d = find_minlength(re, cs, startcode, options, &this_recurse,
cs                506 ext/pcre/pcrelib/pcre_study.c     cs = ce = (pcre_uchar *)startcode + GET(cc, 1);
cs                508 ext/pcre/pcrelib/pcre_study.c     if (cc > cs && cc < ce)    /* Simple recursion */
cs                513 ext/pcre/pcrelib/pcre_study.c       for (r = recurses; r != NULL; r = r->prev) if (r->group == cs) break;
cs                519 ext/pcre/pcrelib/pcre_study.c         this_recurse.group = cs;
cs                520 ext/pcre/pcrelib/pcre_study.c         branchlength += find_minlength(re, cs, startcode, options,
cs                 36 ext/standard/html_tables.h #define CHARSET_UNICODE_COMPAT(cs)	((cs) <= cs_8859_1)
cs                 37 ext/standard/html_tables.h #define CHARSET_SINGLE_BYTE(cs)		((cs) > cs_utf_8 && (cs) < cs_big5)
cs                 38 ext/standard/html_tables.h #define CHARSET_PARTIAL_SUPPORT(cs)	((cs) >= cs_big5)
cs               5704 ext/standard/string.c 	zend_bool cs=0;
cs               5707 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "SSl|lb", &s1, &s2, &offset, &len, &cs) == FAILURE) {
cs               5732 ext/standard/string.c 	if (!cs) {
cs                231 ext/zip/lib/zip_extra_field_api.c     zip_uint16_t ls, cs;
cs                284 ext/zip/lib/zip_extra_field_api.c 	cs = _zip_ef_size(de->extra_fields, ZIP_EF_CENTRAL);
cs                286 ext/zip/lib/zip_extra_field_api.c 	cs = 0;
cs                288 ext/zip/lib/zip_extra_field_api.c     new_len = ls > cs ? ls : cs;