Searched defs:iter (Results 551 - 575 of 1292) sorted by relevance

<<21222324252627282930>>

/external/chromium_org/third_party/libvpx/source/libvpx/examples/
H A Dtwopass_encoder.c75 vpx_codec_iter_t iter = NULL; local
82 while ((pkt = vpx_codec_get_cx_data(ctx, &iter)) != NULL) {
105 vpx_codec_iter_t iter = NULL; local
112 while ((pkt = vpx_codec_get_cx_data(ctx, &iter)) != NULL) {
H A Dvpx_temporal_svc_encoder.c608 vpx_codec_iter_t iter = NULL; local
633 while ( (pkt = vpx_codec_get_cx_data(&codec, &iter)) ) {
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dsvc_test.cc88 vpx_codec_iter_t iter = NULL; local
91 while ((cx_pkt = vpx_codec_get_cx_data(&codec_, &iter)) != NULL) {
136 vpx_codec_iter_t iter = NULL; local
139 while ((cx_pkt = vpx_codec_get_cx_data(&codec_, &iter)) != NULL) {
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/src/
H A Dvpx_encoder.c255 vpx_codec_iter_t *iter) {
259 if (!iter)
266 pkt = ctx->iface->enc.get_cx_data(get_alg_priv(ctx), iter);
386 vpx_codec_iter_t *iter) {
389 if (!(*iter)) {
390 *iter = list->pkts;
393 pkt = (const vpx_codec_cx_pkt_t *)*iter;
396 *iter = pkt + 1;
254 vpx_codec_get_cx_data(vpx_codec_ctx_t *ctx, vpx_codec_iter_t *iter) argument
385 vpx_codec_pkt_list_get(struct vpx_codec_pkt_list *list, vpx_codec_iter_t *iter) argument
/external/chromium_org/third_party/libwebp/webp/
H A Ddemux.h24 WebPIterator iter;
25 if (WebPDemuxGetFrame(demux, 1, &iter)) {
27 // ... (Consume 'iter'; e.g. Decode 'iter.fragment' with WebPDecode(),
30 } while (WebPDemuxNextFrame(&iter));
31 WebPDemuxReleaseIterator(&iter);
155 // 'iter->fragment' points to the first fragment on return from this function.
160 // NOTE: 'dmux' must persist for the lifetime of 'iter'.
162 const WebPDemuxer* dmux, int frame_number, WebPIterator* iter);
164 // Sets 'iter
167 WEBP_EXTERN(int) WebPDemuxNextFrame(WebPIterator* iter); variable
168 WEBP_EXTERN(int) WebPDemuxPrevFrame(WebPIterator* iter); variable
178 WEBP_EXTERN(void) WebPDemuxReleaseIterator(WebPIterator* iter); variable
210 WEBP_EXTERN(int) WebPDemuxNextChunk(WebPChunkIterator* iter); variable
211 WEBP_EXTERN(int) WebPDemuxPrevChunk(WebPChunkIterator* iter); variable
216 WEBP_EXTERN(void) WebPDemuxReleaseChunkIterator(WebPChunkIterator* iter); variable
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
H A Dcso_cache.c178 struct cso_hash_iter iter = cso_hash_first_node(hash); local
179 void *cso = cso_hash_take(hash, cso_hash_iter_key(iter));
211 struct cso_hash_iter iter = cso_hash_find(hash, hash_key); local
212 while (!cso_hash_iter_is_null(iter)) {
213 void *iter_data = cso_hash_iter_data(iter);
219 iter = cso_hash_iter_next(iter);
229 struct cso_hash_iter iter = cso_find_state(sc, hash_key, type); local
230 while (!cso_hash_iter_is_null(iter)) {
231 void *iter_data = cso_hash_iter_data(iter);
267 struct cso_hash_iter iter; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_dump.c44 struct tgsi_iterate_context iter; member in struct:dump_ctx
207 dump_imm_data(struct tgsi_iterate_context *iter, argument
212 struct dump_ctx *ctx = (struct dump_ctx *)iter;
241 struct tgsi_iterate_context *iter,
244 struct dump_ctx *ctx = (struct dump_ctx *)iter;
252 iter->processor.Processor == TGSI_PROCESSOR_GEOMETRY) {
317 if (iter->processor.Processor == TGSI_PROCESSOR_FRAGMENT &&
372 dump_imm_data(iter, decl->ImmediateData.u,
380 dump_imm_data(iter, decl->ImmediateData.u + i,
400 iter_declaration( &ctx.iter, (struc
240 iter_declaration( struct tgsi_iterate_context *iter, struct tgsi_full_declaration *decl ) argument
404 iter_property( struct tgsi_iterate_context *iter, struct tgsi_full_property *prop ) argument
452 iter_immediate( struct tgsi_iterate_context *iter, struct tgsi_full_immediate *imm ) argument
481 iter_instruction( struct tgsi_iterate_context *iter, struct tgsi_full_instruction *inst ) argument
[all...]
H A Dtgsi_sanity.c49 struct tgsi_iterate_context iter; member in struct:sanity_check_ctx
215 struct cso_hash_iter iter = local
218 while (!cso_hash_iter_is_null(iter)) {
219 scan_register *reg = (scan_register *)cso_hash_iter_data(iter);
222 iter = cso_hash_iter_next(iter);
310 struct tgsi_iterate_context *iter,
313 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter;
392 struct tgsi_iterate_context *iter,
395 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter;
309 iter_instruction( struct tgsi_iterate_context *iter, struct tgsi_full_instruction *inst ) argument
391 iter_declaration( struct tgsi_iterate_context *iter, struct tgsi_full_declaration *decl ) argument
436 iter_immediate( struct tgsi_iterate_context *iter, struct tgsi_full_immediate *imm ) argument
469 iter_property( struct tgsi_iterate_context *iter, struct tgsi_full_property *prop ) argument
497 struct cso_hash_iter iter = local
521 struct cso_hash_iter iter = cso_hash_first_node(hash); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_inlines.h367 BasicBlock *BasicBlock::get(Iterator &iter) argument
369 return reinterpret_cast<BasicBlock *>(iter.get());
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDGPUInstrInfo.cpp85 bool AMDGPUInstrInfo::getNextBranchInstr(MachineBasicBlock::iterator &iter, argument
87 while (iter != MBB.end()) {
88 switch (iter->getOpcode()) {
95 ++iter;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dshaders_cache.c395 struct cso_hash_iter iter = cso_hash_first_node(sc->hash); local
397 while (!cso_hash_iter_is_null(iter)) {
399 (struct cached_shader *)cso_hash_iter_data(iter);
402 iter = cso_hash_erase(sc->hash, iter);
414 struct cso_hash_iter iter = cso_hash_find(sc->hash, key); local
416 if (cso_hash_iter_is_null(iter)) {
425 cached = (struct cached_shader *)cso_hash_iter_data(iter);
H A Dtext.c85 struct cso_hash_iter iter; local
87 iter = cso_hash_find(font->glyphs, (unsigned) glyphIndex);
88 return (struct vg_glyph *) cso_hash_iter_data(iter);
149 struct cso_hash_iter iter; local
153 iter = cso_hash_first_node(font->glyphs);
154 while (!cso_hash_iter_is_null(iter)) {
155 struct vg_glyph *glyph = (struct vg_glyph *) cso_hash_iter_data(iter);
157 iter = cso_hash_iter_next(iter);
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dpixel.c95 const GLubyte *start, *iter; local
117 iter = start;
121 currentByte = MsbToLsbTable[iter[0]];
124 currentByte = iter[0];
130 nextByte = MsbToLsbTable[iter[1]];
133 nextByte = iter[1];
152 iter++;
178 const GLubyte *start, *iter, *itera, *iterb, *iterc; local
243 iter = itera;
245 __GLX_MEM_COPY(iter2, iter, elementsPerRo
282 GLubyte *start, *iter; local
405 GLubyte *start, *iter, *itera; local
[all...]
/external/chromium_org/third_party/opus/src/silk/fixed/
H A Dnoise_shape_analysis_FIX.c66 opus_int i, iter, ind = 0; local
87 for( iter = 0; iter < 10; iter++ ) {
116 silk_SMULWB( maxabs_Q24 - limit_Q24, silk_SMLABB( SILK_FIX_CONST( 0.8, 10 ), SILK_FIX_CONST( 0.1, 10 ), iter ) ),
/external/chromium_org/third_party/opus/src/silk/float/
H A Dencode_frame_FLP.c86 opus_int i, iter, maxIter, found_upper, found_lower, ret = 0; local
173 for( iter = 0; ; iter++ ) {
180 if( iter > 0 ) {
206 if( useCBR == 0 && iter == 0 && nBits <= maxBits ) {
211 if( iter == maxIter ) {
224 if( found_lower == 0 && iter >= 2 ) {
H A Dnoise_shape_analysis_FLP.c64 opus_int i, iter, ind = 0; local
80 for( iter = 0; iter < 10; iter++ ) {
108 chirp = 0.99f - ( 0.8f + 0.1f * iter ) * ( maxabs - limit ) / ( maxabs * ( ind + 1 ) );
/external/chromium_org/third_party/ots/src/
H A Dcff_type2_charstring.cc699 std::map<uint16_t, uint8_t>::const_iterator iter = local
701 if (iter == fd_select.end()) {
704 const uint8_t fd_index = iter->second;
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Drepeated_field_unittest.cc830 RepeatedField<int>::iterator iter = proto_array_.begin(); local
831 RepeatedField<int>::const_iterator c_iter = iter;
837 RepeatedField<int>::iterator iter = proto_array_.begin(); local
838 EXPECT_EQ(0, *iter);
839 ++iter;
840 EXPECT_EQ(1, *iter++);
841 EXPECT_EQ(2, *iter);
842 ++iter;
843 EXPECT_TRUE(proto_array_.end() == iter);
850 RepeatedField<int>::const_iterator iter local
861 RepeatedField<int>::iterator iter = proto_array_.begin(); local
880 RepeatedPtrField<string>::iterator iter = proto_array_.begin(); local
887 RepeatedPtrField<string>::iterator iter = proto_array_.begin(); local
899 RepeatedPtrField<string>::const_iterator iter = const_proto_array.begin(); local
910 RepeatedPtrField<string>::reverse_iterator iter = proto_array_.rbegin(); local
922 RepeatedPtrField<string>::const_reverse_iterator iter local
934 RepeatedPtrField<string>::iterator iter = proto_array_.begin(); local
946 RepeatedPtrField<string>::const_iterator iter = proto_array_.begin(); local
960 RepeatedPtrField<string>::iterator iter; local
987 RepeatedPtrField<string>::iterator iter = proto_array_.begin(); local
1008 RepeatedPtrField<string>::pointer_iterator iter = local
1014 RepeatedPtrField<string>::const_pointer_iterator iter = local
1020 RepeatedPtrField<string>::pointer_iterator iter = local
1032 RepeatedPtrField<string>::const_pointer_iterator iter = local
1044 RepeatedPtrField<string>::pointer_iterator iter = local
1057 RepeatedPtrField<string>::const_pointer_iterator iter = local
1070 RepeatedPtrField<string>::pointer_iterator iter = local
1084 RepeatedPtrField<string>::const_pointer_iterator iter = local
1100 RepeatedPtrField<string>::pointer_iterator iter; local
1109 RepeatedPtrField<string>::const_pointer_iterator iter; local
1166 RepeatedPtrField<string>::pointer_iterator iter = local
[all...]
/external/chromium_org/third_party/re2/re2/
H A Dprefilter_tree.cc138 map<string, Prefilter*>::iterator iter = node_map_.find(node_string); local
139 if (iter == node_map_.end())
141 return (*iter).second;
377 for (map<string, Prefilter*>::const_iterator iter = node_map_.begin();
378 iter != node_map_.end(); ++iter)
379 VLOG(10) << "NodeId: " << (*iter).second->unique_id()
380 << " Str: " << (*iter).first;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DLogoPlay.cpp157 static void showPathContour(SkPath::Iter& iter) { argument
160 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
187 SkPath::Iter iter(path, true);
203 iter.setPath(path, true);
204 showPathContour(iter);
/external/chromium_org/third_party/skia/include/core/
H A DSkTDArray.h235 const T* iter = fArray;
238 for (; iter < stop; iter++) {
239 if (*iter == elem) {
240 return (int) (iter - fArray);
247 const T* iter = fArray + fCount;
250 while (iter > stop) {
251 if (*--iter == elem) {
252 return SkToInt(iter - stop);
293 T* iter local
303 T* iter = fArray; local
313 T* iter = fArray; local
323 T* iter = fArray; local
[all...]
H A DSkTInternalLList.h185 Iter(const Iter& iter) : fCurr(iter.fCurr) {} argument
186 Iter& operator= (const Iter& iter) { fCurr = iter.fCurr; return *this; } argument
229 Iter iter; local
230 for (T* item = iter.init(*this, Iter::kHead_IterStart); item; item = iter.next()) {
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapHeap.cpp172 SkBitmapHeap::LookupEntry* iter = fLeastRecentlyUsed; local
173 while (iter != NULL) {
174 SkBitmapHeapEntry* heapEntry = fStorage[iter->fStorageSlot];
181 if (replacement.getGenerationID() == iter->fGenerationId) {
185 iter = iter->fMoreRecentlyUsed;
187 return iter;
197 LookupEntry* iter = fLeastRecentlyUsed; local
201 while (iter != NULL) {
202 SkBitmapHeapEntry* heapEntry = fStorage[iter
[all...]
H A DSkPictureData.h142 void initIterator(SkPictureStateTree::Iterator* iter, argument
146 fStateTree->initIterator(iter, draws, canvas);
/external/chromium_org/third_party/skia/src/fonts/
H A DSkFontMgr_fontconfig.cpp116 FcPattern** iter = font_set->fonts; local
117 FcPattern** stop = iter + font_set->nfont;
119 for (; iter < stop; ++iter) {
120 if (valid_pattern(*iter)) {
125 if (iter == stop || !match_name(*iter, post_config_family)) {
129 FcPattern** firstIter = iter++;
130 for (; iter < stop; ++iter) {
[all...]

Completed in 542 milliseconds

<<21222324252627282930>>