Searched refs:ci (Results 1 - 25 of 351) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dvolatile-1.c7 // CHECK: @ci = common global [[CINT:.*]] zeroinitializer
8 volatile _Complex int ci; variable
29 // CHECK-NEXT: load volatile [[INT]], [[INT]]* getelementptr inbounds ([[CINT]], [[CINT]]* @ci, i32 0, i32 0), align 4
30 // CHECK-NEXT: load volatile [[INT]], [[INT]]* getelementptr inbounds ([[CINT]], [[CINT]]* @ci, i32 0, i32 1), align 4
32 (float)(ci);
33 // CHECK-NEXT: load volatile [[INT]], [[INT]]* getelementptr inbounds ([[CINT]], [[CINT]]* @ci, i32 0, i32 0), align 4
34 // CHECK-NEXT: load volatile [[INT]], [[INT]]* getelementptr inbounds ([[CINT]], [[CINT]]* @ci, i32 0, i32 1), align 4
35 (void)ci;
39 // CHECK-NEXT: [[R:%.*]] = load volatile [[INT]], [[INT]]* getelementptr inbounds ([[CINT]], [[CINT]]* @ci, i32 0, i32 0), align 4
40 // CHECK-NEXT: [[I:%.*]] = load volatile [[INT]], [[INT]]* getelementptr inbounds ([[CINT]], [[CINT]]* @ci, i3
97 ci+ci; local
198 __imag ci = __imag ci = __imag ci; local
[all...]
H A Dunsigned-promotion.c10 unsigned char ci, cj, ck; variable
98 ci = cj + ck;
120 ci = cj - ck;
142 ci = cj * ck;
/external/clang/test/CodeGenCXX/
H A Dvolatile-1.cpp7 // CHECK: @ci = global [[CINT:.*]] zeroinitializer
8 volatile _Complex int ci; variable
28 (float)(ci);
29 // CHECK-NEXT: load volatile [[INT]], [[INT]]* getelementptr inbounds ([[CINT]], [[CINT]]* @ci, i32 0, i32 0)
30 // CHECK-NEXT: load volatile [[INT]], [[INT]]* getelementptr inbounds ([[CINT]], [[CINT]]* @ci, i32 0, i32 1)
36 (void)ci;
39 (void)(ci=ci);
40 // CHECK-NEXT: [[R:%.*]] = load volatile [[INT]], [[INT]]* getelementptr inbounds ([[CINT]], [[CINT]]* @ci, i32 0, i32 0)
41 // CHECK-NEXT: [[I:%.*]] = load volatile [[INT]], [[INT]]* getelementptr inbounds ([[CINT]], [[CINT]]* @ci, i3
103 ci+ci; local
227 __imag ci = __imag ci = __imag ci; local
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DCharacterIteration.java30 * @param ci The character iterator
33 public static int next32(CharacterIterator ci) { argument
36 int c= ci.current();
38 c = ci.next();
40 c = ci.previous();
45 c = ci.next();
50 c = nextTrail32(ci, c);
56 ci.previous();
63 // The call site does an initial ci.next() and calls this function
66 // middle of a surrogate pair. ci
69 nextTrail32(CharacterIterator ci, int lead) argument
87 previous32(CharacterIterator ci) argument
106 current32(CharacterIterator ci) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCharacterIteration.java26 * @param ci The character iterator
29 public static int next32(CharacterIterator ci) { argument
32 int c= ci.current();
34 c = ci.next();
36 c = ci.previous();
41 c = ci.next();
46 c = nextTrail32(ci, c);
52 ci.previous();
59 // The call site does an initial ci.next() and calls this function
62 // middle of a surrogate pair. ci
65 nextTrail32(CharacterIterator ci, int lead) argument
83 previous32(CharacterIterator ci) argument
102 current32(CharacterIterator ci) argument
[all...]
/external/tremolo/Tremolo/
H A Dtreminfo.c125 codec_setup_info *ci = (codec_setup_info *)vi->codec_setup; local
126 return ci ? ci->blocksizes[zo] : -1;
136 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; local
139 if(ci){
141 if(ci->mode_param)_ogg_free(ci->mode_param);
143 if(ci->map_param){
144 for(i=0;i<ci->maps;i++) /* unpack does the range checking */
145 mapping_clear_info(ci
180 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; local
252 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; local
[all...]
H A Ddsp.c50 codec_setup_info *ci; local
53 ci=vi->codec_setup;
54 if(!ci)return -1;
69 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; local
76 v->work[i]=(ogg_int32_t *)_ogg_calloc(1,(ci->blocksizes[1]>>1)*
78 v->mdctright[i]=(ogg_int32_t *)_ogg_calloc(1,(ci->blocksizes[1]>>2)*
146 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; local
153 mdct_unroll_lap(ci->blocksizes[0],ci->blocksizes[1],
155 _vorbis_window(ci
172 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; local
210 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; local
[all...]
/external/libcxx/test/std/containers/sequences/list/
H A Ddb_iterators_9.pass.cpp35 C::const_iterator ci{};
40 try { ++ci; } catch (int) { ++lib_asserts; }
41 try { ci++; } catch (int) { ++lib_asserts; }
47 try { --ci; } catch (int) { ++lib_asserts; }
48 try { ci--; } catch (int) { ++lib_asserts; }
53 try { *ci; } catch (int) { ++lib_asserts; }
55 try { (void) ci->val; } catch (int) { ++lib_asserts; }
/external/javassist/src/main/javassist/bytecode/
H A DCodeAnalyzer.java38 CodeIterator ci = codeAttr.iterator();
39 int length = ci.getCodeLength();
49 visitBytecode(ci, stack, i);
71 private void visitBytecode(CodeIterator ci, int[] stack, int index) argument
75 ci.move(index);
79 while (ci.hasNext()) {
80 index = ci.next();
82 int op = ci.byteAt(index);
83 stackDepth = visitInst(op, ci, index, stackDepth);
87 if (processBranch(op, ci, inde
98 processBranch(int opcode, CodeIterator ci, int index, int codeLength, int[] stack, int stackDepth, int[] jsrDepth) argument
211 visitInst(int op, CodeIterator ci, int index, int stack) argument
258 getFieldSize(CodeIterator ci, int index) argument
[all...]
/external/autotest/client/tests/kvm/deps/
H A Drss.cpp286 client_info *ci = (client_info *)calloc(1, sizeof(client_info)); local
287 if (!ci)
290 ci->socket = socket;
293 sprintf(ci->addr_str, "%s:%d", address, addr.sin_port);
295 return ci;
330 client_info *ci = (client_info *)client_info_ptr; local
336 if (!ReadFile(ci->hChildOutputRead,
345 Send(ci->socket, buffer, bytes_read);
349 closesocket(ci->socket);
355 client_info *ci local
403 PrepAndLaunchRedirectedChild(client_info *ci, HANDLE hChildStdOut, HANDLE hChildStdErr) argument
451 SpawnSession(client_info *ci) argument
512 client_info *ci = Accept(ListenSocket); local
571 SendFileChunks(client_info *ci, const char *filename) argument
595 ReceiveFileChunks(client_info *ci, const char *filename) argument
631 TerminateTransfer(client_info *ci, const char *message) argument
642 TerminateWithError(client_info *ci, const char *message) argument
649 ReceiveThread(client_info *ci) argument
722 SendFiles(client_info *ci, const char *pattern) argument
811 SendThread(client_info *ci) argument
846 client_info *ci = (client_info *)client_info_ptr; local
880 client_info *ci = Accept(ListenSocket); local
[all...]
/external/libopus/src/
H A Dopus_compare.c73 int ci; local
74 for(ci=0;ci<_nchannels;ci++){
76 s=buf[2*(xi*_nchannels+ci)+1]<<8|buf[2*(xi*_nchannels+ci)];
78 samples[(nsamples+xi)*_nchannels+ci]=s;
113 int ci; local
116 for(ci=0;ci<_nchannel
179 int ci; local
[all...]
/external/valgrind/coregrind/
H A Dm_cache.c50 add_cache(VexCacheInfo *ci, VexCache cache) argument
54 if (ci->num_caches == num_allocated) {
56 ci->caches = VG_(realloc)("m_cache", ci->caches,
57 num_allocated * sizeof *ci->caches);
60 if (ci->num_levels < cache.level) ci->num_levels = cache.level;
61 ci->caches[ci->num_caches++] = cache;
67 add_cache(ci, \
113 Intel_cache_info(Int level, VexCacheInfo *ci) argument
411 AMD_cache_info(VexCacheInfo *ci) argument
484 get_caches_from_CPUID(VexCacheInfo *ci) argument
606 VexCacheInfo *ci = &vai->hwcache_info; local
673 write_cache_info(const VexCacheInfo *ci) argument
699 cache_info_is_sensible(const VexCacheInfo *ci) argument
763 VexCacheInfo *ci = &vai->hwcache_info; local
[all...]
/external/opencv3/3rdparty/libjpeg/
H A Djcdctmgr.c183 int ci, qtblno, i; local
189 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
190 ci++, compptr++) {
195 fdct->do_dct[ci] = jpeg_fdct_1x1;
199 fdct->do_dct[ci] = jpeg_fdct_2x2;
203 fdct->do_dct[ci] = jpeg_fdct_3x3;
207 fdct->do_dct[ci] = jpeg_fdct_4x4;
211 fdct->do_dct[ci] = jpeg_fdct_5x5;
215 fdct->do_dct[ci]
[all...]
/external/libvorbis/lib/
H A Dsynthesis.c30 codec_setup_info *ci= vi ? vi->codec_setup : 0; local
34 if (!vd || !b || !vi || !ci || !opb) {
55 if(!ci->mode_param[mode]){
59 vb->W=ci->mode_param[mode]->blockflag;
80 vb->pcmend=ci->blocksizes[vb->W];
86 type=ci->map_type[ci->mode_param[mode]->mapping];
88 return(_mapping_P[type]->inverse(vb,ci->map_param[ci->mode_param[mode]->
98 codec_setup_info *ci local
140 codec_setup_info *ci=vi->codec_setup; local
169 codec_setup_info *ci=vi->codec_setup; local
178 codec_setup_info *ci=vi->codec_setup; local
[all...]
H A Dinfo.c150 codec_setup_info *ci = vi->codec_setup; local
151 return ci ? ci->blocksizes[zo] : -1;
161 codec_setup_info *ci=vi->codec_setup; local
164 if(ci){
166 for(i=0;i<ci->modes;i++)
167 if(ci->mode_param[i])_ogg_free(ci->mode_param[i]);
169 for(i=0;i<ci->maps;i++) /* unpack does the range checking */
170 if(ci
210 codec_setup_info *ci=vi->codec_setup; local
273 codec_setup_info *ci=vi->codec_setup; local
438 codec_setup_info *ci=vi->codec_setup; local
492 codec_setup_info *ci=vi->codec_setup; local
[all...]
H A Dblock.c183 codec_setup_info *ci=vi->codec_setup; local
187 if(ci==NULL) return 1;
188 hs=ci->halfrate_flag;
194 b->modebits=ilog2(ci->modes);
203 mdct_init(b->transform[0][0],ci->blocksizes[0]>>hs);
204 mdct_init(b->transform[1][0],ci->blocksizes[1]>>hs);
207 b->window[0]=ilog2(ci->blocksizes[0])-6;
208 b->window[1]=ilog2(ci->blocksizes[1])-6;
213 drft_init(&b->fft_look[0],ci->blocksizes[0]);
214 drft_init(&b->fft_look[1],ci
318 codec_setup_info *ci=(vi?vi->codec_setup:NULL); local
461 codec_setup_info *ci=vi->codec_setup; local
526 codec_setup_info *ci=vi->codec_setup; local
686 codec_setup_info *ci; local
722 codec_setup_info *ci=vi->codec_setup; local
935 codec_setup_info *ci=vi->codec_setup; local
1010 codec_setup_info *ci=vi->codec_setup; local
[all...]
/external/libjpeg-turbo/
H A Djcprepct.c137 int numrows, ci; local
157 for (ci = 0; ci < cinfo->num_components; ci++) {
158 expand_bottom_edge(prep->color_buf[ci], cinfo->image_width,
176 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
177 ci++, compptr++) {
178 expand_bottom_edge(output_buf[ci],
204 int numrows, ci; local
273 int ci, i; local
320 int ci; local
[all...]
H A Djdmainct.h53 int ci, i, rgroup; local
58 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
59 ci++, compptr++) {
62 xbuf0 = main_ptr->xbuffer[0][ci];
63 xbuf1 = main_ptr->xbuffer[1][ci];
/external/bison/src/
H A DAnnotationList.c55 * - <tt>0 <= ci < self->inadequacyNode->contributionCount</tt>.
57 * - \c result = true iff contribution \c ci in \c self represents an
62 ContributionIndex ci)
64 aver (0 <= ci && ci < self->inadequacyNode->contributionCount);
65 return self->contributions[ci] == NULL;
105 ContributionIndex ci; local
111 for (ci = 0;
112 cmp == 0 && ci < self->inadequacyNode->contributionCount;
113 ++ci)
61 AnnotationList__isContributionAlways(AnnotationList const *self, ContributionIndex ci) argument
240 ContributionIndex ci; local
462 ContributionIndex ci = 0; local
591 ContributionIndex ci; local
639 ContributionIndex ci; local
672 AnnotationList__stateMakesContribution(AnnotationList const *self, size_t nitems, ContributionIndex ci, bitset *lookaheads) argument
709 ContributionIndex ci; local
795 ContributionIndex ci; local
[all...]
/external/webrtc/webrtc/modules/audio_coding/acm2/
H A Daudio_coding_module.cc49 auto ci = acm2::RentACodec::CodecInstById(*codec_id);
50 if (!ci)
52 *codec = *ci;
60 rtc::Optional<CodecInst> ci = acm2::RentACodec::CodecInstByParams( local
62 if (ci) {
63 *codec = *ci;
80 rtc::Optional<acm2::RentACodec::CodecId> ci = local
83 if (!ci)
85 rtc::Optional<int> i = acm2::RentACodec::CodecIndexFromId(*ci);
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp3-0x.cpp43 void test_C(C<int> ci) { argument
44 int &ir = ci.g1();
45 float &fr = ci.g2();
46 int &ir2 = ci.g3();
47 float &fr2 = ci.g4();
48 int &ir3 = ci.g5();
49 float &fr3 = ci.g6();
50 int &ir4 = ci.g7();
51 float &fr4 = ci.g8();
52 static_assert(!noexcept(ci
[all...]
/external/opencv3/modules/imgproc/src/
H A Dgrabcut.cpp64 double operator()( int ci, const Vec3d color ) const;
68 void addSample( int ci, const Vec3d color );
72 void calcInverseCovAndDeterm( int ci );
104 for( int ci = 0; ci < componentsCount; ci++ )
105 if( coefs[ci] > 0 )
106 calcInverseCovAndDeterm( ci );
112 for( int ci = 0; ci < componentsCoun
117 operator ()( int ci, const Vec3d color ) const argument
164 addSample( int ci, const Vec3d color ) argument
[all...]
/external/jetty/src/java/org/eclipse/jetty/util/
H A DB64Code.java114 int ci=0;
123 c[ci++]=__rfc1421alphabet[(b0>>>2)&0x3f];
124 c[ci++]=__rfc1421alphabet[(b0<<4)&0x3f|(b1>>>4)&0x0f];
125 c[ci++]=__rfc1421alphabet[(b1<<2)&0x3f|(b2>>>6)&0x03];
126 c[ci++]=__rfc1421alphabet[b2&077];
136 c[ci++]=__rfc1421alphabet[(b0>>>2)&0x3f];
137 c[ci++]=__rfc1421alphabet[(b0<<4)&0x3f|(b1>>>4)&0x0f];
138 c[ci++]=__rfc1421alphabet[(b1<<2)&0x3f];
139 c[ci++]=__pad;
144 c[ci
[all...]
/external/clang/test/SemaCXX/
H A Dambig-user-defined-conversions.cpp16 void func(const int ci, const char cc); // expected-note {{candidate function}}
17 void func(const char ci, const B b); // expected-note {{candidate function}}
18 void func(const B b, const int ci); // expected-note {{candidate function}}
28 void func2(const int ci); // expected-note {{candidate function}}
/external/testng/src/main/java/org/testng/remote/
H A DRemoteWorker.java24 protected SuiteRunner sendSuite(ConnectionInfo ci, XmlSuite suite) argument
28 + ci.getSocket().getInetAddress().getCanonicalHostName() + ":"
29 + ci.getSocket().getRemoteSocketAddress());
30 ci.getOos().writeObject(suite);
31 ci.getOos().flush();
32 SuiteRunner result = (SuiteRunner) ci.getOis().readObject();

Completed in 999 milliseconds

1234567891011>>