Searched defs:conv (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_3/ext/mbstring/libmbfl/filters/ |
| H A D | mk_sb_tbl.awk | 9 function conv(str) { function 40 tbl[conv($1)] = conv($2)
|
| /PHP_5_3/ext/mbstring/oniguruma/ |
| H A D | regext.c | 33 conv_ext0be32(const UChar* s, const UChar* end, UChar* conv) argument 36 *conv++ = '\0'; 37 *conv++ = '\0'; 38 *conv++ = '\0'; 39 *conv++ = *s++; 44 conv_ext0le32(const UChar* s, const UChar* end, UChar* conv) argument 47 *conv++ = *s++; 48 *conv++ = '\0'; 49 *conv++ = '\0'; 50 *conv 55 conv_ext0be(const UChar* s, const UChar* end, UChar* conv) argument 64 conv_ext0le(const UChar* s, const UChar* end, UChar* conv) argument 73 conv_swap4bytes(const UChar* s, const UChar* end, UChar* conv) argument 85 conv_swap2bytes(const UChar* s, const UChar* end, UChar* conv) argument 95 conv_encoding(OnigEncoding from, OnigEncoding to, const UChar* s, const UChar* end, UChar** conv, UChar** conv_end) argument [all...] |
| /PHP_5_3/ext/curl/ |
| H A D | multi.c | 160 unsigned long conv; local 162 conv = (unsigned long) (timeout * 1000000.0); 163 to->tv_sec = conv / 1000000; 164 to->tv_usec = conv % 1000000;
|
| /PHP_5_3/ext/standard/ |
| H A D | fsock.c | 39 unsigned long conv; local 66 conv = (unsigned long) (timeout * 1000000.0); 67 tv.tv_sec = conv / 1000000; 68 tv.tv_usec = conv % 1000000;
|
| H A D | streamsfuncs.c | 92 php_timeout_ull conv; local 114 conv = (php_timeout_ull) (timeout * 1000000.0); 116 tv.tv_sec = (long)(conv / 1000000); 117 tv.tv_usec =(long)(conv % 1000000); 119 tv.tv_sec = conv / 1000000; 120 tv.tv_usec = conv % 1000000; 246 php_timeout_ull conv; local 260 conv = (php_timeout_ull) (timeout * 1000000.0); 262 tv.tv_sec = (long)(conv / 1000000); 263 tv.tv_usec = (long)(conv [all...] |
| /PHP_5_3/ext/tidy/ |
| H A D | tidy.c | 500 zval conv = *value; local 514 if (Z_TYPE(conv) != IS_STRING) { 515 zval_copy_ctor(&conv); 516 convert_to_string(&conv); 518 if (tidyOptSetValue(doc, tidyOptGetId(opt), Z_STRVAL(conv))) { 519 if (Z_TYPE(conv) != Z_TYPE_P(value)) { 520 zval_dtor(&conv); 524 if (Z_TYPE(conv) != Z_TYPE_P(value)) { 525 zval_dtor(&conv); 530 if (Z_TYPE(conv) ! [all...] |
| /PHP_5_3/ext/phar/ |
| H A D | phar_internal.h | 552 UConverter *conv = ZEND_U_CONVERTER(UG(runtime_encoding_conv)); local 555 if (zend_string_to_unicode(conv, &c_var->u, &c_var_len, arKey, nKeyLength TSRMLS_CC) == FAILURE) {
|
Completed in 45 milliseconds