Searched refs:states (Results 1 - 25 of 53) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Ddbgen.pl14 @states = ("AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "FL", "GA",
28 $state = $states [($i / 100) % 50];
H A Ddbgenattr.pl14 @states = ("AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "FL", "GA",
28 $state = $states [($i / 100) % 50];
H A DtestAutomata.c37 xmlAutomataStatePtr states[1000]; local
42 states[i] = NULL;
58 states[0] = xmlAutomataGetInitState(am);
59 if (states[0] == NULL) {
88 if (states[from] == NULL)
89 states[from] = xmlAutomataNewState(am);
97 if (states[to] == NULL)
98 states[to] = xmlAutomataNewState(am);
100 xmlAutomataNewTransition(am, states[from], states[t
[all...]
H A Dpattern.c108 int nbState; /* number of states in the automata */
109 int maxState; /* allocated number of states */
111 int *states; /* the array of step indexes */ member in struct:_xmlStreamCtxt
147 xmlStepStatePtr states; member in struct:_xmlStepStates
460 xmlPatPushState(xmlStepStates *states, int step, xmlNodePtr node) { argument
461 if ((states->states == NULL) || (states->maxstates <= 0)) {
462 states->maxstates = 4;
463 states
497 xmlStepStates states = {0, 0, NULL}; /* // may require backtrack */ local
[all...]
H A Drelaxng.c319 int nbState; /* the number of states */
372 xmlRelaxNGStatesPtr states; /* the accumulated state list */ member in struct:_xmlRelaxNGValidCtxt
374 xmlRelaxNGStatesPtr freeState; /* the pool of free valid states */
1023 xmlRngVErrMemory(ctxt, "allocating states\n");
1032 xmlRngVErrMemory(ctxt, "allocating states\n");
1042 * @states: the states container
1052 xmlRelaxNGStatesPtr states,
1058 if (states->nbState >= states
1051 xmlRelaxNGAddStatesUniq(xmlRelaxNGValidCtxtPtr ctxt, xmlRelaxNGStatesPtr states, xmlRelaxNGValidStatePtr state) argument
1089 xmlRelaxNGAddStates(xmlRelaxNGValidCtxtPtr ctxt, xmlRelaxNGStatesPtr states, xmlRelaxNGValidStatePtr state) argument
1132 xmlRelaxNGFreeStates(xmlRelaxNGValidCtxtPtr ctxt, xmlRelaxNGStatesPtr states) argument
9984 xmlRelaxNGStatesPtr states = NULL, res = NULL; local
10137 xmlRelaxNGStatesPtr states = NULL; local
10427 xmlRelaxNGStatesPtr states, res; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/acpi/
H A Dcstate.c6 * - Added _PDC for SMP C-states on Intel CPUs
54 } states[ACPI_PROCESSOR_MAX_POWER]; member in struct:cstate_entry
91 percpu_entry->states[cx->index].eax = 0;
92 percpu_entry->states[cx->index].ecx = 0;
119 percpu_entry->states[cx->index].ecx = MWAIT_ECX_INTERRUPT_BREAK;
122 percpu_entry->states[cx->index].eax = cx->address;
142 mwait_idle_with_hints(percpu_entry->states[cx->index].eax,
143 percpu_entry->states[cx->index].ecx);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/
H A Dprocessor_idle.c267 * Check, if one of the previous states already marked the lapic
303 int state = cx - pr->power.states;
427 cx = &pr->power.states[ACPI_STATE_C1];
455 * be used without acpi C-states.
579 ((cx->promotion.state - pr->power.states) <= max_cstate)) {
624 if ((pr->power.state - pr->power.states) > max_cstate ||
663 cx = &pr->power.states[i];
678 cx = &pr->power.states[i];
695 cx = &pr->power.states[i];
726 pr->power.states[ACPI_STATE_C
[all...]
H A Dprocessor_throttling.c92 state, pr->throttling.states[state].performance));
162 (pr->throttling.states[state].performance ? pr->
163 throttling.states[state].performance / 10 : 0)));
190 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No throttling states\n"));
221 pr->throttling.states[i].performance = step * i;
222 pr->throttling.states[i].power = step * i;
225 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d throttling states\n",
286 seq_puts(seq, "states:\n");
290 (pr->throttling.states[i].performance ? pr->
291 throttling.states[
[all...]
H A Dprocessor_perflib.c90 pr->performance->states[ppc].
114 * (e.g. 0 = states 0..n; 1 = states 1..n; etc.
245 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d performance states\n",
249 pr->performance->states =
252 if (!pr->performance->states) {
259 struct acpi_processor_px *px = &(pr->performance->states[i]);
271 kfree(pr->performance->states);
288 kfree(pr->performance->states);
417 seq_puts(seq, "states
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/kernel/cpufreq/
H A Dacpi-cpufreq.c95 if (value == data->acpi_data.states[i].status)
96 return data->acpi_data.states[i].core_frequency;
98 return data->acpi_data.states[i-1].core_frequency;
188 value = (u32) data->acpi_data.states[state].control;
320 if ((data->acpi_data.states[i].transition_latency * 1000) >
323 data->acpi_data.states[i].transition_latency * 1000;
336 data->acpi_data.states[i].core_frequency * 1000;
356 (u32) data->acpi_data.states[i].core_frequency,
357 (u32) data->acpi_data.states[i].power,
358 (u32) data->acpi_data.states[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgrep/
H A Ddfa.h56 states of the DFA are those that would have
313 dfa_state *states; /* States of the dfa. */ member in struct:dfa
314 int sindex; /* Index for adding new states. */
315 int salloc; /* Number of states currently allocated. */
338 int **trans; /* Transition tables for states that can
357 #define ACCEPTING(s, r) ((r).states[s].constraint)
362 SUCCEEDS_IN_CONTEXT((dfa).states[state].constraint, \
368 #define FIRST_MATCHING_REGEXP(state, dfa) (-(dfa).states[state].first_end)
H A Ddfa.c1476 if (hash != d->states[i].hash || s->nelem != d->states[i].elems.nelem
1477 || newline != d->states[i].newline || letter != d->states[i].letter)
1481 != d->states[i].elems.elems[j].constraint
1482 || s->elems[j].index != d->states[i].elems.elems[j].index)
1489 REALLOC_IF_NECESSARY(d->states, dfa_state, d->salloc, d->sindex);
1490 d->states[i].hash = hash;
1491 MALLOC(d->states[i].elems.elems, position, s->nelem);
1492 copy(s, &d->states[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dpattern.c108 int nbState; /* number of states in the automata */
109 int maxState; /* allocated number of states */
111 int *states; /* the array of step indexes */ member in struct:_xmlStreamCtxt
147 xmlStepStatePtr states; member in struct:_xmlStepStates
460 xmlPatPushState(xmlStepStates *states, int step, xmlNodePtr node) { argument
461 if ((states->states == NULL) || (states->maxstates <= 0)) {
462 states->maxstates = 4;
463 states
497 xmlStepStates states = {0, 0, NULL}; /* // may require backtrack */ local
[all...]
H A Drelaxng.c319 int nbState; /* the number of states */
372 xmlRelaxNGStatesPtr states; /* the accumulated state list */ member in struct:_xmlRelaxNGValidCtxt
374 xmlRelaxNGStatesPtr freeState; /* the pool of free valid states */
1023 xmlRngVErrMemory(ctxt, "allocating states\n");
1032 xmlRngVErrMemory(ctxt, "allocating states\n");
1042 * @states: the states container
1052 xmlRelaxNGStatesPtr states,
1058 if (states->nbState >= states
1051 xmlRelaxNGAddStatesUniq(xmlRelaxNGValidCtxtPtr ctxt, xmlRelaxNGStatesPtr states, xmlRelaxNGValidStatePtr state) argument
1089 xmlRelaxNGAddStates(xmlRelaxNGValidCtxtPtr ctxt, xmlRelaxNGStatesPtr states, xmlRelaxNGValidStatePtr state) argument
1132 xmlRelaxNGFreeStates(xmlRelaxNGValidCtxtPtr ctxt, xmlRelaxNGStatesPtr states) argument
9979 xmlRelaxNGStatesPtr states = NULL, res = NULL; local
10132 xmlRelaxNGStatesPtr states = NULL; local
10422 xmlRelaxNGStatesPtr states, res; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dpattern.c108 int nbState; /* number of states in the automata */
109 int maxState; /* allocated number of states */
111 int *states; /* the array of step indexes */ member in struct:_xmlStreamCtxt
147 xmlStepStatePtr states; member in struct:_xmlStepStates
460 xmlPatPushState(xmlStepStates *states, int step, xmlNodePtr node) { argument
461 if ((states->states == NULL) || (states->maxstates <= 0)) {
462 states->maxstates = 4;
463 states
497 xmlStepStates states = {0, 0, NULL}; /* // may require backtrack */ local
[all...]
H A Drelaxng.c319 int nbState; /* the number of states */
372 xmlRelaxNGStatesPtr states; /* the accumulated state list */ member in struct:_xmlRelaxNGValidCtxt
374 xmlRelaxNGStatesPtr freeState; /* the pool of free valid states */
1023 xmlRngVErrMemory(ctxt, "allocating states\n");
1032 xmlRngVErrMemory(ctxt, "allocating states\n");
1042 * @states: the states container
1052 xmlRelaxNGStatesPtr states,
1058 if (states->nbState >= states
1051 xmlRelaxNGAddStatesUniq(xmlRelaxNGValidCtxtPtr ctxt, xmlRelaxNGStatesPtr states, xmlRelaxNGValidStatePtr state) argument
1089 xmlRelaxNGAddStates(xmlRelaxNGValidCtxtPtr ctxt, xmlRelaxNGStatesPtr states, xmlRelaxNGValidStatePtr state) argument
1132 xmlRelaxNGFreeStates(xmlRelaxNGValidCtxtPtr ctxt, xmlRelaxNGStatesPtr states) argument
9979 xmlRelaxNGStatesPtr states = NULL, res = NULL; local
10132 xmlRelaxNGStatesPtr states = NULL; local
10422 xmlRelaxNGStatesPtr states, res; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-gobject/
H A Dga-client.c193 } states[] = { local
203 for (i = 0; states[i].name != NULL; i++) {
204 if (state != states[i].state)
207 if (!states[i].quark)
208 states[i].quark = g_quark_from_static_string(states[i].name);
209 /* printf("Detail: %s\n", states[i].name); */
210 return states[i].quark;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/cpu/cpufreq/
H A Dacpi-cpufreq.c96 if (value == perf->states[i].status)
111 if (msr == perf->states[data->freq_table[i].index].status)
421 (u32) perf->states[next_perf_state].
430 cmd.val = (u32) perf->states[next_perf_state].control;
443 freqs.old = perf->states[perf->state].core_frequency * 1000;
487 unsigned long freqn = perf->states[0].core_frequency * 1000;
491 freqn = perf->states[i+1].core_frequency * 1000;
502 return perf->states[0].core_frequency * 1000;
661 if ((perf->states[i].transition_latency * 1000) >
664 perf->states[
[all...]
H A Dspeedstep-centrino.c467 if ((p->states[i].control & INTEL_MSR_RANGE) !=
468 (p->states[i].status & INTEL_MSR_RANGE)) {
470 p->states[i].control, p->states[i].status);
475 if (!p->states[i].core_frequency) {
481 if (p->states[i].core_frequency > p->states[0].core_frequency) {
483 p->states[i].core_frequency, p->states[0].core_frequency);
484 p->states[
[all...]
H A De_powersaver.c150 int states; local
218 /* Calc number of p-states supported */
220 states = max_multiplier - min_multiplier + 1;
222 states = 2;
226 + (states + 1) * sizeof(struct cpufreq_frequency_table),
H A Dpowernow-k8.c635 printk(KERN_ERR PFX "no p states to transition\n");
765 data->irt = (data->acpi_data.states[index].control >> IRT_SHIFT) & IRT_MASK;
766 data->rvo = (data->acpi_data.states[index].control >> RVO_SHIFT) & RVO_MASK;
767 data->exttype = (data->acpi_data.states[index].control >> EXT_TYPE_SHIFT) & EXT_TYPE_MASK;
768 data->plllock = (data->acpi_data.states[index].control >> PLL_L_SHIFT) & PLL_L_MASK;
769 data->vidmvs = 1 << ((data->acpi_data.states[index].control >> MVS_SHIFT) & MVS_MASK);
770 data->vstable = (data->acpi_data.states[index].control >> VST_SHIFT) & VST_MASK;
849 index = data->acpi_data.states[i].control & HW_PSTATE_MASK;
870 if (powernow_table[i].frequency != (data->acpi_data.states[i].core_frequency * 1000)) {
873 (unsigned int) (data->acpi_data.states[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/sleep/
H A Dmain.c148 suspend_state_t states[] = { local
154 if (acpi_state < 6 && states[acpi_state])
155 return pm_suspend(states[acpi_state]);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/oss/
H A Dcs46xx.c334 struct cs_state *states[2]; member in struct:cs_card
1490 state = card->states[0];
1520 state = card->states[1];
2022 state = card->states[0];
2129 state = card->states[1];
2251 state = card->states[1];
2258 state = card->states[0];
2268 state = card->states[0];
2276 state = card->states[1];
2317 state = card->states[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/input/
H A Dff-memless.c61 struct ml_effect_state states[FF_MEMLESS_EFFECTS]; member in struct:ml_device
136 state = &ml->states[i];
305 state = &ml->states[i];
389 __clear_bit(FF_EFFECT_PLAYING, &ml->states[i].flags);
399 struct ml_effect_state *state = &ml->states[effect_id];
436 struct ml_effect_state *state = &ml->states[effect->id];
511 ml->states[i].effect = &ff->effects[i];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/acpi/
H A Dprocessor.h26 * P, C and T states
81 struct acpi_processor_cx states[ACPI_PROCESSOR_MAX_POWER]; member in struct:acpi_processor_power
120 struct acpi_processor_px *states; member in struct:acpi_processor_performance
139 struct acpi_processor_tx states[ACPI_PROCESSOR_MAX_THROTTLING]; member in struct:acpi_processor_throttling

Completed in 192 milliseconds

123