Searched refs:svalue (Results 1 - 8 of 8) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
H A D | Configurator.cpp | 218 char svalue[256]; in getInteger() local 220 sprintf(svalue, "%d", defaultValue); in getInteger() 222 return atoi(getValue(keyName, valueName, svalue).c_str()); in getInteger() 232 char svalue[256]; in getFloat() local 234 sprintf(svalue, "%f", defaultValue); in getFloat() 236 return atof(getValue(keyName, valueName, svalue).c_str()); in getFloat()
|
/third_party/skia/third_party/externals/swiftshader/src/System/ |
H A D | Configurator.cpp | 219 char svalue[256]; in getInteger() local 221 sprintf(svalue, "%d", defaultValue); in getInteger() 223 return atoi(getValue(keyName, valueName, svalue).c_str()); in getInteger() 233 char svalue[256]; in getFloat() local 235 sprintf(svalue, "%f", defaultValue); in getFloat() 237 return atof(getValue(keyName, valueName, svalue).c_str()); in getFloat()
|
/third_party/astc-encoder/Test/ |
H A D | astc_image_info.py | 133 svalue = value.split("x") 135 if len(svalue) != 2: 139 ivalue = [int(x) for x in svalue if int(x) >= 0] 143 if len(ivalue) != len(svalue):
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
H A D | TypedIntegerTests.cpp | 28 Signed svalue(2); in TEST_F() 29 EXPECT_EQ(static_cast<int32_t>(svalue), 2); in TEST_F()
|
/third_party/python/Lib/idlelib/ |
H A D | debugger.py | 519 svalue = self.repr.repr(value) # repr(value) 523 svalue = svalue[1:-1] 527 l.insert(0, svalue)
|
/third_party/python/Lib/tkinter/ |
H A D | __init__.py | 1800 svalue = str(value) 1801 if not svalue: 1803 elif '.' in svalue: 1804 return self.tk.getdouble(svalue) 1806 return self.tk.getint(svalue)
|
/third_party/node/deps/v8/src/execution/arm/ |
H A D | simulator-arm.cc | 262 float svalue; in ExecDebugCommand() local 286 } else if (GetVFPSingleValue(arg1, &svalue)) { in ExecDebugCommand() 287 uint32_t as_word = bit_cast<uint32_t>(svalue); in ExecDebugCommand() 288 PrintF("%s: %f 0x%08x\n", arg1, svalue, as_word); in ExecDebugCommand()
|
/third_party/python/Modules/ |
H A D | _testcapimodule.c | 7833 PyObject *svalue = PyUnicode_FromString("value"); in heapctypesetattr_setattro() local 7834 if (svalue == NULL) in heapctypesetattr_setattro() 7836 int eq = PyObject_RichCompareBool(svalue, attr, Py_EQ); in heapctypesetattr_setattro() 7837 Py_DECREF(svalue); in heapctypesetattr_setattro()
|
Completed in 29 milliseconds