Home
last modified time | relevance | path

Searched refs:value2 (Results 1 – 25 of 199) sorted by relevance

12345678

/external/snakeyaml/src/test/java/org/pyyaml/
DPyRecursiveTest.java47 Map<AnInstance, AnInstance> value2 = (Map<AnInstance, AnInstance>) yaml.load(output1); in testDict() local
48 assertEquals(value.size(), value2.size()); in testDict()
49 for (AnInstance tmpInstance : value2.values()) { in testDict()
51 assertSame(tmpInstance.getBar(), value2); in testDict() local
52 assertSame(tmpInstance, value2.get(tmpInstance)); in testDict()
64 Map value2 = (Map) yaml.load(output1); in testDictSafeConstructor() local
65 assertEquals(2, value2.size()); in testDictSafeConstructor()
66 assertEquals("www", value2.get("abc")); in testDictSafeConstructor()
67 assertTrue(value2.get("qwerty") instanceof Map); in testDictSafeConstructor()
68 Map value3 = (Map) value2.get("qwerty"); in testDictSafeConstructor()
[all …]
/external/javassist/src/main/javassist/compiler/ast/
DIntConst.java66 long value2 = right.value; in compute0() local
70 newValue = value1 + value2; in compute0()
73 newValue = value1 - value2; in compute0()
76 newValue = value1 * value2; in compute0()
79 newValue = value1 / value2; in compute0()
82 newValue = value1 % value2; in compute0()
85 newValue = value1 | value2; in compute0()
88 newValue = value1 ^ value2; in compute0()
91 newValue = value1 & value2; in compute0()
94 newValue = value << (int)value2; in compute0()
[all …]
DDoubleConst.java68 private static DoubleConst compute(int op, double value1, double value2, in compute() argument
74 newValue = value1 + value2; in compute()
77 newValue = value1 - value2; in compute()
80 newValue = value1 * value2; in compute()
83 newValue = value1 / value2; in compute()
86 newValue = value1 % value2; in compute()
/external/valgrind/none/tests/s390x/
Dclrj.c28 void compare_never(uint32_t value1, uint32_t value2) in compare_never() argument
31 register uint32_t val2 asm("r8") = value2; in compare_never()
44 void compare_always(uint32_t value1, uint32_t value2) in compare_always() argument
47 register uint32_t val2 asm("r8") = value2; in compare_always()
60 void compare_le(uint32_t value1, uint32_t value2) in compare_le() argument
63 register uint32_t val2 asm("r8") = value2; in compare_le()
76 void compare_ge(uint32_t value1, uint32_t value2) in compare_ge() argument
79 register uint32_t val2 asm("r8") = value2; in compare_ge()
92 void compare_gt(uint32_t value1, uint32_t value2) in compare_gt() argument
95 register uint32_t val2 asm("r8") = value2; in compare_gt()
[all …]
Dclgrj.c28 void compare_never(uint64_t value1, uint64_t value2) in compare_never() argument
31 register uint64_t val2 asm("r8") = value2; in compare_never()
44 void compare_always(uint64_t value1, uint64_t value2) in compare_always() argument
47 register uint64_t val2 asm("r8") = value2; in compare_always()
60 void compare_le(uint64_t value1, uint64_t value2) in compare_le() argument
63 register uint64_t val2 asm("r8") = value2; in compare_le()
76 void compare_ge(uint64_t value1, uint64_t value2) in compare_ge() argument
79 register uint64_t val2 asm("r8") = value2; in compare_ge()
92 void compare_gt(uint64_t value1, uint64_t value2) in compare_gt() argument
95 register uint64_t val2 asm("r8") = value2; in compare_gt()
[all …]
Dcrj.c28 void compare_never(int32_t value1, int32_t value2) in compare_never() argument
31 register int32_t val2 asm("r8") = value2; in compare_never()
44 void compare_always(int32_t value1, int32_t value2) in compare_always() argument
47 register int32_t val2 asm("r8") = value2; in compare_always()
60 void compare_le(int32_t value1, int32_t value2) in compare_le() argument
63 register int32_t val2 asm("r8") = value2; in compare_le()
76 void compare_ge(int32_t value1, int32_t value2) in compare_ge() argument
79 register int32_t val2 asm("r8") = value2; in compare_ge()
92 void compare_gt(int32_t value1, int32_t value2) in compare_gt() argument
95 register int32_t val2 asm("r8") = value2; in compare_gt()
[all …]
Dcgrj.c28 void compare_never(int64_t value1, int64_t value2) in compare_never() argument
31 register int64_t val2 asm("r8") = value2; in compare_never()
44 void compare_always(int64_t value1, int64_t value2) in compare_always() argument
47 register int64_t val2 asm("r8") = value2; in compare_always()
60 void compare_le(int64_t value1, int64_t value2) in compare_le() argument
63 register int64_t val2 asm("r8") = value2; in compare_le()
76 void compare_ge(int64_t value1, int64_t value2) in compare_ge() argument
79 register int64_t val2 asm("r8") = value2; in compare_ge()
92 void compare_gt(int64_t value1, int64_t value2) in compare_gt() argument
95 register int64_t val2 asm("r8") = value2; in compare_gt()
[all …]
/external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
DFrame.java202 Value value1, value2, value3, value4; in execute() local
245 value2 = pop(); in execute()
247 push(interpreter.binaryOperation(insn, value1, value2)); in execute()
276 value2 = pop(); in execute()
278 interpreter.ternaryOperation(insn, value1, value2, value3); in execute()
302 value2 = pop(); in execute()
303 if (value1.getSize() != 1 || value2.getSize() != 1) { in execute()
307 push(interpreter.copyOperation(insn, value2)); in execute()
313 value2 = pop(); in execute()
314 if (value2.getSize() == 1) { in execute()
[all …]
/external/proguard/src/proguard/evaluation/value/
DComparisonValue.java32 private final Value value2; field in ComparisonValue
39 Value value2) in ComparisonValue() argument
42 this.value2 = value2; in ComparisonValue()
53 this.value2.equals(((ComparisonValue)object).value2); in equals()
61 value2.hashCode(); in hashCode()
67 return "("+value1+"~"+ value2 +")"; in toString()
/external/icu/icu4c/source/test/cintltst/
Dtrie2test.c115 uint32_t value, value2; in testTrieGetters() local
134 value2=UTRIE2_GET16_FROM_U16_SINGLE_LEAD(trie, start); in testTrieGetters()
136 value2=UTRIE2_GET32_FROM_U16_SINGLE_LEAD(trie, start); in testTrieGetters()
138 if(value!=value2) { in testTrieGetters()
140 typeName, testName, (long)start, (long)value2, (long)value); in testTrieGetters()
145 value2=UTRIE2_GET16_FROM_SUPP(trie, start); in testTrieGetters()
147 value2=UTRIE2_GET32_FROM_SUPP(trie, start); in testTrieGetters()
149 if(value!=value2) { in testTrieGetters()
151 typeName, testName, (long)start, (long)value2, (long)value); in testTrieGetters()
155 value2=UTRIE2_GET16(trie, start); in testTrieGetters()
[all …]
Dtrietest.c264 uint32_t value, value2; in testTrieRangesWithMalloc() local
380 value2=UTRIE_GET32_FROM_BMP(&trie, start); in testTrieRangesWithMalloc()
382 value2=UTRIE_GET16_FROM_BMP(&trie, start); in testTrieRangesWithMalloc()
384 if(value!=value2) { in testTrieRangesWithMalloc()
386 testName, start, value2, value); in testTrieRangesWithMalloc()
390 value2=UTRIE_GET32_FROM_LEAD(&trie, start); in testTrieRangesWithMalloc()
392 value2=UTRIE_GET16_FROM_LEAD(&trie, start); in testTrieRangesWithMalloc()
394 if(value!=value2) { in testTrieRangesWithMalloc()
396 testName, start, value2, value); in testTrieRangesWithMalloc()
401 UTRIE_GET32(&trie, start, value2); in testTrieRangesWithMalloc()
[all …]
/external/mesa3d/src/amd/addrlib/core/
Daddrcommon.h355 UINT_32 value2) in Min() argument
357 return ((value1 < (value2)) ? (value1) : value2); in Min()
370 INT_32 value2) in Min() argument
372 return ((value1 < (value2)) ? (value1) : value2); in Min()
385 UINT_32 value2) in Max() argument
387 return ((value1 > (value2)) ? (value1) : value2); in Max()
400 INT_32 value2) in Max() argument
402 return ((value1 > (value2)) ? (value1) : value2); in Max()
/external/curl/tests/unit/
Dunit1602.c52 int *value2; variable
70 value2 = malloc(sizeof(int));
71 abort_unless(value2 != NULL, "Out of memory");
72 *value2 = 204;
73 nodep = Curl_hash_add(&hash_static, &key2, klen, value2);
75 free(value2);
/external/libchrome/base/
Dhash.h44 inline size_t HashInts32(uint32_t value1, uint32_t value2) { in HashInts32() argument
46 uint64_t hash64 = (value1_64 << 32) | value2; in HashInts32()
65 inline size_t HashInts64(uint64_t value1, uint64_t value2) { in HashInts64() argument
73 uint32_t value2a = static_cast<uint32_t>(value2 & 0xffffffff); in HashInts64()
74 uint32_t value2b = static_cast<uint32_t>((value2 >> 32) & 0xffffffff); in HashInts64()
96 inline size_t HashInts(T1 value1, T2 value2) { in HashInts() argument
100 return HashInts64(value1, value2); in HashInts()
102 return HashInts32(value1, value2); in HashInts()
/external/protobuf/src/google/protobuf/io/
Dprinter.cc188 const char* variable2, const string& value2) { in Print() argument
191 vars[variable2] = value2; in Print()
197 const char* variable2, const string& value2, in Print() argument
201 vars[variable2] = value2; in Print()
208 const char* variable2, const string& value2, in Print() argument
213 vars[variable2] = value2; in Print()
221 const char* variable2, const string& value2, in Print() argument
227 vars[variable2] = value2; in Print()
236 const char* variable2, const string& value2, in Print() argument
243 vars[variable2] = value2; in Print()
[all …]
Dprinter.h216 const char* variable2, const string& value2);
219 const char* variable2, const string& value2,
223 const char* variable2, const string& value2,
228 const char* variable2, const string& value2,
234 const char* variable2, const string& value2,
241 const char* variable2, const string& value2,
249 const char* variable2, const string& value2,
/external/llvm/test/CodeGen/X86/
Dfast-isel-store.ll20 define <4 x i32> @test_store_4xi32(<4 x i32>* nocapture %addr, <4 x i32> %value, <4 x i32> %value2)…
23 %foo = add <4 x i32> %value, %value2 ; to force integer type on store
28 …x i32> @test_store_4xi32_aligned(<4 x i32>* nocapture %addr, <4 x i32> %value, <4 x i32> %value2) {
31 %foo = add <4 x i32> %value, %value2 ; to force integer type on store
50 …uble> @test_store_2xf64(<2 x double>* nocapture %addr, <2 x double> %value, <2 x double> %value2) {
53 %foo = fadd <2 x double> %value, %value2 ; to force dobule type on store
58 …est_store_2xf64_aligned(<2 x double>* nocapture %addr, <2 x double> %value, <2 x double> %value2) {
61 %foo = fadd <2 x double> %value, %value2 ; to force dobule type on store
/external/clang/test/Parser/
Dobjc-synthesized-recover.m6 int value2; field
9 @property int value2; property
13 @synthesize value, - value2; // expected-error{{expected a property name}} method
14 @synthesize value2;
/external/guava/guava-tests/test/com/google/common/cache/
DCacheReferencesTest.java93 String value2 = key2.toString();
95 assertSame(value2, cache.getUnchecked(key2));
97 assertThat(cache.asMap().values()).has().exactly(value1, value2);
98 assertEquals(ImmutableSet.of(immutableEntry(key1, value1), immutableEntry(key2, value2)),
108 String value2 = key2.toString();
110 assertSame(value2, cache.getUnchecked(key2));
116 assertThat(cache.asMap().values()).has().item(value2);
117 assertEquals(ImmutableSet.of(immutableEntry(key2, value2)), cache.asMap().entrySet());
/external/libcxx/test/std/experimental/filesystem/class.path/path.nonmember/
Dswap.pass.cpp31 …const char* value2 = "_THIS_IS_LONG_THIS_IS_LONG_THIS_IS_LONG_THIS_IS_LONG_THIS_IS_LONG_THIS_IS_LO… in main() local
33 path p2(value2); in main()
44 assert(p1.native() == value2); in main()
48 assert(p2.native() == value2); in main()
/external/conscrypt/openjdk/src/main/java/org/conscrypt/
DNativeCryptoJni.java112 int value2 = e2 instanceof UnsatisfiedLinkError ? 1 : 0; in compare() local
113 if (value1 != value2) { in compare()
115 return value2 - value1; in compare()
124 value2 = m2 != null && m2.contains("java.library.path") ? 0 : 1; in compare()
125 return value2 - value1; in compare()
/external/clang/test/SemaObjC/
Divar-sem-check-2.m4 id value2; // expected-note {{previously declared 'value2' here}} field
20 @synthesize prop=value2; // expected-error {{property 'prop' attempting to use instance variable '
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.modifiers/
Dswap.pass.cpp31 const char* value2; member
56 path p2(TC.value2); in main()
61 assert(p1 == TC.value2); in main()
68 assert(p2 == TC.value2); in main()
/external/clang/test/PCH/
Dchain-cxx.cpp46 static const int value2; member
51 const int TS3<T>::value2 = 1; member in TS3<T>
109 extern int arr[TS3<int>::value2];
144 int arr[TS3<int>::value2];
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
DTwoSineWavesTone.java51 short value2 = (short) (mAmplitude * Math.sin(mPhase2) * Short.MAX_VALUE); in generateTone() local
52 tone[i] = (short) (value1 + value2); in generateTone()
80 double value2 = mAmplitude * Math.sin(mPhase2); in generateTone() local
81 tone[i] = value1 + value2; in generateTone()

12345678