Home
last modified time | relevance | path

Searched refs:_value (Results 1 – 20 of 20) sorted by relevance

/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Doptimize-ivar-offset-load.m9 int _value; field
25 foo (sample->_value);
29 // CHECK: [[IVAR:%.*]] = load i64, i64* @"OBJC_IVAR_$_SampleClass._value", align 8
43 foo (sample->_value);
48 // CHECK: [[IVAR:%.*]] = load i64, i64* @"OBJC_IVAR_$_SampleClass._value", align 8, !invariant.load
58 foo (sample->_value);
63 // CHECK: [[IVAR:%.*]] = load i64, i64* @"OBJC_IVAR_$_SampleClass._value", align 8, !invariant.load
H A Dclass-getter-dotsyntax.m9 static int _value;
19 + (void)setCrash: (int)value{ _value = value; }
/llvm-project-15.0.7/clang/test/SemaObjCXX/
H A Dpointer-to-objc-pointer-conv.mm31 operator id() const { return (id)_value; }
32 operator Class() const { return (Class)_value; }
33 operator I1*() const { return (I1*)_value; }
44 long _value;
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dmethod-conflict-2.m89 @synthesize value=_value;
92 return _value;
96 _value = value;
106 @synthesize value=_value;
109 return _value;
113 _value = value;
/llvm-project-15.0.7/lldb/test/API/lang/objc/objc-checker/
H A Dmain.m12 int _value; field
22 return _value;
27 _value = newValue;
/llvm-project-15.0.7/clang/test/CodeGenCoroutines/
H A Dcoro-symmetric-transfer-03.cpp23 _value = x; in return_value()
26 int _value; member
44 int ret = handle.promise()._value; in await_resume()
H A Dcoro-elide.cpp25 _value = x; in return_value()
28 int _value; member
/llvm-project-15.0.7/clang/test/Analysis/
H A Dcfref_PR2519.c36 CFNumberRef _value = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &pid); in main() local
37 …tionaryCreate(kCFAllocatorDefault, (const void **)&_key, (const void **)&_value, 1, &kCFTypeDictio… in main()
38 CFRelease(_value); // no-warning in main()
H A DNSString.m427 NSString *_value; field
429 - (NSString *)_value; method
435 - (NSString *)_value { method
436 if (!_value) {
438 if (!OSAtomicCompareAndSwapPtr(0, s, (void**)&_value)) {
442 return _value;
446 [self _value];
/llvm-project-15.0.7/mlir/docs/
H A DQuantization.md35 $$ real\\_value = scaled\\_value * scale $$
61 $$ real\\_value = scaled\\_value * scale = (affine\\_value - zero\\_point) * scale $$
91 $$ real\\_value = scaled\\_value * scale = (affine\\_value - zero\\_point) * scale $$
123 In the above, we assume that $real\\_value$ is a Single, $scale$ is a Single,
154 scaled\\_value = affine\\_value_{non\mbox{-}negative} - zero\\_point_{non\mbox{-}negative}
165 affine\\_value_{non\mbox{-}negative} = scaled\\_value + zero\\_point_{non\mbox{-}negative}
/llvm-project-15.0.7/lldb/test/API/lang/objc/objc-dynamic-value/
H A Ddynamic-value.m9 uint32_t _value; field
19 _value = 10;
24 return _value;
/llvm-project-15.0.7/lldb/test/API/macosx/dyld-trie-symbols/
H A Dmain.mm9 uint32_t _value; field
19 _value = 10;
24 return _value;
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A D2010-07-23-DeclLoc.cpp49 T _value; member in TRangeValue
51 …ocation, typename SIZE::size_t length, T value) : TRange<SIZE>(location, length), _value(value) {}; in TRangeValue()
/llvm-project-15.0.7/llvm/test/CodeGen/AVR/
H A Dumul.with.overflow.i16-bug.ll14 …%adjustedAngle._value = getelementptr inbounds %Vs6UInt16, %Vs6UInt16* %adjustedAngle, i32 0, i32 0
15 store i16 %0, i16* %adjustedAngle._value, align 2
/llvm-project-15.0.7/openmp/runtime/src/
H A Dkmp_stats_timing.h31 explicit tsc_interval_t(int64_t _value) : value(_value) {} in tsc_interval_t() argument
/llvm-project-15.0.7/pstl/test/support/
H A Dutils.h240 std::int32_t _value; // object value used for algorithms member
244 explicit MemoryChecker(std::int32_t value = 0) : _value(value) { in _value() function
252 MemoryChecker(MemoryChecker&& other) : _value(other.value()) { in MemoryChecker()
260 MemoryChecker(const MemoryChecker& other) : _value(other.value()) { in MemoryChecker()
273 _value = other.value();
282 _value = other.value();
295 std::int32_t value() const { return _value; } in value()
/llvm-project-15.0.7/lldb/unittests/Platform/tools/
H A Dgenerate_siginfo.c87 P(_info._reason._rt._value); in main()
/llvm-project-15.0.7/clang/test/FixIt/
H A Dformat-darwin.m69 NSInteger _value; field
89 …printf("%s", obj->_value); // expected-warning{{values of type 'NSInteger' should not be used as …
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dtype-traits.cpp1976 IntWrapper(int _value) : value(_value) {} in IntWrapper()
1985 FloatWrapper(float _value) : value(_value) {} in FloatWrapper()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DBuiltinAttributes.td67 let typeBuilder = "IndexType::get($_value.getContext())";