Lines Matching defs:wideValue
948 Tcl_WideInt wideValue;
958 (unsigned char *)(void *)&wideValue,
959 sizeof(wideValue),
962 return Tcl_NewWideIntObj(wideValue);
1076 Tcl_WideInt wideValue;
1077 if (Tcl_GetWideIntFromObj(Tkapp_Interp(tkapp), value, &wideValue) == TCL_OK) {
1078 if (sizeof(wideValue) <= SIZEOF_LONG_LONG)
1079 return PyLong_FromLongLong(wideValue);
1080 return _PyLong_FromByteArray((unsigned char *)(void *)&wideValue,
1081 sizeof(wideValue),