Lines Matching defs:uv
1890 UV uv;
1942 if (!grok_atoUV(n, &uv, &e))
1944 line_num = ((line_t)uv) - 1;
3190 UV uv = UV_MAX; /* Initialize to weird value to try to catch any uses
3789 uv = grok_oct(s, &len, &flags, NULL);
3808 &uv, &error,
3815 uv = 0; /* drop through to ensure range ends are set */
3826 &uv, &error,
3833 uv = 0; /* drop through to ensure range ends are set */
3840 /* Here uv is the ordinal of the next character being added */
3841 if (UVCHR_IS_INVARIANT(uv)) {
3842 *d++ = (char) uv;
3845 if (!d_is_utf8 && uv > 255) {
3847 /* Here, 'uv' won't fit unless we convert to UTF-8.
3867 UVCHR_SKIP(uv)
3877 *d++ = (char)uv;
3889 + UVCHR_SKIP(uv)
3897 d = (char*) uvchr_to_utf8_flags((U8*)d, uv,
4011 uv = grok_hex(s, &len, &flags, NULL);
4015 if ( uv > MAX_LEGAL_CP
4019 uv = 0; /* drop through to ensure range ends are
4030 if (! d_is_utf8 && ( uv > 0xFF
4034 const STRLEN extra = OFFUNISKIP(uv) + (send - rbrace) + 1;
4057 if (OFFUNI_IS_INVARIANT(uv)) {
4058 *d++ = (char) LATIN1_TO_NATIVE(uv);
4061 *d++ = (char) LATIN1_TO_NATIVE(uv);
4065 d = (char*) uvoffuni_to_utf8_flags((U8*)d, uv,
4148 U32 uv = utf8n_to_uvchr((U8 *) str,
4157 (unsigned int) NATIVE_TO_UNI(uv));
4172 U32 uv = utf8n_to_uvchr((U8 *) str,
4180 (unsigned int) NATIVE_TO_UNI(uv));
12622 UV uv;
12623 const int flags = grok_number (PL_tokenbuf, d - PL_tokenbuf, &uv);
12626 if (uv <= IV_MAX)
12627 sv = newSViv(uv); /* Prefer IVs over UVs. */
12629 sv = newSVuv(uv);
12631 if (uv <= (UV) IV_MIN)
12632 sv = newSViv(-(IV)uv);