conv              161 ext/curl/multi.c 	unsigned long conv;
conv              163 ext/curl/multi.c 	conv = (unsigned long) (timeout * 1000000.0);
conv              164 ext/curl/multi.c 	to->tv_sec = conv / 1000000;
conv              165 ext/curl/multi.c 	to->tv_usec = conv % 1000000;
conv               33 ext/mbstring/oniguruma/regext.c conv_ext0be32(const UChar* s, const UChar* end, UChar* conv)
conv               36 ext/mbstring/oniguruma/regext.c     *conv++ = '\0';
conv               37 ext/mbstring/oniguruma/regext.c     *conv++ = '\0';
conv               38 ext/mbstring/oniguruma/regext.c     *conv++ = '\0';
conv               39 ext/mbstring/oniguruma/regext.c     *conv++ = *s++;
conv               44 ext/mbstring/oniguruma/regext.c conv_ext0le32(const UChar* s, const UChar* end, UChar* conv)
conv               47 ext/mbstring/oniguruma/regext.c     *conv++ = *s++;
conv               48 ext/mbstring/oniguruma/regext.c     *conv++ = '\0';
conv               49 ext/mbstring/oniguruma/regext.c     *conv++ = '\0';
conv               50 ext/mbstring/oniguruma/regext.c     *conv++ = '\0';
conv               55 ext/mbstring/oniguruma/regext.c conv_ext0be(const UChar* s, const UChar* end, UChar* conv)
conv               58 ext/mbstring/oniguruma/regext.c     *conv++ = '\0';
conv               59 ext/mbstring/oniguruma/regext.c     *conv++ = *s++;
conv               64 ext/mbstring/oniguruma/regext.c conv_ext0le(const UChar* s, const UChar* end, UChar* conv)
conv               67 ext/mbstring/oniguruma/regext.c     *conv++ = *s++;
conv               68 ext/mbstring/oniguruma/regext.c     *conv++ = '\0';
conv               73 ext/mbstring/oniguruma/regext.c conv_swap4bytes(const UChar* s, const UChar* end, UChar* conv)
conv               76 ext/mbstring/oniguruma/regext.c     *conv++ = s[3];
conv               77 ext/mbstring/oniguruma/regext.c     *conv++ = s[2];
conv               78 ext/mbstring/oniguruma/regext.c     *conv++ = s[1];
conv               79 ext/mbstring/oniguruma/regext.c     *conv++ = s[0];
conv               85 ext/mbstring/oniguruma/regext.c conv_swap2bytes(const UChar* s, const UChar* end, UChar* conv)
conv               88 ext/mbstring/oniguruma/regext.c     *conv++ = s[1];
conv               89 ext/mbstring/oniguruma/regext.c     *conv++ = s[0];
conv               96 ext/mbstring/oniguruma/regext.c               UChar** conv, UChar** conv_end)
conv              102 ext/mbstring/oniguruma/regext.c       *conv = (UChar* )xmalloc(len * 2);
conv              103 ext/mbstring/oniguruma/regext.c       CHECK_NULL_RETURN_MEMERR(*conv);
conv              104 ext/mbstring/oniguruma/regext.c       *conv_end = *conv + (len * 2);
conv              105 ext/mbstring/oniguruma/regext.c       conv_ext0be(s, end, *conv);
conv              110 ext/mbstring/oniguruma/regext.c       *conv = (UChar* )xmalloc(len);
conv              111 ext/mbstring/oniguruma/regext.c       CHECK_NULL_RETURN_MEMERR(*conv);
conv              112 ext/mbstring/oniguruma/regext.c       *conv_end = *conv + len;
conv              113 ext/mbstring/oniguruma/regext.c       conv_swap2bytes(s, end, *conv);
conv              119 ext/mbstring/oniguruma/regext.c       *conv = (UChar* )xmalloc(len * 2);
conv              120 ext/mbstring/oniguruma/regext.c       CHECK_NULL_RETURN_MEMERR(*conv);
conv              121 ext/mbstring/oniguruma/regext.c       *conv_end = *conv + (len * 2);
conv              122 ext/mbstring/oniguruma/regext.c       conv_ext0le(s, end, *conv);
conv              131 ext/mbstring/oniguruma/regext.c       *conv = (UChar* )xmalloc(len * 4);
conv              132 ext/mbstring/oniguruma/regext.c       CHECK_NULL_RETURN_MEMERR(*conv);
conv              133 ext/mbstring/oniguruma/regext.c       *conv_end = *conv + (len * 4);
conv              134 ext/mbstring/oniguruma/regext.c       conv_ext0be32(s, end, *conv);
conv              139 ext/mbstring/oniguruma/regext.c       *conv = (UChar* )xmalloc(len);
conv              140 ext/mbstring/oniguruma/regext.c       CHECK_NULL_RETURN_MEMERR(*conv);
conv              141 ext/mbstring/oniguruma/regext.c       *conv_end = *conv + len;
conv              142 ext/mbstring/oniguruma/regext.c       conv_swap4bytes(s, end, *conv);
conv              148 ext/mbstring/oniguruma/regext.c       *conv = (UChar* )xmalloc(len * 4);
conv              149 ext/mbstring/oniguruma/regext.c       CHECK_NULL_RETURN_MEMERR(*conv);
conv              150 ext/mbstring/oniguruma/regext.c       *conv_end = *conv + (len * 4);
conv              151 ext/mbstring/oniguruma/regext.c       conv_ext0le32(s, end, *conv);
conv               40 ext/standard/fsock.c 	time_t conv;
conv               42 ext/standard/fsock.c 	long conv;
conv               71 ext/standard/fsock.c 	conv = (time_t) (timeout * 1000000.0);
conv               72 ext/standard/fsock.c 	tv.tv_sec = conv / 1000000;
conv               74 ext/standard/fsock.c 	conv = (long) (timeout * 1000000.0);
conv               75 ext/standard/fsock.c 	tv.tv_sec = conv / 1000000;
conv               77 ext/standard/fsock.c 	tv.tv_usec = conv % 1000000;
conv               93 ext/standard/streamsfuncs.c 	php_timeout_ull conv;
conv              115 ext/standard/streamsfuncs.c 	conv = (php_timeout_ull) (timeout * 1000000.0);
conv              117 ext/standard/streamsfuncs.c 	tv.tv_sec = (long)(conv / 1000000);
conv              118 ext/standard/streamsfuncs.c 	tv.tv_usec =(long)(conv % 1000000);
conv              120 ext/standard/streamsfuncs.c 	tv.tv_sec = conv / 1000000;
conv              121 ext/standard/streamsfuncs.c 	tv.tv_usec = conv % 1000000;
conv              244 ext/standard/streamsfuncs.c 	php_timeout_ull conv;
conv              266 ext/standard/streamsfuncs.c 	conv = (php_timeout_ull) (timeout * 1000000.0);
conv              268 ext/standard/streamsfuncs.c 	tv.tv_sec = (long)(conv / 1000000);
conv              269 ext/standard/streamsfuncs.c 	tv.tv_usec = (long)(conv % 1000000);
conv              271 ext/standard/streamsfuncs.c 	tv.tv_sec = conv / 1000000;
conv              272 ext/standard/streamsfuncs.c 	tv.tv_usec = conv % 1000000;
conv              497 ext/tidy/tidy.c 	zval conv;
conv              499 ext/tidy/tidy.c 	ZVAL_COPY_VALUE(&conv, value);
conv              513 ext/tidy/tidy.c 			if (Z_TYPE(conv) != IS_STRING) {
conv              514 ext/tidy/tidy.c 				zval_copy_ctor(&conv);
conv              515 ext/tidy/tidy.c 				convert_to_string(&conv);
conv              517 ext/tidy/tidy.c 			if (tidyOptSetValue(doc, tidyOptGetId(opt), Z_STRVAL(conv))) {
conv              518 ext/tidy/tidy.c 				if (Z_TYPE(conv) != Z_TYPE_P(value)) {
conv              519 ext/tidy/tidy.c 					zval_dtor(&conv);
conv              523 ext/tidy/tidy.c 			if (Z_TYPE(conv) != Z_TYPE_P(value)) {
conv              524 ext/tidy/tidy.c 				zval_dtor(&conv);
conv              529 ext/tidy/tidy.c 			if (Z_TYPE(conv) != IS_LONG) {
conv              530 ext/tidy/tidy.c 				zval_copy_ctor(&conv);
conv              531 ext/tidy/tidy.c 				convert_to_long(&conv);
conv              533 ext/tidy/tidy.c 			if (tidyOptSetInt(doc, tidyOptGetId(opt), Z_LVAL(conv))) {
conv              539 ext/tidy/tidy.c 			if (Z_TYPE(conv) != IS_LONG) {
conv              540 ext/tidy/tidy.c 				zval_copy_ctor(&conv);
conv              541 ext/tidy/tidy.c 				convert_to_long(&conv);
conv              543 ext/tidy/tidy.c 			if (tidyOptSetBool(doc, tidyOptGetId(opt), Z_LVAL(conv))) {