Home
last modified time | relevance | path

Searched full:original (Results 1 – 25 of 17050) sorted by relevance

12345678910>>...682

/external/sdv/vsomeip/third_party/boost/atomic/include/boost/atomic/detail/
Dcore_arch_ops_gcc_aarch64.hpp115 storage_type original; in exchange() local
120 "swp" ld_mo st_mo "b %w[value], %w[original], %[storage]\n\t"\ in exchange()
121 : [storage] "+Q" (storage), [original] "=r" (original)\ in exchange()
132 "ld" ld_mo "xrb %w[original], %[storage]\n\t"\ in exchange()
135 : [tmp] "=&r" (tmp), [storage] "+Q" (storage), [original] "=&r" (original)\ in exchange()
144 return original; in exchange()
150 storage_type original; in compare_exchange_weak() local
152 original = expected; in compare_exchange_weak()
157 "cas" ld_mo st_mo "b %w[original], %w[desired], %[storage]\n\t"\ in compare_exchange_weak()
158 : [storage] "+Q" (storage), [original] "+r" (original)\ in compare_exchange_weak()
[all …]
Dcore_arch_ops_gcc_arm.hpp87 storage_type original; in exchange() local
93 "ldrex %[original], %[storage]\n\t" // load the original value in exchange()
98 : [tmp] "=&l" (tmp), [original] "=&r" (original), [storage] "+Q" (storage) in exchange()
103 return original; in exchange()
114 storage_type original; in compare_exchange_weak() local
118 "ldrex %[original], %[storage]\n\t" // original = *(&storage) in compare_exchange_weak()
119 "cmp %[original], %[expected]\n\t" // flags = original==expected in compare_exchange_weak()
124 : [original] "=&r" (original), in compare_exchange_weak()
138 expected = original; in compare_exchange_weak()
150 storage_type original; in compare_exchange_strong() local
[all …]
Dextra_ops_gcc_arm.hpp108 extended_storage_type original, result; in fetch_negate() local
113 "ldrexb %[original], %[storage]\n\t" // original = zero_extend(*(&storage)) in fetch_negate()
114 "rsb %[result], %[original], #0\n\t" // result = 0 - original in fetch_negate()
119 : [original] "=&r" (original), // %0 in fetch_negate()
127 return static_cast< storage_type >(original); in fetch_negate()
134 extended_storage_type original, result; in negate() local
139 "ldrexb %[original], %[storage]\n\t" // original = zero_extend(*(&storage)) in negate()
140 "rsb %[result], %[original], #0\n\t" // result = 0 - original in negate()
145 : [original] "=&r" (original), // %0 in negate()
160 extended_storage_type original, result; in add() local
[all …]
Dcore_arch_ops_gcc_aarch32.hpp104 storage_type original; in exchange() local
110 "ld" ld_mo "exb %[original], %[storage]\n\t"\ in exchange()
114 : [tmp] "=&r" (tmp), [original] "=&r" (original), [storage] "+Q" (storage)\ in exchange()
122 return original; in exchange()
128 storage_type original; in compare_exchange_weak() local
135 "ld" ld_mo "exb %[original], %[storage]\n\t"\ in compare_exchange_weak()
136 "cmp %[original], %[expected]\n\t"\ in compare_exchange_weak()
141 : [original] "=&r" (original), [success] "=&r" (success), [storage] "+Q" (storage)\ in compare_exchange_weak()
149 expected = original; in compare_exchange_weak()
156 storage_type original; in compare_exchange_strong() local
[all …]
Dextra_ops_gcc_ppc.hpp103 storage_type original, result; in fetch_negate() local
111 : "=&b" (original), "=&b" (result), "+Z" (storage) in fetch_negate()
116 return original; in fetch_negate()
122 storage_type original, result; in negate() local
130 : "=&b" (original), "=&b" (result), "+Z" (storage) in negate()
140 storage_type original, result; in add() local
149 : "=&b" (original), "=&b" (result), "+Z" (storage) in add()
159 storage_type original, result; in sub() local
168 : "=&b" (original), "=&b" (result), "+Z" (storage) in sub()
178 storage_type original, result; in bitwise_and() local
[all …]
/external/cronet/base/android/junit/src/org/chromium/base/
DPiiEliderTest.java23 String original = "email me at someguy@mailservice.com"; in testElideEmail() local
25 assertEquals(expected, PiiElider.elideEmail(original)); in testElideEmail()
30 String original = "file bugs at crbug.com"; in testElideUrl() local
32 assertEquals(expected, PiiElider.elideUrl(original)); in testElideUrl()
37 String original = "exception at org.chromium.base.PiiEliderTest"; in testElideUrl2() local
38 assertEquals(original, PiiElider.elideUrl(original)); in testElideUrl2()
43 String original = "file bugs at crbug.com or code.google.com"; in testElideUrl3() local
45 assertEquals(expected, PiiElider.elideUrl(original)); in testElideUrl3()
50 String original = "test shorturl.com !!!"; in testElideUrl4() local
52 assertEquals(expected, PiiElider.elideUrl(original)); in testElideUrl4()
[all …]
/external/angle/src/tests/compiler_tests/
DIntermNode_test.cpp79 void checkTypeEqualWithQualifiers(const TType &original, const TType &copy) in checkTypeEqualWithQualifiers() argument
81 ASSERT_EQ(original, copy); in checkTypeEqualWithQualifiers()
82 ASSERT_EQ(original.getPrecision(), copy.getPrecision()); in checkTypeEqualWithQualifiers()
83 ASSERT_EQ(original.getQualifier(), copy.getQualifier()); in checkTypeEqualWithQualifiers()
90 TIntermSymbol *original = aOriginal->getAsSymbolNode(); in checkSymbolCopy() local
92 ASSERT_NE(nullptr, original); in checkSymbolCopy()
93 ASSERT_NE(original, copy); in checkSymbolCopy()
94 ASSERT_EQ(&original->variable(), &copy->variable()); in checkSymbolCopy()
95 ASSERT_EQ(original->uniqueId(), copy->uniqueId()); in checkSymbolCopy()
96 ASSERT_EQ(original->getName(), copy->getName()); in checkSymbolCopy()
[all …]
/external/cronet/base/apple/
Dscoped_cftyperef_unittest.cc60 ScopedCFTypeRef<CFMutableArrayRef> original( in TEST() local
62 EXPECT_EQ(1, CFGetRetainCount(original.get())); in TEST()
64 ScopedCFTypeRef<CFMutableArrayRef> copy(original); in TEST()
65 EXPECT_EQ(original.get(), copy.get()); in TEST()
66 EXPECT_EQ(2, CFGetRetainCount(original.get())); in TEST()
70 ScopedCFTypeRef<CFMutableArrayRef> original( in TEST() local
72 EXPECT_EQ(1, CFGetRetainCount(original.get())); in TEST()
74 ScopedCFTypeRef<CFArrayRef> copy(original); in TEST()
75 EXPECT_EQ(original.get(), copy.get()); in TEST()
76 EXPECT_EQ(2, CFGetRetainCount(original.get())); in TEST()
[all …]
/external/python/python-api-core/tests/unit/
Dtest_protobuf_helpers.py275 original = struct_pb2.Value(number_value=1.0)
277 assert protobuf_helpers.field_mask(original, modified).paths == []
279 original = color_pb2.Color(alpha=wrappers_pb2.FloatValue(value=1.0))
281 assert protobuf_helpers.field_mask(original, modified).paths == []
283 original = struct_pb2.ListValue(values=[struct_pb2.Value(number_value=1.0)])
285 assert protobuf_helpers.field_mask(original, modified).paths == []
287 original = struct_pb2.Struct(fields={"bar": struct_pb2.Value(number_value=1.0)})
289 assert protobuf_helpers.field_mask(original, modified).paths == []
294 original = color_pb2.Color(red=0.0)
296 assert protobuf_helpers.field_mask(original, modified).paths == []
[all …]
/external/cronet/net/url_request/
Dredirect_info_unittest.cc35 const GURL kOriginalUrl = GURL("https://foo.test/original"); in TEST()
73 {true, "http://foo.test/original", "http://foo.test/redirected", in TEST()
75 {true, "http://foo.test/original#1", "http://foo.test/redirected", in TEST()
77 {true, "http://foo.test/original#1", "http://foo.test/redirected#2", in TEST()
79 {false, "http://foo.test/original", "http://foo.test/redirected", in TEST()
81 {false, "http://foo.test/original#1", "http://foo.test/redirected", in TEST()
83 {false, "http://foo.test/original#1", "http://foo.test/redirected#2", in TEST()
167 {"http://foo.test/one" /* original url */, in TEST()
168 "http://foo.test/one" /* original referrer */, in TEST()
171 // original policy in TEST()
[all …]
/external/chromium-trace/catapult/devil/devil/android/
Ddevice_errors_test.py14 def assertIsPicklable(self, original): argument
15 pickled = pickle.dumps(original)
17 self.assertEquals(original, reconstructed)
20 original = device_errors.AdbCommandFailedError(
25 self.assertIsPicklable(original)
28 original = device_errors.AdbShellCommandFailedError(
30 self.assertIsPicklable(original)
33 original = device_errors.CommandFailedError('sample command failed')
34 self.assertIsPicklable(original)
37 original = device_errors.CommandTimeoutError('My fake command timed out :(')
[all …]
/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dimage-inl.h230 void Image<T>::DownsampleAveraged(const T* const original, const int stride, in DownsampleAveraged() argument
234 DownsampleAveragedNeon(original, stride, factor); in DownsampleAveraged()
247 // Sum up the original pixels. in DownsampleAveraged()
257 const T* p = original + curr_y * stride + orig_x; in DownsampleAveraged()
270 void Image<T>::DownsampleInterpolateNearest(const Image<T>& original) { in DownsampleInterpolateNearest() argument
272 const float factor_x = static_cast<float>(original.GetWidth()) / in DownsampleInterpolateNearest()
274 const float factor_y = static_cast<float>(original.GetHeight()) / in DownsampleInterpolateNearest()
278 const float offset_x = 0.5f * (original.GetWidth() - width_) / width_; in DownsampleInterpolateNearest()
281 const float offset_y = 0.5f * (original.GetHeight() - height_) / height_; in DownsampleInterpolateNearest()
291 const T* row_data = original[nearest_y]; in DownsampleInterpolateNearest()
[all …]
/external/licenseclassifier/v2/assets/License/AFL-1.1/
Dlicense.txt5 The Academic Free License applies to any original work of authorship (the
6 "Original Work") whose owner (the "Licensor") has placed the following notice
7 immediately following the copyright notice for the Original Work:
12 Original Work ("You") a world-wide, royalty-free, non-exclusive, perpetual,
16 copies of the Original Work and derivative works thereof, and
19 in the Original Work as furnished by the Licensor, to make, use, sell and
20 offer for sale the Original Work and derivative works thereof, subject to the
23 Right of Attribution. Redistributions of the Original Work must reproduce all
24 copyright notices in the Original Work as furnished by the Licensor, both in
25 the Original Work itself and in any documentation and/or other materials
[all …]
/external/licenseclassifier/licenses/
DAFL-1.1.txt5 The Academic Free License applies to any original work of authorship (the
6 "Original Work") whose owner (the "Licensor") has placed the following notice
7 immediately following the copyright notice for the Original Work:
12 Original Work ("You") a world-wide, royalty-free, non-exclusive, perpetual,
16 copies of the Original Work and derivative works thereof, and
19 in the Original Work as furnished by the Licensor, to make, use, sell and
20 offer for sale the Original Work and derivative works thereof, subject to the
23 Right of Attribution. Redistributions of the Original Work must reproduce all
24 copyright notices in the Original Work as furnished by the Licensor, both in
25 the Original Work itself and in any documentation and/or other materials
[all …]
DOSL-3.0.txt3 This Open Software License (the "License") applies to any original work of
4 authorship (the "Original Work") whose owner (the "Licensor") has placed the
5 following licensing notice adjacent to the copyright notice for the Original
14 a) to reproduce the Original Work in copies, either alone or as part of a
17 b) to translate, adapt, alter, transform, modify, or arrange the Original
19 Original Work;
21 c) to distribute or communicate copies of the Original Work and Derivative
22 Works to the public, with the proviso that copies of Original Work or
26 d) to perform the Original Work publicly; and
28 e) to display the Original Work publicly.
[all …]
DAFL-3.0.txt3 This Academic Free License (the "License") applies to any original work of
4 authorship (the "Original Work") whose owner (the "Licensor") has placed the
5 following licensing notice adjacent to the copyright notice for the Original
14 a) to reproduce the Original Work in copies, either alone or as part of a
17 b) to translate, adapt, alter, transform, modify, or arrange the Original
19 Original Work;
21 c) to distribute or communicate copies of the Original Work and Derivative
26 d) to perform the Original Work publicly; and
28 e) to display the Original Work publicly.
32 by the Licensor that are embodied in the Original Work as furnished by the
[all …]
DOSL-2.1.txt3 This Open Software License (the "License") applies to any original work of
4 authorship (the "Original Work") whose owner (the "Licensor") has placed the
5 following notice immediately following the copyright notice for the Original
14 a) to reproduce the Original Work in copies;
16 b) to prepare derivative works ("Derivative Works") based upon the Original
19 c) to distribute copies of the Original Work and Derivative Works to the
20 public, with the proviso that copies of Original Work or Derivative Works that
23 d) to perform the Original Work publicly; and
25 e) to display the Original Work publicly.
29 owned or controlled by the Licensor that are embodied in the Original Work as
[all …]
DOSL-2.0.txt3 This Open Software License (the "License") applies to any original work of
4 authorship (the "Original Work") whose owner (the "Licensor") has placed the
5 following notice immediately following the copyright notice for the Original
14 a) to reproduce the Original Work in copies;
16 b) to prepare derivative works ("Derivative Works") based upon the Original
19 c) to distribute copies of the Original Work and Derivative Works to the
20 public, with the proviso that copies of Original Work or Derivative Works that
23 d) to perform the Original Work publicly; and
25 e) to display the Original Work publicly.
29 owned or controlled by the Licensor that are embodied in the Original Work as
[all …]
DAFL-2.0.txt5 This Academic Free License (the "License") applies to any original work of
6 authorship (the "Original Work") whose owner (the "Licensor") has placed the
7 following notice immediately following the copyright notice for the Original
16 a) to reproduce the Original Work in copies;
18 b) to prepare derivative works ("Derivative Works") based upon the Original
21 c) to distribute copies of the Original Work and Derivative Works to the
24 d) to perform the Original Work publicly; and
26 e) to display the Original Work publicly.
30 owned or controlled by the Licensor that are embodied in the Original Work as
31 furnished by the Licensor, to make, use, sell and offer for sale the Original
[all …]
/external/licenseclassifier/v2/assets/License/OSL-3.0/
Dlicense.txt3 This Open Software License (the "License") applies to any original work of
4 authorship (the "Original Work") whose owner (the "Licensor") has placed the
5 following licensing notice adjacent to the copyright notice for the Original
14 a) to reproduce the Original Work in copies, either alone or as part of a
17 b) to translate, adapt, alter, transform, modify, or arrange the Original
19 Original Work;
21 c) to distribute or communicate copies of the Original Work and Derivative
22 Works to the public, with the proviso that copies of Original Work or
26 d) to perform the Original Work publicly; and
28 e) to display the Original Work publicly.
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DTransposedTableTest.java31 Table<Integer, String, Character> original = HashBasedTable.create(); in create() local
32 Table<String, Integer, Character> table = Tables.transpose(original); in create()
39 Table<Integer, String, Character> original = HashBasedTable.create(); in testTransposeTransposed() local
40 assertSame(original, Tables.transpose(Tables.transpose(original))); in testTransposeTransposed()
44 Table<Integer, String, Character> original = HashBasedTable.create(); in testPutOriginalModifiesTranspose() local
45 Table<String, Integer, Character> transpose = Tables.transpose(original); in testPutOriginalModifiesTranspose()
46 original.put(1, "foo", 'a'); in testPutOriginalModifiesTranspose()
51 Table<Integer, String, Character> original = HashBasedTable.create(); in testPutTransposeModifiesOriginal() local
52 Table<String, Integer, Character> transpose = Tables.transpose(original); in testPutTransposeModifiesOriginal()
54 assertEquals((Character) 'a', original.get(1, "foo")); in testPutTransposeModifiesOriginal()
[all …]
/external/guava/android/guava-tests/test/com/google/common/collect/
DTransposedTableTest.java31 Table<Integer, String, Character> original = HashBasedTable.create(); in create() local
32 Table<String, Integer, Character> table = Tables.transpose(original); in create()
39 Table<Integer, String, Character> original = HashBasedTable.create(); in testTransposeTransposed() local
40 assertSame(original, Tables.transpose(Tables.transpose(original))); in testTransposeTransposed()
44 Table<Integer, String, Character> original = HashBasedTable.create(); in testPutOriginalModifiesTranspose() local
45 Table<String, Integer, Character> transpose = Tables.transpose(original); in testPutOriginalModifiesTranspose()
46 original.put(1, "foo", 'a'); in testPutOriginalModifiesTranspose()
51 Table<Integer, String, Character> original = HashBasedTable.create(); in testPutTransposeModifiesOriginal() local
52 Table<String, Integer, Character> transpose = Tables.transpose(original); in testPutTransposeModifiesOriginal()
54 assertEquals((Character) 'a', original.get(1, "foo")); in testPutTransposeModifiesOriginal()
[all …]
/external/licenseclassifier/v2/assets/License/AFL-3.0/
Dlicense.txt3 This Academic Free License (the "License") applies to any original work of
4 authorship (the "Original Work") whose owner (the "Licensor") has placed the
5 following licensing notice adjacent to the copyright notice for the Original
14 a) to reproduce the Original Work in copies, either alone or as part of a
17 b) to translate, adapt, alter, transform, modify, or arrange the Original
19 Original Work;
21 c) to distribute or communicate copies of the Original Work and Derivative
26 d) to perform the Original Work publicly; and
28 e) to display the Original Work publicly.
32 by the Licensor that are embodied in the Original Work as furnished by the
[all …]
/external/licenseclassifier/v2/assets/License/OSL-2.1/
Dlicense.txt3 This Open Software License (the "License") applies to any original work of
4 authorship (the "Original Work") whose owner (the "Licensor") has placed the
5 following notice immediately following the copyright notice for the Original
14 a) to reproduce the Original Work in copies;
16 b) to prepare derivative works ("Derivative Works") based upon the Original
19 c) to distribute copies of the Original Work and Derivative Works to the
20 public, with the proviso that copies of Original Work or Derivative Works that
23 d) to perform the Original Work publicly; and
25 e) to display the Original Work publicly.
29 owned or controlled by the Licensor that are embodied in the Original Work as
[all …]
/external/licenseclassifier/v2/assets/License/OSL-2.0/
Dlicense.txt3 This Open Software License (the "License") applies to any original work of
4 authorship (the "Original Work") whose owner (the "Licensor") has placed the
5 following notice immediately following the copyright notice for the Original
14 a) to reproduce the Original Work in copies;
16 b) to prepare derivative works ("Derivative Works") based upon the Original
19 c) to distribute copies of the Original Work and Derivative Works to the
20 public, with the proviso that copies of Original Work or Derivative Works that
23 d) to perform the Original Work publicly; and
25 e) to display the Original Work publicly.
29 owned or controlled by the Licensor that are embodied in the Original Work as
[all …]

12345678910>>...682