text
stringlengths 0
14.1k
|
---|
</a><a href=""#skip-navbar_bottom"" title=""Skip navigation links""></a><a name=""navbar_bottom_firstrow"">
|
<!-- -->
|
</a>
|
<ul class=""navList"" title=""Navigation"">
|
<li><a href=""../../../../../../../overview-summary.html"">Overview</a></li>
|
<li><a href=""../package-summary.html"">Package</a></li>
|
<li><a href=""../../../../../../../org/apache/poi/ss/formula/eval/NameEval.html"" title=""class in org.apache.poi.ss.formula.eval"">Class</a></li>
|
<li class=""navBarCell1Rev"">Use</li>
|
<li><a href=""../package-tree.html"">Tree</a></li>
|
<li><a href=""../../../../../../../deprecated-list.html"">Deprecated</a></li>
|
<li><a href=""../../../../../../../index-all.html"">Index</a></li>
|
<li><a href=""../../../../../../../help-doc.html"">Help</a></li>
|
</ul>
|
</div>
|
<div class=""subNav"">
|
<ul class=""navList"">
|
<li>Prev</li>
|
<li>Next</li>
|
</ul>
|
<ul class=""navList"">
|
<li><a href=""../../../../../../../index.html?org/apache/poi/ss/formula/eval/class-use/NameEval.html"" target=""_top"">Frames</a></li>
|
<li><a href=""NameEval.html"" target=""_top"">No Frames</a></li>
|
</ul>
|
<ul class=""navList"" id=""allclasses_navbar_bottom"">
|
<li><a href=""../../../../../../../allclasses-noframe.html"">All Classes</a></li>
|
</ul>
|
<div>
|
<script type=""text/javascript""><!--
|
allClassesLink = document.getElementById(""allclasses_navbar_bottom"");
|
if(window==top) {
|
allClassesLink.style.display = ""block"";
|
}
|
else {
|
allClassesLink.style.display = ""none"";
|
}
|
//-->
|
</script>
|
</div>
|
<a name=""skip-navbar_bottom"">
|
<!-- -->
|
</a></div>
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<p class=""legalCopy""><small>
|
<i>Copyright 2014 The Apache Software Foundation or
|
its licensors, as applicable.</i>
|
</small></p>
|
</body>
|
</html>
|
" gpl-2.0
|
lawnn/Dorimanx-LG-G2-D802-Kernel drivers/cpufreq/cpufreq_darkness.c 10599 "/*
|
* drivers/cpufreq/cpufreq_darkness.c
|
*
|
* Copyright (C) 2011 Samsung Electronics co. ltd
|
* ByungChang Cha <[email protected]>
|
*
|
* Based on ondemand governor
|
* Copyright (C) 2001 Russell King
|
* (C) 2003 Venkatesh Pallipadi <[email protected]>.
|
* Jun Nakajima <[email protected]>
|
*
|
* This program is free software; you can redistribute it and/or modify
|
* it under the terms of the GNU General Public License version 2 as
|
* published by the Free Software Foundation.
|
*
|
* Created by Alucard_24@xda
|
*/
|
#include <linux/kernel.h>
|
#include <linux/module.h>
|
#include <linux/init.h>
|
#include <linux/cpufreq.h>
|
#include <linux/cpu.h>
|
#include <linux/jiffies.h>
|
#include <linux/kernel_stat.h>
|
#include <linux/mutex.h>
|
#include <linux/hrtimer.h>
|
#include <linux/tick.h>
|
#include <linux/ktime.h>
|
#include <linux/sched.h>
|
#include <linux/slab.h>
|
#define MIN_SAMPLING_RATE 10000
|
/*
|
* dbs is used in this file as a shortform for demandbased switching
|
* It helps to keep variable names smaller, simpler
|
*/
|
static void do_darkness_timer(struct work_struct *work);
|
struct cpufreq_darkness_cpuinfo {
|
u64 prev_cpu_wall;
|
u64 prev_cpu_idle;
|
struct cpufreq_frequency_table *freq_table;
|
struct delayed_work work;
|
struct cpufreq_policy *cur_policy;
|
bool governor_enabled;
|
unsigned int cpu;
|
/*
|
* percpu mutex that serializes governor limit change with
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.