/external/mesa3d/src/mesa/state_tracker/ |
D | st_atom_pixeltransfer.c | 147 GLuint ic = 0; in get_pixel_transfer_program() local 161 _mesa_init_instructions(inst + ic, 1); in get_pixel_transfer_program() 162 inst[ic].Opcode = OPCODE_TEX; in get_pixel_transfer_program() 163 inst[ic].DstReg.File = PROGRAM_TEMPORARY; in get_pixel_transfer_program() 164 inst[ic].DstReg.Index = colorTemp; in get_pixel_transfer_program() 165 inst[ic].SrcReg[0].File = PROGRAM_INPUT; in get_pixel_transfer_program() 166 inst[ic].SrcReg[0].Index = FRAG_ATTRIB_TEX0; in get_pixel_transfer_program() 167 inst[ic].TexSrcUnit = 0; in get_pixel_transfer_program() 168 inst[ic].TexSrcTarget = TEXTURE_2D_INDEX; in get_pixel_transfer_program() 169 ic++; in get_pixel_transfer_program() [all …]
|
/external/valgrind/none/tests/s390x/ |
D | insert.stdout.exp | 1 ic 0000000000000000 <- 0000000000000000 = 0000000000000000 2 ic 0000000000000001 <- 0000000000000000 = 0000000000000000 3 ic 000000000000FFFF <- 0000000000000000 = 000000000000FF00 4 ic 0000000000007FFF <- 0000000000000000 = 0000000000007F00 5 ic 0000000000008000 <- 0000000000000000 = 0000000000008000 6 ic 00000000FFFFFFFF <- 0000000000000000 = 00000000FFFFFF00 7 ic 0000000080000000 <- 0000000000000000 = 0000000080000000 8 ic 000000007FFFFFFF <- 0000000000000000 = 000000007FFFFF00 9 ic AAAAAAAAAAAAAAAA <- 0000000000000000 = AAAAAAAAAAAAAA00 10 ic 8000000000000000 <- 0000000000000000 = 8000000000000000 [all …]
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.rotate/ |
D | rotate.pass.cpp | 55 int ic[] = {0, 1, 2}; in test() local 56 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() 57 r = std::rotate(Iter(ic), Iter(ic), Iter(ic+sc)); in test() 58 assert(base(r) == ic+sc); in test() 59 assert(ic[0] == 0); in test() 60 assert(ic[1] == 1); in test() 61 assert(ic[2] == 2); in test() 62 r = std::rotate(Iter(ic), Iter(ic+1), Iter(ic+sc)); in test() 63 assert(base(r) == ic+2); in test() 64 assert(ic[0] == 1); in test() [all …]
|
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/ |
D | search_n.pass.cpp | 60 int ic[] = {0, 0, 0}; in test() local 61 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() 62 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0) == Iter(ic)); in test() 63 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0) == Iter(ic)); in test() 64 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0) == Iter(ic)); in test() 65 assert(std::search_n(Iter(ic), Iter(ic+sc), 3, 0) == Iter(ic)); in test() 66 assert(std::search_n(Iter(ic), Iter(ic+sc), 4, 0) == Iter(ic+sc)); in test() 69 std::search_n(Iter(ic), Iter(ic+sc), UserDefinedIntegral<unsigned>(0), 0); in test()
|
D | search_n_pred.pass.cpp | 126 int ic[] = {0, 0, 0}; in test() local 127 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() 128 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0, count_equal()) == Iter(ic)); in test() 131 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0, count_equal()) == Iter(ic)); in test() 134 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0, count_equal()) == Iter(ic)); in test() 137 assert(std::search_n(Iter(ic), Iter(ic+sc), 3, 0, count_equal()) == Iter(ic)); in test() 140 assert(std::search_n(Iter(ic), Iter(ic+sc), 4, 0, count_equal()) == Iter(ic+sc)); in test() 145 std::search_n(Iter(ic), Iter(ic+sc), UserDefinedIntegral<unsigned>(4), 0, count_equal()); in test()
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
D | p7.cpp | 13 void test_capture_constness(int i, const int ic) { in test_capture_constness() argument 14 (void)[i,ic] ()->void { in test_capture_constness() 16 float &fr2 = check_const_int(ic); in test_capture_constness() 21 float &fr2 = check_const_int(ic); in test_capture_constness() 24 (void)[i,ic] () mutable ->void { in test_capture_constness() 26 float &fr = check_const_int(ic); in test_capture_constness() 31 float &fr = check_const_int(ic); in test_capture_constness() 34 (void)[&i,&ic] ()->void { in test_capture_constness() 36 float &fr = check_const_int(ic); in test_capture_constness() 41 float &fr = check_const_int(ic); in test_capture_constness()
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.merge/ |
D | merge.pass.cpp | 34 int* ic = new int[2*N]; in test() local 40 InIter2(ib), InIter2(ib+N), OutIter(ic)); in test() 41 assert(base(r) == ic+2*N); in test() 42 assert(ic[0] == 0); in test() 43 assert(ic[2*N-1] == 2*N-1); in test() 44 assert(std::is_sorted(ic, ic+2*N)); in test() 45 delete [] ic; in test() 53 int* ic = new int[2*N]; in test() local 55 ic[i] = i; in test() 56 std::random_shuffle(ic, ic+2*N); in test() [all …]
|
D | merge_comp.pass.cpp | 38 int* ic = new int[2*N]; in test() local 47 InIter2(ib), InIter2(ib+N), OutIter(ic), pred); in test() 48 assert(base(r) == ic+2*N); in test() 49 assert(ic[0] == 2*N-1); in test() 50 assert(ic[2*N-1] == 0); in test() 51 assert(std::is_sorted(ic, ic+2*N, std::greater<int>())); in test() 53 delete [] ic; in test() 61 int* ic = new int[2*N]; in test() local 63 ic[i] = i; in test() 64 std::random_shuffle(ic, ic+2*N); in test() [all …]
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.reverse/ |
D | reverse.pass.cpp | 39 int ic[] = {0, 1, 2}; in test() local 40 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() 41 std::reverse(Iter(ic), Iter(ic+sc)); in test() 42 assert(ic[0] == 2); in test() 43 assert(ic[1] == 1); in test() 44 assert(ic[2] == 0); in test()
|
D | reverse_copy.pass.cpp | 42 const int ic[] = {0, 1, 2}; in test() local 43 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() 45 r = std::reverse_copy(InIter(ic), InIter(ic+sc), OutIter(jc)); in test()
|
/external/v8/src/interpreter/ |
D | interpreter.cc | 238 void Interpreter::DoLoadGlobal(Callable ic, in DoLoadGlobal() argument 247 Node* code_target = __ HeapConstant(ic.code()); in DoLoadGlobal() 253 Node* result = __ CallIC(ic.descriptor(), code_target, global, name, smi_slot, in DoLoadGlobal() 265 Callable ic = CodeFactory::LoadICInOptimizedCode(isolate_, NOT_INSIDE_TYPEOF, in DoLdaGlobalSloppy() local 267 DoLoadGlobal(ic, assembler); in DoLdaGlobalSloppy() 276 Callable ic = CodeFactory::LoadICInOptimizedCode(isolate_, NOT_INSIDE_TYPEOF, in DoLdaGlobalStrict() local 278 DoLoadGlobal(ic, assembler); in DoLdaGlobalStrict() 288 Callable ic = CodeFactory::LoadICInOptimizedCode(isolate_, INSIDE_TYPEOF, in DoLdaGlobalInsideTypeofSloppy() local 290 DoLoadGlobal(ic, assembler); in DoLdaGlobalInsideTypeofSloppy() 300 Callable ic = CodeFactory::LoadICInOptimizedCode(isolate_, INSIDE_TYPEOF, in DoLdaGlobalInsideTypeofStrict() local [all …]
|
D | interpreter.h | 70 void DoLoadGlobal(Callable ic, compiler::InterpreterAssembler* assembler); 73 void DoStoreGlobal(Callable ic, compiler::InterpreterAssembler* assembler); 76 void DoLoadIC(Callable ic, compiler::InterpreterAssembler* assembler); 79 void DoKeyedLoadIC(Callable ic, compiler::InterpreterAssembler* assembler); 82 void DoStoreIC(Callable ic, compiler::InterpreterAssembler* assembler); 85 void DoKeyedStoreIC(Callable ic, compiler::InterpreterAssembler* assembler);
|
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.first.of/ |
D | find_first_of.pass.cpp | 33 int ic[] = {7}; in main() local 36 forward_iterator<const int*>(ic), in main() 37 forward_iterator<const int*>(ic + 1)) == in main() 41 forward_iterator<const int*>(ic), in main() 42 forward_iterator<const int*>(ic)) == in main() 46 forward_iterator<const int*>(ic), in main() 47 forward_iterator<const int*>(ic+1)) == in main()
|
D | find_first_of_pred.pass.cpp | 36 int ic[] = {7}; in main() local 39 forward_iterator<const int*>(ic), in main() 40 forward_iterator<const int*>(ic + 1), in main() 45 forward_iterator<const int*>(ic), in main() 46 forward_iterator<const int*>(ic), in main() 51 forward_iterator<const int*>(ic), in main() 52 forward_iterator<const int*>(ic+1), in main()
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/ |
D | unique.pass.cpp | 43 int ic[] = {0, 0}; in test() local 44 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() 45 r = std::unique(Iter(ic), Iter(ic+sc)); in test() 46 assert(base(r) == ic + 1); in test() 47 assert(ic[0] == 0); in test() 116 Ptr ic[2]; in test1() local 117 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test1() 118 r = std::unique(Iter(ic), Iter(ic+sc)); in test1() 119 assert(base(r) == ic + 1); in test1() 120 assert(ic[0] == 0); in test1()
|
D | unique_pred.pass.cpp | 57 int ic[] = {0, 0}; in test() local 58 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() 60 r = std::unique(Iter(ic), Iter(ic+sc), count_equal()); in test() 61 assert(base(r) == ic + 1); in test() 62 assert(ic[0] == 0); in test() 146 Ptr ic[2]; in test1() local 147 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test1() 149 r = std::unique(Iter(ic), Iter(ic+sc), count_equal()); in test1() 150 assert(base(r) == ic + 1); in test1() 151 assert(ic[0] == 0); in test1()
|
/external/v8/ |
D | Android.v8common.mk | 216 src/ic/access-compiler.cc \ 217 src/ic/call-optimization.cc \ 218 src/ic/handler-compiler.cc \ 219 src/ic/ic.cc \ 220 src/ic/ic-compiler.cc \ 221 src/ic/ic-state.cc \ 222 src/ic/stub-cache.cc \ 384 src/ic/arm/access-compiler-arm.cc \ 385 src/ic/arm/handler-compiler-arm.cc \ 386 src/ic/arm/ic-arm.cc \ [all …]
|
/external/toybox/toys/pending/ |
D | iconv.c | 30 void *ic; 52 if (iconv(TT.ic, &in, &inleft, &out, &outleft) == -1 70 TT.ic = iconv_open(TT.to ? TT.to : "utf8", TT.from ? TT.from : "utf8"); in iconv_main() 71 if (TT.ic == (iconv_t)-1) error_exit("bad encoding"); in iconv_main() 73 if (CFG_TOYBOX_FREE) iconv_close(TT.ic); in iconv_main()
|
/external/clang/test/SemaTemplate/ |
D | temp_func_order.cpp | 61 void test_f4(int i, const int ic) { in test_f4() argument 63 float &fr1 = f4(ic); in test_f4() 72 void test_f5(int i, const int ic) { in test_f5() argument 82 void test_f6(int i, const int ic) { in test_f6() argument 84 float &fr = f6(ic, ic); in test_f6()
|
/external/fio/ |
D | iolog.c | 690 static void free_chunk(struct iolog_compress *ic) in free_chunk() argument 692 free(ic->buf); in free_chunk() 693 free(ic); in free_chunk() 746 static size_t inflate_chunk(struct iolog_compress *ic, int gz_hdr, FILE *f, in inflate_chunk() argument 752 (unsigned long) ic->len, ic->seq); in inflate_chunk() 754 if (ic->seq != iter->seq) { in inflate_chunk() 759 iter->seq = ic->seq; in inflate_chunk() 762 stream->avail_in = ic->len; in inflate_chunk() 763 stream->next_in = ic->buf; in inflate_chunk() 796 ret = (void *) stream->next_in - ic->buf; in inflate_chunk() [all …]
|
/external/icu/icu4c/source/layout/ |
D | IndicRearrangementProcessor.cpp | 73 le_int32 ia, ib, ic, id, ix, x; in doRearrangementAction() local 170 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); in doRearrangementAction() 184 glyphStorage.setCharIndex(firstGlyph, ic, success); in doRearrangementAction() 191 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); in doRearrangementAction() 206 glyphStorage.setCharIndex(firstGlyph + 1, ic, success); in doRearrangementAction() 214 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); in doRearrangementAction() 229 glyphStorage.setCharIndex(firstGlyph, ic, success); in doRearrangementAction() 239 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); in doRearrangementAction() 255 glyphStorage.setCharIndex(firstGlyph + 1, ic, success); in doRearrangementAction() 321 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); in doRearrangementAction() [all …]
|
D | IndicRearrangementProcessor2.cpp | 70 le_int32 ia, ib, ic, id, ix, x; in doRearrangementAction() local 167 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); in doRearrangementAction() 181 glyphStorage.setCharIndex(firstGlyph, ic, success); in doRearrangementAction() 188 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); in doRearrangementAction() 203 glyphStorage.setCharIndex(firstGlyph + 1, ic, success); in doRearrangementAction() 211 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); in doRearrangementAction() 226 glyphStorage.setCharIndex(firstGlyph, ic, success); in doRearrangementAction() 236 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); in doRearrangementAction() 252 glyphStorage.setCharIndex(firstGlyph + 1, ic, success); in doRearrangementAction() 318 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); in doRearrangementAction() [all …]
|
/external/webrtc/webrtc/base/ |
D | scopedptrcollection_unittest.cc | 61 InstanceCounter* ic = new InstanceCounter(&num_instances_); in TEST_F() local 62 collection_->PushBack(ic); in TEST_F() 64 collection_->Remove(ic); in TEST_F() 68 delete ic; in TEST_F()
|
/external/opencv3/modules/videoio/src/ |
D | cap_ffmpeg_impl.hpp | 250 AVFormatContext * ic; member 281 ic = 0; in init() 335 if( ic ) in close() 338 av_close_input_file(ic); in close() 340 avformat_close_input(&ic); in close() 343 ic = NULL; in close() 571 int err = avformat_open_input(&ic, _filename, NULL, NULL); in open() 573 int err = av_open_input_file(&ic, _filename, NULL, 0, NULL); in open() 583 avformat_find_stream_info(ic, NULL); in open() 585 av_find_stream_info(ic); in open() [all …]
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/ |
D | LineImpl.java | 53 final int ic = instructions.getCoveredCount(); in getInstance() local 56 if (im <= SINGLETON_INS_LIMIT && ic <= SINGLETON_INS_LIMIT in getInstance() 58 return SINGLETONS[im][ic][bm][bc]; in getInstance() 84 public Fix(final int im, final int ic, final int bm, final int bc) { in Fix() argument 85 super(CounterImpl.getInstance(im, ic), CounterImpl.getInstance(bm, in Fix()
|