Home
last modified time | relevance | path

Searched refs:ci (Results 1 – 25 of 464) sorted by relevance

12345678910>>...19

/external/tremolo/Tremolo/
Dtreminfo.c125 codec_setup_info *ci = (codec_setup_info *)vi->codec_setup; in vorbis_info_blocksize() local
126 return ci ? ci->blocksizes[zo] : -1; in vorbis_info_blocksize()
136 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; in vorbis_info_clear() local
139 if(ci){ in vorbis_info_clear()
141 if(ci->mode_param)_ogg_free(ci->mode_param); in vorbis_info_clear()
143 if(ci->map_param){ in vorbis_info_clear()
144 for(i=0;i<ci->maps;i++) /* unpack does the range checking */ in vorbis_info_clear()
145 mapping_clear_info(ci->map_param+i); in vorbis_info_clear()
146 _ogg_free(ci->map_param); in vorbis_info_clear()
149 if(ci->floor_param){ in vorbis_info_clear()
[all …]
Ddsp.c50 codec_setup_info *ci; in vorbis_dsp_restart() local
53 ci=vi->codec_setup; in vorbis_dsp_restart()
54 if(!ci)return -1; in vorbis_dsp_restart()
69 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; in vorbis_dsp_init() local
76 v->work[i]=(ogg_int32_t *)_ogg_calloc(1,(ci->blocksizes[1]>>1)* in vorbis_dsp_init()
78 v->mdctright[i]=(ogg_int32_t *)_ogg_calloc(1,(ci->blocksizes[1]>>2)* in vorbis_dsp_init()
146 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; in vorbis_dsp_pcmout() local
153 mdct_unroll_lap(ci->blocksizes[0],ci->blocksizes[1], in vorbis_dsp_pcmout()
155 _vorbis_window(ci->blocksizes[0]>>1), in vorbis_dsp_pcmout()
156 _vorbis_window(ci->blocksizes[1]>>1), in vorbis_dsp_pcmout()
[all …]
/external/autotest/client/tests/kvm/deps/
Drss.cpp286 client_info *ci = (client_info *)calloc(1, sizeof(client_info)); in Accept() local
287 if (!ci) in Accept()
290 ci->socket = socket; in Accept()
293 sprintf(ci->addr_str, "%s:%d", address, addr.sin_port); in Accept()
295 return ci; in Accept()
330 client_info *ci = (client_info *)client_info_ptr; in ChildToSocket() local
336 if (!ReadFile(ci->hChildOutputRead, in ChildToSocket()
345 Send(ci->socket, buffer, bytes_read); in ChildToSocket()
349 closesocket(ci->socket); in ChildToSocket()
355 client_info *ci = (client_info *)client_info_ptr; in SocketToChild() local
[all …]
/external/clang/test/CodeGenCXX/
Dvolatile-1.cpp8 volatile _Complex int ci; variable
28 (float)(ci); in test()
36 (void)ci; in test()
39 (void)(ci=ci); in test()
49 ci+=ci; in test()
61 (ci += ci) + ci; in test()
103 ci+ci; in test()
113 +ci; in test()
193 ci; in test()
197 (int)ci; in test()
[all …]
/external/clang/test/CodeGen/
Dvolatile-1.c8 volatile _Complex int ci; variable
32 (float)(ci); in test()
35 (void)ci; in test()
43 (void)(ci=ci); in test()
56 ci+=ci; in test()
71 (ci += ci) + ci; in test()
97 ci+ci; in test()
103 +ci; in test()
171 ci; in test()
175 (int)ci; in test()
[all …]
/external/libvorbis/lib/
Dinfo.c150 codec_setup_info *ci = vi->codec_setup; in vorbis_info_blocksize() local
151 return ci ? ci->blocksizes[zo] : -1; in vorbis_info_blocksize()
161 codec_setup_info *ci=vi->codec_setup; in vorbis_info_clear() local
164 if(ci){ in vorbis_info_clear()
166 for(i=0;i<ci->modes;i++) in vorbis_info_clear()
167 if(ci->mode_param[i])_ogg_free(ci->mode_param[i]); in vorbis_info_clear()
169 for(i=0;i<ci->maps;i++) /* unpack does the range checking */ in vorbis_info_clear()
170 if(ci->map_param[i]) /* this may be cleaning up an aborted in vorbis_info_clear()
173 _mapping_P[ci->map_type[i]]->free_info(ci->map_param[i]); in vorbis_info_clear()
175 for(i=0;i<ci->floors;i++) /* unpack does the range checking */ in vorbis_info_clear()
[all …]
Dblock.c183 codec_setup_info *ci=vi->codec_setup; in _vds_shared_init() local
187 if(ci==NULL) return 1; in _vds_shared_init()
188 hs=ci->halfrate_flag; in _vds_shared_init()
194 b->modebits=ilog2(ci->modes); in _vds_shared_init()
203 mdct_init(b->transform[0][0],ci->blocksizes[0]>>hs); in _vds_shared_init()
204 mdct_init(b->transform[1][0],ci->blocksizes[1]>>hs); in _vds_shared_init()
207 b->window[0]=ilog2(ci->blocksizes[0])-6; in _vds_shared_init()
208 b->window[1]=ilog2(ci->blocksizes[1])-6; in _vds_shared_init()
213 drft_init(&b->fft_look[0],ci->blocksizes[0]); in _vds_shared_init()
214 drft_init(&b->fft_look[1],ci->blocksizes[1]); in _vds_shared_init()
[all …]
Dvorbisenc.c196 codec_setup_info *ci=vi->codec_setup; in vorbis_encode_floor_setup() local
209 f->class_book[i]+=ci->books; in vorbis_encode_floor_setup()
212 if(f->class_subbook[i][k]>=0)f->class_subbook[i][k]+=ci->books; in vorbis_encode_floor_setup()
217 ci->book_param[ci->books++]=(static_codebook *)books[x[is]][i]; in vorbis_encode_floor_setup()
221 ci->floor_type[ci->floors]=1; in vorbis_encode_floor_setup()
222 ci->floor_param[ci->floors]=f; in vorbis_encode_floor_setup()
223 ci->floors++; in vorbis_encode_floor_setup()
233 codec_setup_info *ci=vi->codec_setup; in vorbis_encode_global_psych_setup() local
234 vorbis_info_psy_global *g=&ci->psy_g_param; in vorbis_encode_global_psych_setup()
251 g->ampmax_att_per_sec=ci->hi.amplitude_track_dBpersec; in vorbis_encode_global_psych_setup()
[all …]
/external/valgrind/coregrind/
Dm_cache.c50 add_cache(VexCacheInfo *ci, VexCache cache) in add_cache() argument
54 if (ci->num_caches == num_allocated) { in add_cache()
56 ci->caches = VG_(realloc)("m_cache", ci->caches, in add_cache()
57 num_allocated * sizeof *ci->caches); in add_cache()
60 if (ci->num_levels < cache.level) ci->num_levels = cache.level; in add_cache()
61 ci->caches[ci->num_caches++] = cache; in add_cache()
67 add_cache(ci, \
73 add_cache(ci, \
79 add_cache(ci, \
88 add_cache(ci, c); \
[all …]
/external/opencv3/modules/imgproc/src/
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++ ) in GMM() local
105 if( coefs[ci] > 0 ) in GMM()
106 calcInverseCovAndDeterm( ci ); in GMM()
112 for( int ci = 0; ci < componentsCount; ci++ ) in operator ()() local
113 res += coefs[ci] * (*this)(ci, color ); in operator ()()
117 double GMM::operator()( int ci, const Vec3d color ) const in operator ()() argument
120 if( coefs[ci] > 0 ) in operator ()()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DCharacterIteration.java29 public static int next32(CharacterIterator ci) { in next32() argument
32 int c= ci.current(); in next32()
34 c = ci.next(); in next32()
36 c = ci.previous(); in next32()
41 c = ci.next(); in next32()
46 c = nextTrail32(ci, c); in next32()
52 ci.previous(); in next32()
65 public static int nextTrail32(CharacterIterator ci, int lead) { in nextTrail32() argument
66 if (lead == CharacterIterator.DONE && ci.getIndex() >= ci.getEndIndex()) { in nextTrail32()
71 char cTrail = ci.next(); in nextTrail32()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DCharacterIteration.java33 public static int next32(CharacterIterator ci) { in next32() argument
36 int c= ci.current(); in next32()
38 c = ci.next(); in next32()
40 c = ci.previous(); in next32()
45 c = ci.next(); in next32()
50 c = nextTrail32(ci, c); in next32()
56 ci.previous(); in next32()
69 public static int nextTrail32(CharacterIterator ci, int lead) { in nextTrail32() argument
70 if (lead == CharacterIterator.DONE && ci.getIndex() >= ci.getEndIndex()) { in nextTrail32()
75 char cTrail = ci.next(); in nextTrail32()
[all …]
/external/libopus/src/
Dopus_compare.c73 int ci; in read_pcm16() local
74 for(ci=0;ci<_nchannels;ci++){ in read_pcm16()
76 s=buf[2*(xi*_nchannels+ci)+1]<<8|buf[2*(xi*_nchannels+ci)]; in read_pcm16()
78 samples[(nsamples+xi)*_nchannels+ci]=s; in read_pcm16()
113 int ci; in band_energy() local
116 for(ci=0;ci<_nchannels;ci++){ in band_energy()
118 x[ci*_window_sz+xk]=window[xk]*_in[(xi*_step+xk)*_nchannels+ci]; in band_energy()
124 for(ci=0;ci<_nchannels;ci++){ in band_energy()
131 re+=c[ti]*x[ci*_window_sz+xk]; in band_energy()
132 im-=s[ti]*x[ci*_window_sz+xk]; in band_energy()
[all …]
/external/zlib/src/contrib/minizip/
Dzip.c171 curfile64_info ci; /* info on the file curretly writing */ member
876 ziinit.ci.stream_initialised = 0; in zipOpen3()
969 if(zi->ci.zip64) in Write_LocalFileHeader()
976 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.flag,2); in Write_LocalFileHeader()
979 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.method,2); in Write_LocalFileHeader()
982 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.dosDate,4); in Write_LocalFileHeader()
989 if(zi->ci.zip64) in Write_LocalFileHeader()
996 if(zi->ci.zip64) in Write_LocalFileHeader()
1005 if(zi->ci.zip64) in Write_LocalFileHeader()
1026 if ((err==ZIP_OK) && (zi->ci.zip64)) in Write_LocalFileHeader()
[all …]
/external/bison/src/
DAnnotationList.c62 ContributionIndex ci) in AnnotationList__isContributionAlways() argument
64 aver (0 <= ci && ci < self->inadequacyNode->contributionCount); in AnnotationList__isContributionAlways()
65 return self->contributions[ci] == NULL; in AnnotationList__isContributionAlways()
105 ContributionIndex ci; in AnnotationList__insertInto() local
111 for (ci = 0; in AnnotationList__insertInto()
112 cmp == 0 && ci < self->inadequacyNode->contributionCount; in AnnotationList__insertInto()
113 ++ci) in AnnotationList__insertInto()
115 if (AnnotationList__isContributionAlways (self, ci)) in AnnotationList__insertInto()
117 if (!AnnotationList__isContributionAlways (*node, ci)) in AnnotationList__insertInto()
120 else if (AnnotationList__isContributionAlways (*node, ci)) in AnnotationList__insertInto()
[all …]
/external/llvm/utils/llvm-build/llvmbuild/
Dmain.py117 for ci in self.component_infos:
118 existing = self.component_info_map.get(ci.name)
122 ci.name, ci.subpath, existing.subpath))
123 self.component_info_map[ci.name] = ci
138 def visit_component_info(ci, current_stack, current_set): argument
140 if ci in current_set:
143 '%r (%s)' % (ci.name, relation)
144 for relation,ci in current_stack)
146 ci.name, cycle_description, ci.name))
149 if ci not in components_to_visit:
[all …]
/external/javassist/src/main/javassist/bytecode/
DCodeAnalyzer.java38 CodeIterator ci = codeAttr.iterator(); in computeMaxStack() local
39 int length = ci.getCodeLength(); in computeMaxStack()
49 visitBytecode(ci, stack, i); in computeMaxStack()
71 private void visitBytecode(CodeIterator ci, int[] stack, int index) in visitBytecode() argument
75 ci.move(index); in visitBytecode()
79 while (ci.hasNext()) { in visitBytecode()
80 index = ci.next(); in visitBytecode()
82 int op = ci.byteAt(index); in visitBytecode()
83 stackDepth = visitInst(op, ci, index, stackDepth); in visitBytecode()
87 if (processBranch(op, ci, index, codeLength, stack, stackDepth, jsrDepth)) in visitBytecode()
[all …]
DCodeAttribute.java471 CodeIterator ci = iterator(); in insertLocalVar() local
472 while (ci.hasNext()) in insertLocalVar()
473 shiftIndex(ci, where, size); in insertLocalVar()
485 private static void shiftIndex(CodeIterator ci, int lessThan, int delta) throws BadBytecode { in shiftIndex() argument
486 int index = ci.next(); in shiftIndex()
487 int opcode = ci.byteAt(index); in shiftIndex()
493 shiftIndex8(ci, index, opcode, lessThan, delta); in shiftIndex()
497 shiftIndex0(ci, index, opcode, lessThan, delta, ILOAD_0, ILOAD); in shiftIndex()
503 shiftIndex8(ci, index, opcode, lessThan, delta); in shiftIndex()
507 shiftIndex0(ci, index, opcode, lessThan, delta, ISTORE_0, ISTORE); in shiftIndex()
[all …]
/external/opencv3/3rdparty/libjpeg/
Djcdctmgr.c183 int ci, qtblno, i; in start_pass_fdctmgr() local
189 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; in start_pass_fdctmgr()
190 ci++, compptr++) { in start_pass_fdctmgr()
195 fdct->do_dct[ci] = jpeg_fdct_1x1; in start_pass_fdctmgr()
199 fdct->do_dct[ci] = jpeg_fdct_2x2; in start_pass_fdctmgr()
203 fdct->do_dct[ci] = jpeg_fdct_3x3; in start_pass_fdctmgr()
207 fdct->do_dct[ci] = jpeg_fdct_4x4; in start_pass_fdctmgr()
211 fdct->do_dct[ci] = jpeg_fdct_5x5; in start_pass_fdctmgr()
215 fdct->do_dct[ci] = jpeg_fdct_6x6; in start_pass_fdctmgr()
219 fdct->do_dct[ci] = jpeg_fdct_7x7; in start_pass_fdctmgr()
[all …]
Djcprepct.c135 int numrows, ci; in pre_process_data() local
155 for (ci = 0; ci < cinfo->num_components; ci++) { in pre_process_data()
156 expand_bottom_edge(prep->color_buf[ci], cinfo->image_width, in pre_process_data()
174 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; in pre_process_data()
175 ci++, compptr++) { in pre_process_data()
178 expand_bottom_edge(output_buf[ci], in pre_process_data()
204 int numrows, ci; in pre_process_context() local
220 for (ci = 0; ci < cinfo->num_components; ci++) { in pre_process_context()
223 jcopy_sample_rows(prep->color_buf[ci], 0, in pre_process_context()
224 prep->color_buf[ci], -row, in pre_process_context()
[all …]
/external/pdfium/third_party/libjpeg/
Dfpdfapi_jcmaster.c49 int ci; in initial_setup() local
82 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; in initial_setup()
83 ci++, compptr++) { in initial_setup()
94 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; in initial_setup()
95 ci++, compptr++) { in initial_setup()
97 compptr->component_index = ci; in initial_setup()
136 int scanno, ncomps, ci, coefi, thisi; in validate_script() local
156 for (ci = 0; ci < cinfo->num_components; ci++) in validate_script()
164 for (ci = 0; ci < cinfo->num_components; ci++) in validate_script()
165 component_sent[ci] = FALSE; in validate_script()
[all …]
Dfpdfapi_jcprepct.c135 int numrows, ci; in pre_process_data() local
155 for (ci = 0; ci < cinfo->num_components; ci++) { in pre_process_data()
156 expand_bottom_edge(prep->color_buf[ci], cinfo->image_width, in pre_process_data()
174 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; in pre_process_data()
175 ci++, compptr++) { in pre_process_data()
176 expand_bottom_edge(output_buf[ci], in pre_process_data()
202 int numrows, ci; in pre_process_context() local
218 for (ci = 0; ci < cinfo->num_components; ci++) { in pre_process_context()
221 jcopy_sample_rows(prep->color_buf[ci], 0, in pre_process_context()
222 prep->color_buf[ci], -row, in pre_process_context()
[all …]
/external/libjpeg-turbo/
Djcmaster.c73 int ci; in initial_setup() local
113 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; in initial_setup()
114 ci++, compptr++) { in initial_setup()
125 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; in initial_setup()
126 ci++, compptr++) { in initial_setup()
128 compptr->component_index = ci; in initial_setup()
171 int scanno, ncomps, ci, coefi, thisi; in validate_script() local
191 for (ci = 0; ci < cinfo->num_components; ci++) in validate_script()
199 for (ci = 0; ci < cinfo->num_components; ci++) in validate_script()
200 component_sent[ci] = FALSE; in validate_script()
[all …]
Djcprepct.c137 int numrows, ci; in pre_process_data() local
157 for (ci = 0; ci < cinfo->num_components; ci++) { in pre_process_data()
158 expand_bottom_edge(prep->color_buf[ci], cinfo->image_width, in pre_process_data()
176 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; in pre_process_data()
177 ci++, compptr++) { in pre_process_data()
178 expand_bottom_edge(output_buf[ci], in pre_process_data()
204 int numrows, ci; in pre_process_context() local
220 for (ci = 0; ci < cinfo->num_components; ci++) { in pre_process_context()
223 jcopy_sample_rows(prep->color_buf[ci], 0, in pre_process_context()
224 prep->color_buf[ci], -row, in pre_process_context()
[all …]
/external/jetty/src/java/org/eclipse/jetty/util/
DB64Code.java114 int ci=0; in encode() local
123 c[ci++]=__rfc1421alphabet[(b0>>>2)&0x3f]; in encode()
124 c[ci++]=__rfc1421alphabet[(b0<<4)&0x3f|(b1>>>4)&0x0f]; in encode()
125 c[ci++]=__rfc1421alphabet[(b1<<2)&0x3f|(b2>>>6)&0x03]; in encode()
126 c[ci++]=__rfc1421alphabet[b2&077]; in encode()
136 c[ci++]=__rfc1421alphabet[(b0>>>2)&0x3f]; in encode()
137 c[ci++]=__rfc1421alphabet[(b0<<4)&0x3f|(b1>>>4)&0x0f]; in encode()
138 c[ci++]=__rfc1421alphabet[(b1<<2)&0x3f]; in encode()
139 c[ci++]=__pad; in encode()
144 c[ci++]=__rfc1421alphabet[(b0>>>2)&0x3f]; in encode()
[all …]

12345678910>>...19