HomeSort by relevance Sort by last modified time
    Searched defs:iter (Results 451 - 475 of 1420) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/opus/src/silk/fixed/
encode_frame_FIX.c 87 opus_int i, iter, maxIter, found_upper, found_lower, ret = 0; local
178 for( iter = 0; ; iter++ ) {
185 if( iter > 0 ) {
219 if( useCBR == 0 && iter == 0 && nBits <= maxBits ) {
224 if( iter == maxIter ) {
237 if( found_lower == 0 && iter >= 2 ) {
  /external/chromium_org/third_party/opus/src/silk/float/
encode_frame_FLP.c 86 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 ) {
noise_shape_analysis_FLP.c 64 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/
cff_type2_charstring.cc 699 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/skia/include/core/
SkTInternalLList.h 177 class Iter {
184 Iter() : fCurr(NULL) {}
185 Iter(const Iter& iter) : fCurr(iter.fCurr) {}
186 Iter& operator= (const Iter& iter) { fCurr = iter.fCurr; return *this;
229 Iter iter; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBitmapHeap.cpp 163 SkBitmapHeap::LookupEntry* iter = fLeastRecentlyUsed; local
164 while (iter != NULL) {
165 SkBitmapHeapEntry* heapEntry = fStorage[iter->fStorageSlot];
172 if (replacement.getGenerationID() == iter->fGenerationId) {
176 iter = iter->fMoreRecentlyUsed;
178 return iter;
188 LookupEntry* iter = fLeastRecentlyUsed; local
192 while (iter != NULL) {
193 SkBitmapHeapEntry* heapEntry = fStorage[iter->fStorageSlot]
    [all...]
  /external/chromium_org/ui/message_center/
notification_list.cc 73 for (Notifications::iterator iter = notifications_.begin();
74 iter != notifications_.end(); ++iter) {
75 Notification* notification = *iter;
93 Notifications::iterator iter = GetNotification(old_id); local
94 if (iter == notifications_.end())
97 new_notification->CopyState(*iter);
102 if ((*iter)->priority() < new_notification->priority()) {
109 Notification* old = *iter;
110 notifications_.erase(iter);
135 Notifications::iterator iter = GetNotification(notification_id); local
144 Notifications::iterator iter = GetNotification(notification_id); local
154 Notifications::iterator iter = GetNotification(notification_id); local
167 Notifications::iterator iter = GetNotification(id); local
225 Notifications::iterator iter = GetNotification(id); local
242 Notifications::iterator iter = GetNotification(id); local
254 Notifications::iterator iter = GetNotification(id); local
261 Notifications::iterator iter = GetNotification(id); local
332 Notifications::iterator iter = GetNotification(notification->id()); local
    [all...]
  /external/chromium_org/ui/views/examples/
menu_example.cc 164 std::set<int>::iterator iter = checked_fruits_.find(command_id); local
165 if (iter == checked_fruits_.end()) {
170 checked_fruits_.erase(iter);
  /external/chromium_org/webkit/browser/blob/
blob_storage_context.cc 86 for (std::vector<BlobData::Item>::const_iterator iter =
88 iter != data->items().end(); ++iter) {
89 AppendBlobDataItem(data->uuid(), *iter);
234 std::vector<BlobData::Item>::const_iterator iter = local
237 for (; iter != src_blob_data->items().end(); ++iter) {
238 if (offset >= iter->length())
239 offset -= iter->length();
245 for (; iter != src_blob_data->items().end() && length > 0; ++iter)
    [all...]
  /external/chromium_org/webkit/browser/database/
database_quota_client_unittest.cc 49 std::map<GURL, MockOriginInfo>::const_iterator iter; variable
50 for (iter = mock_origin_infos_.begin();
51 iter != mock_origin_infos_.end();
52 ++iter) {
53 origins_identifiers->push_back(iter->second.GetOriginIdentifier());
60 std::map<GURL, MockOriginInfo>::const_iterator iter; variable
61 for (iter = mock_origin_infos_.begin();
62 iter != mock_origin_infos_.end();
63 ++iter) {
64 origins_info->push_back(OriginInfo(iter->second))
    [all...]
  /external/compiler-rt/lib/asan/tests/
asan_mac_test.cc 174 int i, iter; local
175 for (iter = 0; iter < kNumIterations; iter++) {
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 178 uptr iter = (uptr)v; local
179 if (iter > 1) {
180 if (pthread_setspecific(g_thread_finalize_key, (void*)(iter - 1))) {
  /external/dnsmasq/src/
dbus.c 103 DBusMessageIter iter; local
107 dbus_message_iter_init(message, &iter);
118 if (dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_UINT32)
122 dbus_message_iter_get_basic(&iter, &a);
123 dbus_message_iter_next (&iter);
134 else if (dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_BYTE)
143 dbus_message_iter_get_basic(&iter, &p[i]);
144 dbus_message_iter_next (&iter);
145 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_BYTE)
173 if (dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_STRING
    [all...]
  /external/e2fsprogs/lib/ext2fs/
badblocks.c 239 ext2_u32_iterate iter; local
244 retval = ext2fs_get_mem(sizeof(struct ext2_struct_u32_iterate), &iter);
248 iter->magic = EXT2_ET_MAGIC_BADBLOCKS_ITERATE;
249 iter->bb = bb;
250 iter->ptr = 0;
251 *ret = iter;
263 int ext2fs_u32_list_iterate(ext2_u32_iterate iter, __u32 *blk)
267 if (iter->magic != EXT2_ET_MAGIC_BADBLOCKS_ITERATE)
270 bb = iter->bb;
275 if (iter->ptr < bb->num)
    [all...]
tst_badblocks.c 95 badblocks_iterate iter; local
99 retval = ext2fs_badblocks_list_iterate_begin(bb, &iter);
105 while (ext2fs_badblocks_list_iterate(iter, &blk)) {
110 ext2fs_badblocks_list_iterate_end(iter);
  /external/javassist/src/main/javassist/bytecode/analysis/
SubroutineScanner.java 43 CodeIterator iter = code.iterator(); local
49 scan(0, iter, null);
56 scan(handler, iter, subroutines[exceptions.startPc(i)]);
62 private void scan(int pos, CodeIterator iter, Subroutine sub) throws BadBytecode {
69 int old = iter.lookAhead();
70 iter.move(pos);
74 pos = iter.next();
75 next = scanOp(pos, iter, sub) && iter.hasNext();
78 iter.move(old)
    [all...]
  /external/jdiff/src/jdiff/
CommentsHandler.java 138 Iterator iter = currSingleComment_.iterator(); local
139 while (iter.hasNext()) {
140 SingleComment currComment = (SingleComment)(iter.next());
  /external/libvpx/libvpx/examples/
encoder_tmpl.c 154 vpx_codec_iter_t iter = NULL; local
160 while( (pkt = vpx_codec_get_cx_data(&codec, &iter)) ) {
  /external/linux-tools-perf/
builtin-diff.c 74 struct hist_entry *iter; local
78 iter = rb_entry(parent, struct hist_entry, rb_node);
79 if (hist_entry__cmp(he, iter) < 0)
119 struct hist_entry *iter = rb_entry(n, struct hist_entry, rb_node); local
120 int64_t cmp = hist_entry__cmp(he, iter);
127 return iter;
  /external/linux-tools-perf/util/
top.c 48 struct sym_entry *iter; local
52 iter = rb_entry(parent, struct sym_entry, rb_node);
54 if (se->weight > iter->weight)
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_cache.c 178 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/mesa3d/src/gallium/state_trackers/vega/
text.c 85 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/mesa3d/src/glsl/
loop_controls.cpp 99 ir_constant *iter = div->constant_expression_value(); local
101 if (iter == NULL)
104 if (!iter->type->is_integer()) {
106 new(mem_ctx) ir_expression(ir_unop_f2i, glsl_type::int_type, iter,
109 iter = cast->constant_expression_value();
112 int iter_value = iter->get_int_component(0);
126 iter = (increment->type->is_integer())
131 new(mem_ctx) ir_expression(ir_binop_mul, increment->type, iter,
  /external/mesa3d/src/mesa/program/
symbol_table.c 208 struct _mesa_symbol_table_iterator *iter = calloc(1, sizeof(*iter)); local
211 iter->name_space = name_space;
220 iter->curr = sym;
226 return iter;
231 _mesa_symbol_table_iterator_dtor(struct _mesa_symbol_table_iterator *iter)
233 free(iter);
238 _mesa_symbol_table_iterator_get(struct _mesa_symbol_table_iterator *iter)
240 return (iter->curr == NULL) ? NULL : iter->curr->data
    [all...]
  /external/openssl/apps/
pkcs8.c 79 int iter = PKCS12_DEFAULT_ITER; local
159 iter = 1;
313 NULL, 0, iter, p8inf)))

Completed in 369 milliseconds

<<11121314151617181920>>