Searched refs:wideValue (Results 1 – 3 of 3) sorted by relevance
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | CheckDates.java | 339 String wideValue = getCldrFileToCheck().getWinningValueWithBailey(pathToWide); in handleCheck() local 340 if (wideValue != null && isTooMuchWiderThan(value, wideValue)) { in handleCheck() 346 wideValue); in handleCheck() 360 String wideValueStripped = stripPrefix(wideValue); in handleCheck() 407 String wideValue = getCldrFileToCheck().getWinningValueWithBailey(pathToWide); in handleCheck() local 408 if (wideValue != null && isTooMuchWiderThan(value, wideValue)) { in handleCheck() 414 wideValue); in handleCheck()
|
/external/python/cpython3/Modules/ |
D | _tkinter.c | 1028 Tcl_WideInt wideValue; in AsObj() local 1038 (unsigned char *)(void *)&wideValue, in AsObj() 1039 sizeof(wideValue), in AsObj() 1042 return Tcl_NewWideIntObj(wideValue); in AsObj() 1158 Tcl_WideInt wideValue; in fromWideIntObj() local 1159 if (Tcl_GetWideIntFromObj(Tkapp_Interp(tkapp), value, &wideValue) == TCL_OK) { in fromWideIntObj() 1160 if (sizeof(wideValue) <= SIZEOF_LONG_LONG) in fromWideIntObj() 1161 return PyLong_FromLongLong(wideValue); in fromWideIntObj() 1162 return _PyLong_FromByteArray((unsigned char *)(void *)&wideValue, in fromWideIntObj() 1163 sizeof(wideValue), in fromWideIntObj()
|
/external/python/cpython2/Modules/ |
D | _tkinter.c | 1106 Tcl_WideInt wideValue; in AsObj() local 1116 (unsigned char *)(void *)&wideValue, in AsObj() 1117 sizeof(wideValue), in AsObj() 1124 return Tcl_NewWideIntObj(wideValue); in AsObj() 1237 Tcl_WideInt wideValue; in fromWideIntObj() local 1238 if (Tcl_GetWideIntFromObj(Tkapp_Interp(tkapp), value, &wideValue) == TCL_OK) { in fromWideIntObj() 1240 if (sizeof(wideValue) <= SIZEOF_LONG_LONG) in fromWideIntObj() 1241 return PyLong_FromLongLong(wideValue); in fromWideIntObj() 1243 return _PyLong_FromByteArray((unsigned char *)(void *)&wideValue, in fromWideIntObj() 1244 sizeof(wideValue), in fromWideIntObj()
|