| /PHP_5_5/ext/bcmath/libbcmath/src/ |
| H A D | recmul.c | 182 _bc_rec_mul (bc_num u, int ulen, bc_num v, int vlen, bc_num *prod, argument 192 if ((ulen+vlen) < mul_base_digits 193 || ulen < MUL_SMALL_DIGITS 195 _bc_simp_mul (u, ulen, v, vlen, prod, full_scale); 200 n = (MAX(ulen, vlen)+1) / 2; 203 if (ulen < n) { 205 u0 = new_sub_num (ulen,0, u->n_value); 207 u1 = new_sub_num (ulen-n, 0, u->n_value); 208 u0 = new_sub_num (n, 0, u->n_value+ulen-n); 253 prodlen = ulen [all...] |
| /PHP_5_5/ext/phar/tests/cache_list/files/ |
| H A D | phar_test.inc | 17 $ulen = NULL; 26 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what) 37 if (empty($ulen)) $ulen = strlen($cont); 44 $manifest .= pack('VVVVVV', $ulen, $time, $clen, $crc32, $flags|$perm, strlen($meta)) . (binary)$meta;
|
| /PHP_5_5/ext/phar/tests/files/ |
| H A D | phar_test.inc | 17 $ulen = NULL; 26 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what) 37 if (empty($ulen)) $ulen = strlen($cont); 44 $manifest .= pack('VVVVVV', $ulen, $time, $clen, $crc32, $flags|$perm, strlen($meta)) . (binary)$meta;
|
| /PHP_5_5/ext/fileinfo/libmagic/ |
| H A D | encoding.c | 65 * ubuf, and the number of characters converted in ulen. 68 file_encoding(struct magic_set *ms, const unsigned char *buf, size_t nbytes, unichar **ubuf, size_t *ulen, const char **code, const char **code_mime, const char **type) argument 86 if (looks_ascii(buf, nbytes, *ubuf, ulen)) { 87 DPRINTF(("ascii %" SIZE_T_FORMAT "u\n", *ulen)); 90 } else if (looks_utf8_with_BOM(buf, nbytes, *ubuf, ulen) > 0) { 91 DPRINTF(("utf8/bom %" SIZE_T_FORMAT "u\n", *ulen)); 94 } else if (file_looks_utf8(buf, nbytes, *ubuf, ulen) > 1) { 95 DPRINTF(("utf8 %" SIZE_T_FORMAT "u\n", *ulen)); 99 } else if ((ucs_type = looks_ucs16(buf, nbytes, *ubuf, ulen)) != 0) { 107 DPRINTF(("ucs16 %" SIZE_T_FORMAT "u\n", *ulen)); 221 looks_ascii(const unsigned char *buf, size_t nbytes, unichar *ubuf, size_t *ulen) argument 241 looks_latin1(const unsigned char *buf, size_t nbytes, unichar *ubuf, size_t *ulen) argument 260 looks_extended(const unsigned char *buf, size_t nbytes, unichar *ubuf, size_t *ulen) argument 291 file_looks_utf8(const unsigned char *buf, size_t nbytes, unichar *ubuf, size_t *ulen) argument 362 looks_utf8_with_BOM(const unsigned char *buf, size_t nbytes, unichar *ubuf, size_t *ulen) argument 372 looks_ucs16(const unsigned char *buf, size_t nbytes, unichar *ubuf, size_t *ulen) argument [all...] |
| H A D | ascmagic.c | 75 size_t ulen; local 88 if (file_encoding(ms, buf, nbytes, &ubuf, &ulen, &code, &code_mime, 92 rv = file_ascmagic_with_encoding(ms, buf, nbytes, ubuf, ulen, code, 102 size_t nbytes, unichar *ubuf, size_t ulen, const char *code, 137 if (ulen > 0 && (ms->flags & MAGIC_NO_CHECK_SOFT) == 0) { 141 mlen = ulen * 6; 146 if ((utf8_end = encode_utf8(utf8_buf, mlen, ubuf, ulen)) 155 for (i = 0; i < ulen; i++) { 311 encode_utf8(unsigned char *buf, size_t len, unichar *ubuf, size_t ulen) argument 316 for (i = 0; i < ulen; 101 file_ascmagic_with_encoding(struct magic_set *ms, const unsigned char *buf, size_t nbytes, unichar *ubuf, size_t ulen, const char *code, const char *type, int text) argument [all...] |
| H A D | funcs.c | 168 size_t ulen; local 190 looks_text = file_encoding(ms, ubuf, nb, &u8buf, &ulen, 276 nb, u8buf, ulen, code, type, looks_text))
|
| /PHP_5_5/ext/intl/ |
| H A D | intl_data.h | 76 #define INTL_METHOD_RETVAL_UTF8(obj, ustring, ulen, free_it) \ 80 intl_convert_utf16_to_utf8(&u8value, &u8len, ustring, ulen, &INTL_DATA_ERROR_CODE((obj))); \
|
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | testu.c | 23 #define ulen(p) onigenc_str_bytelen_null(ENC, (UChar* )p) macro 68 uconv(pattern, cpat, ulen(pattern)); 69 uconv(str, cstr, ulen(str)); 121 uconv(pattern, cpat, ulen(pattern)); 122 uconv(str, cstr, ulen(str)); 125 r = onig_new(®, (UChar* )pattern, (UChar* )(pattern + ulen(pattern)), 136 (UChar* )(pattern + ulen(pattern)), 148 r = onig_search(reg, (UChar* )str, (UChar* )(str + ulen(str)), 149 (UChar* )str, (UChar* )(str + ulen(str)),
|
| /PHP_5_5/ext/interbase/ |
| H A D | ibase_service.c | 213 int hlen, ulen, plen, spb_len; local 221 &host, &hlen, &user, &ulen, &pass, &plen)) { 228 isc_spb_version, isc_spb_current_version, isc_spb_user_name, (char)ulen,
|
| /PHP_5_5/ext/json/ |
| H A D | json.c | 401 int pos = 0, ulen = 0; local 436 ulen = json_utf8_to_utf16(utf16, s, len); 437 if (ulen <= 0) { 441 if (ulen < 0) { 450 len = ulen;
|
| /PHP_5_5/ext/pdo_odbc/ |
| H A D | odbc_stmt.c | 187 unsigned long ulen; local 193 &ulen)) { 199 SQLPutData(S->stmt, S->convbuf, ulen); 442 unsigned long ulen; local 446 &ulen)) { 453 P->len = ulen; 467 unsigned long ulen; local 478 switch (pdo_odbc_ucs22utf8(stmt, P->is_unicode, P->outbuf, P->len, &ulen)) { 487 srclen = ulen; 613 unsigned long ulen; local [all...] |