Lines Matching defs:tmps
2804 U8 *tmps;
2809 tmps = (U8*)SvPV_nomg(TARG, len);
2812 if (len && ! utf8_to_bytes(tmps, &len)) {
2823 for ( ; anum && PTR2nat(tmps) % sizeof(long); anum--, tmps++)
2824 *tmps = ~*tmps;
2825 tmpl = (long*)tmps;
2828 tmps = (U8*)tmpl;
2831 for ( ; anum > 0; anum--, tmps++)
2832 *tmps = ~*tmps;
3418 const char *tmps;
3425 tmps = (SvPV_const(sv, len));
3433 tmps = SvPV_const(tsv, len);
3438 while (*tmps && len && isSPACE(*tmps))
3439 tmps++, len--;
3440 if (*tmps == '0')
3441 tmps++, len--;
3442 if (isALPHA_FOLD_EQ(*tmps, 'x')) {
3443 tmps++, len--;
3446 result_uv = grok_hex (tmps, &len, &flags, &result_nv);
3448 else if (isALPHA_FOLD_EQ(*tmps, 'b')) {
3449 tmps++, len--;
3451 result_uv = grok_bin (tmps, &len, &flags, &result_nv);
3454 if (isALPHA_FOLD_EQ(*tmps, 'o')) {
3455 tmps++, len--;
3457 result_uv = grok_oct (tmps, &len, &flags, &result_nv);
3623 const char *tmps;
3673 tmps = SvPV_force_nomg(sv, curlen);
3676 /* Upgrade the dest, and recalculate tmps in case the buffer
3679 tmps = SvPV_nomg(sv, curlen);
3685 else tmps = SvPV_const(sv, curlen);
3687 utf8_curlen = sv_or_pv_len_utf8(sv, tmps, curlen);
3705 ? sv_or_pv_pos_u2b(sv, tmps, pos, &byte_len) : pos;
3707 tmps += byte_pos;
3712 sv_setpvn(TARG, tmps, byte_len);
3974 char *tmps;
4009 tmps = (char*)uvchr_to_utf8_flags((U8*)SvPVX(TARG), value, 0);
4010 SvCUR_set(TARG, tmps - SvPVX_const(TARG));
4011 *tmps = '\0';
4019 tmps = SvPVX(TARG);
4020 *tmps++ = (char)value;
4021 *tmps = '\0';
4038 const char *tmps = SvPV_const(left, len);
4044 SV* const tsv = newSVpvn_flags(tmps, len, SVf_UTF8|SVs_TEMP);
4047 tmps = SvPV_const(tsv, len);
4066 sv_setpv(TARG, PerlProc_crypt(tmps, SvPV_nolen_const(right)));