• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/tcl-105/tcl84/tcl/generic/

Lines Matching refs:w2

3085 	    Tcl_WideInt w2;
3091 TclGetWide(w2,value2Ptr);
3094 w2 = Tcl_LongAsWide(value2Ptr->internalRep.longValue);
3097 TclGetWide(w2,value2Ptr);
3101 iResult = w == w2;
3104 iResult = w != w2;
3107 iResult = w < w2;
3110 iResult = w > w2;
3113 iResult = w <= w2;
3116 iResult = w >= w2;
3185 Tcl_WideInt w2, wResult = W0;
3210 TclGetWide(w2,value2Ptr);
3212 REQUIRE_WIDE_OR_INT(result, value2Ptr, i2, w2);
3233 if (value2Ptr->typePtr == &tclWideIntType && w2 == W0) {
3235 TRACE(("%ld "LLD" => DIVIDE BY ZERO\n", i, w2));
3237 TRACE((LLD" "LLD" => DIVIDE BY ZERO\n", w, w2));
3259 w2 = Tcl_LongAsWide(i2);
3261 if (w2 < 0) {
3262 w2 = -w2;
3266 wRemainder = w % w2;
3268 wRemainder += w2;
3295 FORCE_LONG(value2Ptr, i2, w2);
3298 w2 = Tcl_LongAsWide(i2);
3346 FORCE_LONG(value2Ptr, i2, w2);
3349 w2 = Tcl_LongAsWide(i2);
3412 w2 = Tcl_LongAsWide(i2);
3414 wResult = w | w2;
3429 w2 = Tcl_LongAsWide(i2);
3431 wResult = w ^ w2;
3446 w2 = Tcl_LongAsWide(i2);
3448 wResult = w & w2;
3463 TRACE((LLD" "LLD" => "LLD"\n", w, w2, wResult));
3471 TRACE((LLD" "LLD" => "LLD"\n", w, w2, wResult));
3497 Tcl_WideInt w2, wquot, wrem;
3543 TclGetWide(w2,value2Ptr);
3556 GET_WIDE_OR_INT(result, value2Ptr, i2, w2);
3586 d2 = Tcl_WideAsDouble(w2);
3629 w2 = Tcl_LongAsWide(i2);
3633 wResult = w + w2;
3636 wResult = w - w2;
3639 wResult = w * w2;
3648 if (w2 == W0) {
3649 TRACE((LLD" "LLD" => DIVIDE BY ZERO\n", w, w2));
3652 if (w2 < 0) {
3653 w2 = -w2;
3656 wquot = w / w2;
3657 wrem = w % w2;
3713 TRACE((LLD" "LLD" => "LLD"\n", w, w2, wResult));
3724 TRACE((LLD" "LLD" => "LLD"\n", w, w2, wResult));