/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.rotate/ |
D | rotate.pass.cpp | 156 int ig[] = {0, 1, 2, 3, 4, 5}; in test() local 157 const unsigned sg = sizeof(ig)/sizeof(ig[0]); in test() 158 r = std::rotate(Iter(ig), Iter(ig), Iter(ig+sg)); in test() 159 assert(base(r) == ig+sg); in test() 160 assert(ig[0] == 0); in test() 161 assert(ig[1] == 1); in test() 162 assert(ig[2] == 2); in test() 163 assert(ig[3] == 3); in test() 164 assert(ig[4] == 4); in test() 165 assert(ig[5] == 5); in test() [all …]
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/ |
D | unique.pass.cpp | 64 int ig[] = {0, 0, 1, 1}; in test() local 65 const unsigned sg = sizeof(ig)/sizeof(ig[0]); in test() 66 r = std::unique(Iter(ig), Iter(ig+sg)); in test() 67 assert(base(r) == ig + 2); in test() 68 assert(ig[0] == 0); in test() 69 assert(ig[1] == 1); in test() 139 Ptr ig[4]; in test1() local 140 ig[2].reset(&one); in test1() 141 ig[3].reset(&one); in test1() 142 const unsigned sg = sizeof(ig)/sizeof(ig[0]); in test1() [all …]
|
D | unique_pred.pass.cpp | 84 int ig[] = {0, 0, 1, 1}; in test() local 85 const unsigned sg = sizeof(ig)/sizeof(ig[0]); in test() 87 r = std::unique(Iter(ig), Iter(ig+sg), count_equal()); in test() 88 assert(base(r) == ig + 2); in test() 89 assert(ig[0] == 0); in test() 90 assert(ig[1] == 1); in test() 175 Ptr ig[4]; in test1() local 176 ig[2].reset(&one); in test1() 177 ig[3].reset(&one); in test1() 178 const unsigned sg = sizeof(ig)/sizeof(ig[0]); in test1() [all …]
|
D | unique_copy.pass.cpp | 68 const int ig[] = {0, 0, 1, 1}; in test() local 69 const unsigned sg = sizeof(ig)/sizeof(ig[0]); in test() 71 r = std::unique_copy(InIter(ig), InIter(ig+sg), OutIter(jg)); in test()
|
D | unique_copy_pred.pass.cpp | 89 const int ig[] = {0, 0, 1, 1}; in test() local 90 const unsigned sg = sizeof(ig)/sizeof(ig[0]); in test() 93 r = std::unique_copy(InIter(ig), InIter(ig+sg), OutIter(jg), count_equal()); in test()
|
/external/curl/lib/ |
D | sigpipe.h | 42 struct sigpipe_ignore *ig) in sigpipe_ignore() argument 46 ig->no_signal = data->set.no_signal; in sigpipe_ignore() 50 memset(&ig->old_pipe_act, 0, sizeof(struct sigaction)); in sigpipe_ignore() 51 sigaction(SIGPIPE, NULL, &ig->old_pipe_act); in sigpipe_ignore() 52 action = ig->old_pipe_act; in sigpipe_ignore() 64 static void sigpipe_restore(struct sigpipe_ignore *ig) in sigpipe_restore() argument 66 if(!ig->no_signal) in sigpipe_restore() 68 sigaction(SIGPIPE, &ig->old_pipe_act, NULL); in sigpipe_restore()
|
/external/skia/tests/ |
D | ImageGeneratorTest.cpp | 48 MyImageGenerator ig; in DEF_TEST() local 58 ig.getYUV8Planes(sizes, nullptr, nullptr, &colorSpace); in DEF_TEST() 59 ig.getYUV8Planes(sizes, nullptr, nullptr, nullptr); in DEF_TEST() 60 ig.getYUV8Planes(sizes, planes, nullptr, nullptr); in DEF_TEST() 61 ig.getYUV8Planes(sizes, nullptr, rowBytes, nullptr); in DEF_TEST() 62 ig.getYUV8Planes(sizes, planes, rowBytes, nullptr); in DEF_TEST() 63 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace); in DEF_TEST() 69 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace); in DEF_TEST()
|
/external/v8/test/webkit/ |
D | regexp-char-insensitive-expected.txt | 39 PASS 'PASå'.replace(/å/ig, 'S') is 'PASS' 40 PASS 'PASå'.replace(/Å/ig, 'S') is 'PASS' 41 PASS 'PASÅ'.replace(/å/ig, 'S') is 'PASS' 42 PASS 'PASÅ'.replace(/Å/ig, 'S') is 'PASS' 43 PASS 'PASS'.replace(/å/ig, '%C3%A5') is 'PASS' 44 PASS 'PASS'.replace(/Å/ig, '%C3%A5') is 'PASS'
|
/external/opencv3/modules/cudalegacy/src/cuda/ |
D | NCVBroxOpticalFlow.cu | 305 __forceinline__ __device__ void load_array(float *smem, int ig, int jg, int w, int h, int p) in load_array() argument 309 load_array_element<tex>(smem, i, j, ig, jg, w, h, p);//load current pixel in load_array() 314 load_array_element<tex>(smem, i, j-2, ig, jg-2, w, h, p); in load_array() 318 … load_array_element<tex>(smem, i+PSOR_TILE_WIDTH, j-2, ig+PSOR_TILE_WIDTH, jg-2, w, h, p); in load_array() 320 load_array_element<tex>(smem, i+PSOR_TILE_WIDTH, j, ig+PSOR_TILE_WIDTH, jg, w, h, p); in load_array() 325 … load_array_element<tex>(smem, i-PSOR_TILE_WIDTH, j-2, ig-PSOR_TILE_WIDTH, jg-2, w, h, p); in load_array() 327 load_array_element<tex>(smem, i-PSOR_TILE_WIDTH, j, ig-PSOR_TILE_WIDTH, jg, w, h, p); in load_array() 333 load_array_element<tex>(smem, i, j+2, ig, jg+2, w, h, p); in load_array() 337 … load_array_element<tex>(smem, i+PSOR_TILE_WIDTH, j+2, ig+PSOR_TILE_WIDTH, jg+2, w, h, p); in load_array() 339 load_array_element<tex>(smem, i+PSOR_TILE_WIDTH, j, ig+PSOR_TILE_WIDTH, jg, w, h, p); in load_array() [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/emr/ |
D | test_connection.py | 925 ig = jf.instancegroups[0] 926 self.assertTrue(isinstance(ig, InstanceGroup)) 927 self.assertEqual(ig.creationdatetime, '2014-01-24T01:21:21Z') 928 self.assertEqual(ig.state, 'ENDED') 929 self.assertEqual(ig.instancerequestcount, '1') 930 self.assertEqual(ig.instancetype, 'm1.large') 931 self.assertEqual(ig.laststatechangereason, 'Job flow terminated') 932 self.assertEqual(ig.market, 'ON_DEMAND') 933 self.assertEqual(ig.instancegroupid, 'ig-aaaaaa') 934 self.assertEqual(ig.instancerole, 'MASTER') [all …]
|
/external/emma/core/java12/com/vladium/emma/report/ |
D | IItemAttribute.java | 110 final IItem ig = (IItem) g; in compare() local 112 return il.getName ().compareTo (ig.getName ()); in compare() 178 final IItem ig = (IItem) g; in compare() local 183 final double nig = ig.getAggregate (m_numeratorAggregateID); in compare() 184 final double dig = ig.getAggregate (m_denominatorAggregateID); in compare()
|
/external/icu/icu4c/source/data/lang/ |
D | ig.txt | 6 // * Source File: <path>/common/main/ig.xml 9 ig{ 28 ig{"Igbo"}
|
/external/icu/icu4c/source/data/zone/ |
D | ig.txt | 6 // * Source File: <path>/common/main/ig.xml 9 ig{
|
/external/icu/icu4c/source/data/unit/ |
D | ig.txt | 6 // * Source File: <path>/common/main/ig.xml 9 ig{
|
/external/icu/icu4c/source/data/curr/ |
D | ig.txt | 6 // * Source File: <path>/common/main/ig.xml 9 ig{
|
/external/icu/icu4c/source/data/region/ |
D | ig.txt | 6 // * Source File: <path>/common/main/ig.xml 9 ig{
|
/external/icu/icu4c/source/data/coll/ |
D | ig.txt | 6 // * Source File: <path>/common/collation/ig.xml 9 ig{
|
/external/opencv3/modules/core/src/ |
D | pca.cpp | 179 for(int ig = 0; ig < g.rows; ig++) in computeCumulativeEnergy() local 181 g.at<T>(ig, 0) = 0; in computeCumulativeEnergy() 182 for(int im = 0; im <= ig; im++) in computeCumulativeEnergy() 184 g.at<T>(ig,0) += eigenvalues.at<T>(im,0); in computeCumulativeEnergy()
|
/external/libcxx/test/std/experimental/func/func.searchers/func.searchers.default/func.searchers.default.creation/ |
D | make_default_searcher.pass.cpp | 58 int ig[] = {1, 2, 3, 4}; in test() local 59 do_search(Iter1(ib), Iter1(ib+sb), Iter2(ig), Iter2(ig+4), Iter1(ib+8)); in test()
|
D | make_default_searcher.pred.pass.cpp | 70 int ig[] = {1, 2, 3, 4}; in test() local 71 do_search(Iter1(ib), Iter1(ib+sb), Iter2(ig), Iter2(ig+4), Iter1(ib+8), sb*4); in test()
|
/external/libcxx/test/std/experimental/func/func.searchers/func.searchers.default/ |
D | default.pass.cpp | 72 int ig[] = {1, 2, 3, 4}; in test() local 73 do_search(Iter1(ib), Iter1(ib+sb), Iter2(ig), Iter2(ig+4), Iter1(ib+8)); in test()
|
D | default.pred.pass.cpp | 84 int ig[] = {1, 2, 3, 4}; in test() local 85 do_search(Iter1(ib), Iter1(ib+sb), Iter2(ig), Iter2(ig+4), Iter1(ib+8), sb*4); in test()
|
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/ |
D | search.pass.cpp | 48 int ig[] = {1, 2, 3, 4}; in test() local 49 assert(std::search(Iter1(ib), Iter1(ib+sb), Iter2(ig), Iter2(ig+4)) == Iter1(ib+8)); in test()
|
D | search_pred.pass.cpp | 89 int ig[] = {1, 2, 3, 4}; in test() local 90 …assert(std::search(Iter1(ib), Iter1(ib+sb), Iter2(ig), Iter2(ig+4), count_equal()) == Iter1(ib+8)); in test()
|
/external/opencv3/modules/video/src/opencl/ |
D | optical_flow_farneback.cl | 79 const VECTYPE ig) 127 dst[mad24(y, dstStep, xWarped)] = (float)(b3*ig.s0); 128 dst[mad24(rows + y, dstStep, xWarped)] = (float)(b2*ig.s0); 129 dst[mad24(2*rows + y, dstStep, xWarped)] = (float)(b1*ig.s1 + b5*ig.s2); 130 dst[mad24(3*rows + y, dstStep, xWarped)] = (float)(b1*ig.s1 + b4*ig.s2); 131 dst[mad24(4*rows + y, dstStep, xWarped)] = (float)(b6*ig.s3);
|