Home | History | Annotate | Download | only in Modules

Lines Matching refs:wideValue

1106         Tcl_WideInt wideValue;
1116 (unsigned char *)(void *)&wideValue,
1117 sizeof(wideValue),
1124 return Tcl_NewWideIntObj(wideValue);
1237 Tcl_WideInt wideValue;
1238 if (Tcl_GetWideIntFromObj(Tkapp_Interp(tkapp), value, &wideValue) == TCL_OK) {
1240 if (sizeof(wideValue) <= SIZEOF_LONG_LONG)
1241 return PyLong_FromLongLong(wideValue);
1243 return _PyLong_FromByteArray((unsigned char *)(void *)&wideValue,
1244 sizeof(wideValue),