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

/haiku-fatelf/src/tools/docbook/libxml2/
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
9977 xmlRelaxNGStatesPtr states = NULL, res = NULL; local
10130 xmlRelaxNGStatesPtr states = NULL; local
10420 xmlRelaxNGStatesPtr states, res; local
[all...]
H A Dxmlregexp.c220 /* knowing states ponting to us can speed things up */
248 xmlRegStatePtr *states; member in struct:_xmlAutomata
261 xmlRegStatePtr *states; member in struct:_xmlRegexp
307 * A stack of rollback states
424 ret->states = ctxt->states;
450 * 1/ counting the effective number of states left
463 if (ret->states[i] != NULL) {
471 printf("Final: %d states\n", nbstates);
550 state = ret->states[
[all...]
/haiku-fatelf/src/bin/network/tcpdump/
H A Dprint-hsrp.c55 /* HSRP states and associated names. */
56 static struct tok states[] = { variable in typeref:struct:tok
114 printf("state=%s ", tok2str(states, "Unknown (%d)", hp->hsrp_state));
/haiku-fatelf/src/add-ons/input_server/filters/shortcut_catcher/
H A DCommandActuators.cpp692 uint8* states = &fStates[i * 16]; local
699 int32 key = _LookupKeyCode(map, keys, map->normal_map, next, states
702 key = _LookupKeyCode(map, keys, map->shift_map, next, states,
706 key = _LookupKeyCode(map, keys, map->caps_map, next, states,
711 states, mod, B_LEFT_SHIFT_KEY | B_SHIFT_KEY
715 key = _LookupKeyCode(map, keys, map->option_map, next, states,
720 states, mod, B_LEFT_OPTION_KEY | B_OPTION_KEY
725 states, mod, B_LEFT_OPTION_KEY | B_OPTION_KEY
730 next, states, mod, B_LEFT_OPTION_KEY | B_OPTION_KEY
734 key = _LookupKeyCode(map, keys, map->control_map, next, states,
[all...]
/haiku-fatelf/src/preferences/cpufrequency/
H A DDriverInterface.cpp33 freq_info states[MAX_CPU_FREQUENCY_STATES]; local
34 ret = ioctl(fDriverHandler, GET_CPU_FREQ_STATES, &states,
39 for (int i = 0; i < MAX_CPU_FREQUENCY_STATES && states[i].frequency != 0;
41 fFrequencyStates->AddItem(new freq_info(states[i]));
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dpattern.c75 xsltStepStatePtr states; member in struct:_xsltStepStates
422 xsltPatPushState(xsltStepStates *states, int step, xmlNodePtr node) { argument
423 if ((states->states == NULL) || (states->maxstates <= 0)) {
424 states->maxstates = 4;
425 states->nbstates = 0;
426 states->states = xmlMalloc(4 * sizeof(xsltStepState));
428 else if (states
561 xsltStepStates states = {0, 0, NULL}; /* // may require backtrack */ local
[all...]
/haiku-fatelf/src/add-ons/input_server/devices/keyboard/
H A DKeyboardInputDevice.cpp280 uint8 states[16]; local
283 memset(states, 0, sizeof(states));
325 if (states[i] != 0) {
340 states[(keycode) >> 3] |= (1 << (7 - (keycode & 0x7)));
342 states[(keycode) >> 3] &= (!(1 << (7 - (keycode & 0x7))));
346 && (states[fCommandKey >> 3] & (1 << (7 - (fCommandKey & 0x7))))
347 && (states[fControlKey >> 3] & (1 << (7 - (fControlKey & 0x7))))) {
405 message->AddData("states", B_UINT8_TYPE, states, 1
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/
H A Dar5416_misc.c422 int states; member in struct:__anon167
493 if (check->states & dcu_chain_state) {
507 if (check->states & dcu_complete_state) {
511 if (check->states & qcu_stitch_state) {
515 if (check->states & qcu_fetch_state) {
519 if (check->states & qcu_complete_state) {
523 return (found_states == check->states);
534 .states = dcu_chain_state
541 .states = qcu_stitch_state
/haiku-fatelf/src/add-ons/input_server/methods/pen/
H A DPenInputServerMethod.cpp139 char states[16];
143 mDown->AddData("states", 'UBYT', states, sizeof(states));
/haiku-fatelf/src/add-ons/kernel/file_cache/
H A Drule_based_prefetcher.cpp130 struct list states; member in struct:team_rules
224 // free rule states
227 while ((state = (rule_state *)list_remove_head_item(&states)) != NULL) {
573 list_init(&fRules->states);
601 // allocate states for all rules found
618 list_add_item(&fRules->states, state);
632 while ((state = (rule_state *)list_get_next_item(&fRules->states, state)) != NULL) {
666 while ((state = (rule_state *)list_get_next_item(&fRules->states, state)) != NULL) {
/haiku-fatelf/src/bin/gdb/include/
H A Dxtensa-isa-internal.h200 xtensa_state_internal *states; member in struct:xtensa_isa_internal_struct
/haiku-fatelf/src/bin/gdb/bfd/
H A Dxtensa-isa.c256 isa->state_lookup_table[n].key = isa->states[n].name;
1494 return intisa->states[st].name;
1503 return intisa->states[st].num_bits;
1512 if ((intisa->states[st].flags & XTENSA_STATE_IS_EXPORTED) != 0)
H A Dxtensa-modules.c83 /* Processor states. */ variable
85 static xtensa_state_internal states[] = {
9111 NUM_STATES, states, 0,
/haiku-fatelf/src/add-ons/translators/icns/openjpeg/
H A Dj2k.c1655 int states; member in struct:opj_dec_mstabent
1938 if (!(j2k->state & e->states)) {
2039 if (!(j2k->state & e->states)) {
/haiku-fatelf/src/add-ons/accelerants/radeon_hd/atombios/
H A Datombios.h2802 =0: Multiple power states supported from PowerPlay table.
2805 Bit[5]=1: Enable CDLW for all driver control power states. Max HT width is from SBIOS, while Min HT width is determined by display requirement.
2807 Bit[6]=1: High Voltage requested for all power states. In this case, voltage will be forced at 1.1v and powerplay table voltage drop/throttling request will be ignored.
7624 //how many states we have
7627 ATOM_PPLIB_STATE_V2 states[1]; member in struct:_StateArray
7643 //how many non-clock levels we have. normally should be same as number of states
7734 UCHAR ucClockInfoIndex; //highest 2 bits indicates memory p-states, lower 6bits indicates index to ClockInfoArrary
7749 // ATOM_PPLIB_VCE_State_Table states;
7780 UCHAR ucClockInfoIndex; //highest 2 bits indicates memory p-states, lower 6bits indicates index to ClockInfoArrary
7795 // ATOM_PPLIB_UVD_State_Table states;
[all...]

Completed in 220 milliseconds