Searched defs:items (Results 176 - 200 of 366) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_state_cache.c90 for (c = cache->items[hash % cache->size]; c; c = c->next)
93 fprintf(stderr, "bucket %d/%d = %d/%d items\n", hash % cache->size,
97 for (c = cache->items[hash % cache->size]; c; c = c->next) {
109 struct brw_cache_item **items; local
114 items = (struct brw_cache_item**) calloc(1, size * sizeof(*items));
117 for (c = cache->items[i]; c; c = next) {
119 c->next = items[c->hash % size];
120 items[c->hash % size] = c;
123 FREE(cache->items);
[all...]
/external/chromium_org/tools/gn/
H A Dtrace.cc27 // Trace items leaked intentionally.
76 void SummarizeCoalesced(std::vector<const TraceItem*>& items, argument
80 for (size_t i = 0; i < items.size(); i++) {
81 Coalesced& c = coalesced[items[i]->name()];
82 c.name_ptr = &items[i]->name();
83 c.total_duration += items[i]->delta().InMillisecondsF();
/external/chromium_org/win8/delegate_execute/
H A Dcommand_execute_impl.cc347 CComPtr<IEnumShellItems> items; local
348 item_array_->EnumItems(&items);
350 HRESULT hr = items->Next(1, &shell_item, &count);
/external/deqp/executor/tools/
H A DxeExtractValues.cpp104 static Value findValueByTag (const xe::ri::List& items, const string& tagName) argument
106 for (int ndx = 0; ndx < items.getNumItems(); ndx++)
108 const xe::ri::Item& item = items.getItem(ndx);
112 const Value value = findValueByTag(static_cast<const xe::ri::Section&>(item).items, tagName);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/utils/
H A DUtil.java529 * @param items The milestones list (e.g. {@link IPerformancesConstants#V35_MILESTONES}).
531 public static void setMilestones(String[] items) { argument
532 MILESTONES = items;
/external/freetype/src/gzip/
H A Dftgzip.c119 uInt items,
122 FT_ULong sz = (FT_ULong)size * items;
144 unsigned items,
147 return ft_gzip_alloc( (FT_Memory)opaque, items, size );
118 ft_gzip_alloc( FT_Memory memory, uInt items, uInt size ) argument
143 zcalloc( voidpf opaque, unsigned items, unsigned size ) argument
/external/glide/library/src/main/java/com/bumptech/glide/
H A DListPreloader.java40 * @param maxPreload The maximum number of items in the list to load ahead (corresponds to adapter positions).
72 * Returns a list of all models that need to be loaded for the list to display adapter items start - end. A list of
110 List<T> items = getItems(start, end);
114 final int numItems = items.size();
116 preloadItem(items, i);
120 for (int i = items.size() - 1; i >= 0; i--) {
121 preloadItem(items, i);
129 private void preloadItem(List<T> items, int position) { argument
130 final T item = items.get(position);
/external/harfbuzz_ng/src/
H A Dhb-object-private.hh85 hb_lockable_set_t<hb_user_data_item_t, hb_mutex_t> items; member in struct:hb_user_data_array_t
87 inline void init (void) { lock.init (); items.init (); }
96 inline void finish (void) { items.finish (lock); lock.finish (); }
/external/icu/icu4c/source/common/
H A Dlistformatter.cpp296 const UnicodeString items[],
301 return format(items, nItems, appendTo, -1, offset, errorCode);
305 const UnicodeString items[],
327 appendTo.append(items[0]);
336 items[0],
337 items[1],
350 items[0],
351 items[1],
364 items[i],
376 items[nItem
295 format( const UnicodeString items[], int32_t nItems, UnicodeString& appendTo, UErrorCode& errorCode) const argument
304 format( const UnicodeString items[], int32_t nItems, UnicodeString& appendTo, int32_t index, int32_t &offset, UErrorCode& errorCode) const argument
[all...]
/external/libselinux/src/
H A Dlabel_android_property.c87 int items, len; local
103 items = sscanf(line_buf, "%255s %255s", prop, context);
104 if (items != 2) {
/external/libsepol/src/
H A Davtab.c374 uint32_t buf32[7], items, items2, val; local
403 items = 0;
404 val = le32_to_cpu(buf32[items++]);
410 val = le32_to_cpu(buf32[items++]);
416 val = le32_to_cpu(buf32[items++]);
423 val = le32_to_cpu(buf32[items++]);
439 datum.data = le32_to_cpu(buf32[items++]);
446 if (items != items2) {
447 ERR(fp->handle, "entry only had %d items, "
448 "expected %d", items2, items);
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dthread_map.c26 int items; local
31 items = scandir(name, &namelist, filter, NULL);
32 if (items <= 0)
35 threads = malloc(sizeof(*threads) + sizeof(pid_t) * items);
37 for (i = 0; i < items; i++)
39 threads->nr = items;
42 for (i=0; i<items; i++)
64 int max_threads = 32, items, i; local
96 items = scandir(path, &namelist, filter, NULL);
97 if (items <
161 int items, total_tasks = 0; local
[all...]
/external/lldb/source/DataFormatters/
H A DTypeCategory.cpp120 TypeCategoryImpl::Clear (FormatCategoryItems items) argument
122 if ( (items & eFormatCategoryItemSummary) == eFormatCategoryItemSummary )
124 if ( (items & eFormatCategoryItemRegexSummary) == eFormatCategoryItemRegexSummary )
126 if ( (items & eFormatCategoryItemFilter) == eFormatCategoryItemFilter )
128 if ( (items & eFormatCategoryItemRegexFilter) == eFormatCategoryItemRegexFilter )
131 if ( (items & eFormatCategoryItemSynth) == eFormatCategoryItemSynth )
133 if ( (items & eFormatCategoryItemRegexSynth) == eFormatCategoryItemRegexSynth )
140 FormatCategoryItems items)
143 if ( (items & eFormatCategoryItemSummary) == eFormatCategoryItemSummary )
145 if ( (items
139 Delete(ConstString name, FormatCategoryItems items) argument
161 GetCount(FormatCategoryItems items) argument
182 AnyMatches(ConstString type_name, FormatCategoryItems items, bool only_enabled, const char** matching_category, FormatCategoryItems* matching_type) argument
[all...]
/external/lzma/CPP/Common/
H A DWildcard.cpp275 const CObjectVector<CItem> &items = include ? IncludeItems : ExcludeItems; local
276 for (int i = 0; i < items.Size(); i++)
277 if (items[i].CheckPath(pathParts, isFile))
/external/lzma/CS/7zip/Compress/LZ/
H A DLzBinTree.cs136 UInt32 maxLen = kStartMaxLen; // to avoid items for len < hashSize;
344 void NormalizeLinks(UInt32[] items, UInt32 numItems, UInt32 subValue) argument
348 UInt32 value = items[i];
353 items[i] = value;
/external/lzma/Java/SevenZip/Compression/LZ/
H A DBinTree.java136 int maxLen = kStartMaxLen; // to avoid items for len < hashSize;
344 void NormalizeLinks(int[] items, int numItems, int subValue) argument
348 int value = items[i];
353 items[i] = value;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_state_cache.c90 for (c = cache->items[hash % cache->size]; c; c = c->next)
93 fprintf(stderr, "bucket %d/%d = %d/%d items\n", hash % cache->size,
97 for (c = cache->items[hash % cache->size]; c; c = c->next) {
109 struct brw_cache_item **items; local
114 items = (struct brw_cache_item**) calloc(1, size * sizeof(*items));
117 for (c = cache->items[i]; c; c = next) {
119 c->next = items[c->hash % size];
120 items[c->hash % size] = c;
123 FREE(cache->items);
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DClassReader.java119 private final int[] items; field in class:ClassReader
122 * The String objects corresponding to the CONSTANT_Utf8 items. This cache
125 * strategy could be extended to all constant pool items, but its benefit
126 * would not be so great for these items (because they are much less
127 * expensive to parse than CONSTANT_Utf8 items).
166 items = new int[readUnsignedShort(off + 8)];
167 int n = items.length;
172 items[i] = index + 1;
243 int n = items[readUnsignedShort(header + 4)];
278 int ll = items
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DItemLocationBox.java65 public List<Item> items = new LinkedList<Item>(); field in class:ItemLocationBox
76 for (Item item : items) {
92 IsoTypeWriter.writeUInt16(byteBuffer, items.size());
93 for (Item item : items) {
112 items.add(new Item(content));
150 return items;
153 public void setItems(List<Item> items) { argument
154 this.items = items;
/external/qemu/android/skin/
H A Dkeyset.c333 SkinKeyItem* items; member in struct:SkinKeyset
340 SkinKeyItem* item = kset->items;
367 SkinKeyItem* new_items = realloc( kset->items, new_size*sizeof(SkinKeyItem) );
371 kset->items = new_items;
374 item = kset->items + kset->num_items++;
454 free(kset->items);
455 kset->items = NULL;
470 SkinKeyItem* item = kset->items;
495 SkinKeyItem* item = kset->items;
/external/qemu/distrib/libselinux/src/
H A Dlabel_android_property.c87 int items, len; local
103 items = sscanf(line_buf, "%255s %255s", prop, context);
104 if (items != 2) {
/external/zlib/src/contrib/iostream2/
H A Dzstream.h115 inline int read(izstream& zs, T* x, Items items) { argument
116 return ::gzread(zs.fp(), x, items*sizeof(T));
264 inline int write(ozstream& zs, const T* x, Items items) { argument
265 return ::gzwrite(zs.fp(), (voidp) x, items*sizeof(T));
/external/bison/src/
H A DAnnotationList.c72 * that state has \c nitems kernel items.
198 Sbitset *items,
205 *items = Sbitset__new_on_obstack (s->nitems, annotations_obstackp);
212 Sbitset__set (*items, item);
270 aver (s->items[self_item] > 1);
274 if (item_number_is_rule_number (ritem[s->items[self_item]
277 Sbitset items; local
279 for (rulei = s->items[self_item];
288 item_lookahead_sets, &items, annotations_obstackp))
299 items, (*predecesso
192 AnnotationList__compute_lhs_contributions(state *s, rule *the_rule, symbol_number conflicted_token, bitsetv follow_kernel_items, bitsetv always_follows, state ***predecessors, bitset **item_lookahead_sets, Sbitset *items, struct obstack *annotations_obstackp) argument
[all...]
/external/chromium_org/chrome/browser/download/
H A Ddownload_history.cc9 // DownloadHistory decides whether and when to add items to, remove items from,
10 // and update items in the database. DownloadHistory uses DownloadHistoryData to
18 // internally calls OnDownloadCreated(), which normally adds items to the
19 // database, so QueryCallback() uses |loading_id_| to disable adding these items
215 content::DownloadManager::DownloadVector items; local
216 notifier_.GetManager()->GetAllDownloads(&items);
218 it = items.begin(); it != items.end(); ++it) {
/external/chromium_org/chrome/browser/extensions/api/input_ime/
H A Dinput_ime_api.cc739 const std::vector<linked_ptr<input_ime::MenuItem> >& items = params.items; local
742 for (size_t i = 0; i < items.size(); ++i) {
744 SetMenuItemToMenu(*items[i], &items_out.back());
766 const std::vector<linked_ptr<input_ime::MenuItem> >& items = params.items; local
769 for (size_t i = 0; i < items.size(); ++i) {
771 SetMenuItemToMenu(*items[i], &items_out.back());

Completed in 333 milliseconds

1234567891011>>