Home
last modified time | relevance | path

Searched refs:int_value (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/clang/test/PCH/
H A Dtypes.c9 INT int_value; variable
14 ASInt *as_int_ptr1 = &int_value; // expected-error{{changes address space of pointer}}
26 int_ptr int_value_ptr = &int_value;
68 typeof_17 *t17 = &int_value;
H A Dcxx_exprs.h21 int int_value; variable
22 typedef __typeof__(double(int_value)) functional_cast_result;
/llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Python/
H A DPythonDataObjectsTests.cpp379 PythonInteger int_value(1); in TEST_F() local
383 tuple.SetItemAtIndex(0, int_value); in TEST_F()
387 EXPECT_EQ(tuple.GetItemAtIndex(0).get(), int_value.get()); in TEST_F()
393 PythonInteger int_value(1); in TEST_F() local
396 PythonTuple tuple{int_value, string_value, none_value}; in TEST_F()
399 EXPECT_EQ(tuple.GetItemAtIndex(0).get(), int_value.get()); in TEST_F()
405 PythonInteger int_value(1); in TEST_F() local
409 PythonTuple tuple{int_value.get(), string_value.get(), none_value.get()}; in TEST_F()
412 EXPECT_EQ(tuple.GetItemAtIndex(0).get(), int_value.get()); in TEST_F()
418 PythonInteger int_value(1); in TEST_F() local
[all …]
/llvm-project-15.0.7/clang/test/CodeCompletion/
H A Dincomplete-ret-type.cpp2 int int_value; variable
/llvm-project-15.0.7/lldb/test/API/functionalities/exec/
H A DTestExec.py86 int_value = value.GetValueAsSigned()
87 self.assertEqual(int_value, 3, "Expression got the right result.")
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DStructuredData.h199 if (auto int_value = value_sp->GetAsInteger()) { in GetItemAtIndexAsInteger() local
200 result = static_cast<IntType>(int_value->GetValue()); in GetItemAtIndexAsInteger()
416 if (auto int_value = value_sp->GetAsInteger()) { in GetValueForKeyAsInteger() local
417 result = static_cast<IntType>(int_value->GetValue()); in GetValueForKeyAsInteger()
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DRNBRemote.cpp4376 uint32_t int_value = 0; in HandlePacket_GetProfileData() local
4377 if (iss >> std::hex >> int_value) { in HandlePacket_GetProfileData()
4378 scan_type = (DNBProfileDataScanType)int_value; in HandlePacket_GetProfileData()
4410 uint32_t int_value = 0; in HandlePacket_SetEnableAsyncProfiling() local
4411 if (iss >> std::hex >> int_value) { in HandlePacket_SetEnableAsyncProfiling()
4412 scan_type = (DNBProfileDataScanType)int_value; in HandlePacket_SetEnableAsyncProfiling()
/llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/taco/tools/
H A Dmlir_pytaco.py807 int_value = lang.TypeFn.cast_unsigned(lang.TV.I64, index)
808 return lang.TypeFn.cast_unsigned(lang.T, int_value)