Searched refs:origValue (Results 1 – 9 of 9) sorted by relevance
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | AtomicCounter.cs | 40 long origValue = counter; in IncrementIfNonzero() 43 if (origValue == 0) in IncrementIfNonzero() 48 long result = Interlocked.CompareExchange(ref counter, origValue + 1, origValue); in IncrementIfNonzero() 49 if (result == origValue) in IncrementIfNonzero() 54 origValue = result; in IncrementIfNonzero()
|
/external/llvm-project/clang/test/Analysis/ |
D | properties.mm | 46 int origValue = w.inner.value; 47 if (origValue != 42) 74 int origValue = w.inner.value; 75 if (origValue != 42)
|
D | properties.m | 587 int origValue = w.value; 588 if (origValue != 42) 612 int origValue = w.value; 613 if (origValue != 42) 642 int origValue = w.inner.value; 643 if (origValue != 42)
|
/external/clang/test/Analysis/ |
D | properties.mm | 46 int origValue = w.inner.value; 47 if (origValue != 42) 74 int origValue = w.inner.value; 75 if (origValue != 42)
|
D | properties.m | 559 int origValue = w.value; 560 if (origValue != 42) 584 int origValue = w.value; 585 if (origValue != 42) 614 int origValue = w.inner.value; 615 if (origValue != 42)
|
/external/swiftshader/src/Reactor/ |
D | EmulatedIntrinsics.cpp | 111 T origValue = *ptr; in atomicMin() local 112 *ptr = std::min(origValue, value); in atomicMin() 113 return origValue; in atomicMin() 121 T origValue = *ptr; in atomicMax() local 122 *ptr = std::max(origValue, value); in atomicMax() 123 return origValue; in atomicMax()
|
/external/angle/third_party/vulkan_memory_allocator/src/VmaReplay/ |
D | VmaReplay.cpp | 1385 uint32_t origValue; in CompareOption() local 1386 if(StrRangeToUint(StrRange(m_OptionValue[(size_t)option]), origValue)) in CompareOption() 1388 if(origValue != currValue) in CompareOption() 1391 printf(" %s: original %u, current %u\n", name, origValue, currValue); in CompareOption() 1403 uint64_t origValue; in CompareOption() local 1404 if(StrRangeToUint(StrRange(m_OptionValue[(size_t)option]), origValue)) in CompareOption() 1406 if(origValue != currValue) in CompareOption() 1409 printf(" %s: original %llu, current %llu\n", name, origValue, currValue); in CompareOption() 1421 bool origValue; in CompareOption() local 1422 if(StrRangeToBool(StrRange(m_OptionValue[(size_t)option]), origValue)) in CompareOption() [all …]
|
/external/gptfdisk/ |
D | basicmbr.cc | 1130 int allOK = 1, origValue; in SetInclusionwChecks() local 1134 origValue = partitions[num].GetInclusion(); in SetInclusionwChecks() 1137 partitions[num].SetInclusion(origValue); in SetInclusionwChecks()
|
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/ |
D | NanoTest.java | 4134 TestMap.MessageValue origValue = new TestMap.MessageValue(); in testMapMergeOverrideMessageValues() local 4135 origValue.value = 1; in testMapMergeOverrideMessageValues() 4136 origValue.value2 = 2; in testMapMergeOverrideMessageValues() 4143 origMessage.int32ToMessageField.put(1, origValue); in testMapMergeOverrideMessageValues()
|