Searched refs:ic (Results 1 - 25 of 152) sorted by relevance

1234567

/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp7.cpp13 void test_capture_constness(int i, const int ic) { argument
14 (void)[i,ic] ()->void {
16 float &fr2 = check_const_int(ic);
21 float &fr2 = check_const_int(ic);
24 (void)[i,ic] () mutable ->void {
26 float &fr = check_const_int(ic);
31 float &fr = check_const_int(ic);
34 (void)[&i,&ic] ()->void {
36 float &fr = check_const_int(ic);
41 float &fr = check_const_int(ic);
[all...]
/external/clang/test/CodeGen/
H A D2002-02-13-UnnamedLocal.c14 int foo(foostruct ic);
/external/libcxx/test/algorithms/alg.nonmodifying/alg.find.first.of/
H A Dfind_first_of.pass.cpp33 int ic[] = {7}; local
36 forward_iterator<const int*>(ic),
37 forward_iterator<const int*>(ic + 1)) ==
41 forward_iterator<const int*>(ic),
42 forward_iterator<const int*>(ic)) ==
46 forward_iterator<const int*>(ic),
47 forward_iterator<const int*>(ic+1)) ==
H A Dfind_first_of_pred.pass.cpp36 int ic[] = {7}; local
39 forward_iterator<const int*>(ic),
40 forward_iterator<const int*>(ic + 1),
45 forward_iterator<const int*>(ic),
46 forward_iterator<const int*>(ic),
51 forward_iterator<const int*>(ic),
52 forward_iterator<const int*>(ic+1),
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_atom_pixeltransfer.c147 GLuint ic = 0; local
161 _mesa_init_instructions(inst + ic, 1);
162 inst[ic].Opcode = OPCODE_TEX;
163 inst[ic].DstReg.File = PROGRAM_TEMPORARY;
164 inst[ic].DstReg.Index = colorTemp;
165 inst[ic].SrcReg[0].File = PROGRAM_INPUT;
166 inst[ic].SrcReg[0].Index = FRAG_ATTRIB_TEX0;
167 inst[ic].TexSrcUnit = 0;
168 inst[ic].TexSrcTarget = TEXTURE_2D_INDEX;
169 ic
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_pixeltransfer.c147 GLuint ic = 0; local
161 _mesa_init_instructions(inst + ic, 1);
162 inst[ic].Opcode = OPCODE_TEX;
163 inst[ic].DstReg.File = PROGRAM_TEMPORARY;
164 inst[ic].DstReg.Index = colorTemp;
165 inst[ic].SrcReg[0].File = PROGRAM_INPUT;
166 inst[ic].SrcReg[0].Index = FRAG_ATTRIB_TEX0;
167 inst[ic].TexSrcUnit = 0;
168 inst[ic].TexSrcTarget = TEXTURE_2D_INDEX;
169 ic
[all...]
/external/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/
H A Dreverse.pass.cpp39 int ic[] = {0, 1, 2}; local
40 const unsigned sc = sizeof(ic)/sizeof(ic[0]);
41 std::reverse(Iter(ic), Iter(ic+sc));
42 assert(ic[0] == 2);
43 assert(ic[1] == 1);
44 assert(ic[2] == 0);
H A Dreverse_copy.pass.cpp42 const int ic[] = {0, 1, 2}; local
43 const unsigned sc = sizeof(ic)/sizeof(ic[0]);
45 r = std::reverse_copy(InIter(ic), InIter(ic+sc), OutIter(jc));
/external/valgrind/main/none/tests/s390x/
H A Dinsert.stdout.exp0 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 800000000000000
[all...]
/external/kernel-headers/original/uapi/linux/mmc/
H A Dioctl.h46 #define mmc_ioc_cmd_set_data(ic, ptr) ic.data_ptr = (__u64)(unsigned long) ptr
/external/clang/test/SemaTemplate/
H A Dtemp_func_order.cpp61 void test_f4(int i, const int ic) { argument
63 float &fr1 = f4(ic);
72 void test_f5(int i, const int ic) { argument
82 void test_f6(int i, const int ic) { argument
84 float &fr = f6(ic, ic);
/external/libcxx/test/algorithms/alg.nonmodifying/alg.search/
H A Dsearch_n.pass.cpp59 int ic[] = {0, 0, 0}; local
60 const unsigned sc = sizeof(ic)/sizeof(ic[0]);
61 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0) == Iter(ic));
62 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0) == Iter(ic));
63 assert(std::search_n(Iter(ic), Ite
[all...]
H A Dsearch_n_pred.pass.cpp124 int ic[] = {0, 0, 0}; local
125 const unsigned sc = sizeof(ic)/sizeof(ic[0]);
126 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0, count_equal()) == Iter(ic));
129 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0, count_equal()) == Iter(ic));
132 assert(std::search_n(Iter(ic), Ite
[all...]
/external/libcxx/test/algorithms/alg.sorting/alg.merge/
H A Dmerge.pass.cpp32 int* ic = new int[2*N]; local
38 InIter2(ib), InIter2(ib+N), OutIter(ic));
39 assert(base(r) == ic+2*N);
40 assert(ic[0] == 0);
41 assert(ic[2*N-1] == 2*N-1);
42 assert(std::is_sorted(ic, ic+2*N));
43 delete [] ic;
51 int* ic = new int[2*N]; local
53 ic[
[all...]
H A Dmerge_comp.pass.cpp35 int* ic = new int[2*N]; local
43 InIter2(ib), InIter2(ib+N), OutIter(ic), std::greater<int>());
44 assert(base(r) == ic+2*N);
45 assert(ic[0] == 2*N-1);
46 assert(ic[2*N-1] == 0);
47 assert(std::is_sorted(ic, ic+2*N, std::greater<int>()));
48 delete [] ic;
56 int* ic = new int[2*N]; local
58 ic[
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dscopedptrcollection_unittest.cc61 InstanceCounter* ic = new InstanceCounter(&num_instances_); local
62 collection_->PushBack(ic);
64 collection_->Remove(ic);
68 delete ic;
/external/libcxx/test/algorithms/alg.modifying.operations/alg.rotate/
H A Drotate.pass.cpp55 int ic[] = {0, 1, 2}; local
56 const unsigned sc = sizeof(ic)/sizeof(ic[0]);
57 r = std::rotate(Iter(ic), Iter(ic), Iter(ic+sc));
58 assert(base(r) == ic+sc);
59 assert(ic[0] == 0);
60 assert(ic[1] == 1);
61 assert(ic[
253 std::unique_ptr<int> ic[3]; local
[all...]
/external/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
H A Dunique.pass.cpp43 int ic[] = {0, 0}; local
44 const unsigned sc = sizeof(ic)/sizeof(ic[0]);
45 r = std::unique(Iter(ic), Iter(ic+sc));
46 assert(base(r) == ic + 1);
47 assert(ic[0] == 0);
116 Ptr ic[2]; local
117 const unsigned sc = sizeof(ic)/sizeof(ic[
[all...]
/external/libcxx/test/numerics/complex.number/complex.member.ops/
H A Ddivide_equal_complex.pass.cpp35 std::complex<int> ic (1,1);
36 c3 /= ic;
H A Dminus_equal_complex.pass.cpp35 std::complex<int> ic (1,1);
36 c3 -= ic;
H A Dplus_equal_complex.pass.cpp35 std::complex<int> ic (1,1);
36 c3 += ic;
H A Dtimes_equal_complex.pass.cpp35 std::complex<int> ic (1,1);
36 c3 *= ic;
/external/llvm/test/Bindings/Ocaml/
H A Dbitwriter.ml18 let ic = open_in_bin name in
19 let len = in_channel_length ic in
22 test ((input ic buf 0 len) = len);
24 close_in ic;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftcid.c69 FT_Bool ic = 0; local
80 error = service->get_is_cid( face, &ic);
84 *is_cid = ic;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDevToolsAgentImpl.cpp262 InspectorController* ic = inspectorController(); local
263 ic->disconnectFrontend();
275 if (InspectorController* ic = inspectorController())
276 ic->didBeginFrame(frameId);
281 if (InspectorController* ic = inspectorController())
282 ic->didCancelFrame();
288 if (InspectorController* ic = inspectorController())
289 ic->willComposite();
295 if (InspectorController* ic = inspectorController())
296 ic
340 InspectorController* ic = inspectorController(); local
551 InspectorController* ic = inspectorController(); local
601 InspectorController* ic = inspectorController(); local
607 InspectorController* ic = inspectorController(); local
[all...]

Completed in 406 milliseconds

1234567