Searched refs:state (Results 1 - 25 of 2636) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/arch-pxa/
H A Dpm.h10 extern int pxa_pm_prepare(suspend_state_t state);
11 extern int pxa_pm_enter(suspend_state_t state);
12 extern int pxa_pm_finish(suspend_state_t state);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/utilities/
H A Dutstate.c3 * Module Name: utstate - state object support procedures
53 * PARAMETERS: Object - Object to be added to the new state
55 * state_list - List the state will be added to
59 * DESCRIPTION: Create a new state and push it
68 union acpi_generic_state *state; local
72 state =
74 if (!state) {
78 acpi_ut_push_generic_state(state_list, state);
86 * PARAMETERS: list_head - Head of the state stack
91 * DESCRIPTION: Push a state objec
96 acpi_ut_push_generic_state(union acpi_generic_state **list_head, union acpi_generic_state *state) argument
124 union acpi_generic_state *state; local
156 union acpi_generic_state *state; local
186 union acpi_generic_state *state; local
230 union acpi_generic_state *state; local
267 union acpi_generic_state *state; local
304 union acpi_generic_state *state; local
336 acpi_ut_delete_generic_state(union acpi_generic_state *state) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/e2p/
H A Dps.c3 * ps.c - Print filesystem state
22 void print_fs_state(FILE *f, unsigned short state) argument
24 fprintf(f, (state & EXT2_VALID_FS ? " clean" : " not clean"));
25 if (state & EXT2_ERROR_FS)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Drandom32.c48 static u32 __random32(struct rnd_state *state) argument
52 state->s1 = TAUSWORTHE(state->s1, 13, 19, 4294967294UL, 12);
53 state->s2 = TAUSWORTHE(state->s2, 2, 25, 4294967288UL, 4);
54 state->s3 = TAUSWORTHE(state->s3, 3, 11, 4294967280UL, 17);
56 return (state->s1 ^ state->s2 ^ state
59 __set_random32(struct rnd_state *state, unsigned long s) argument
88 struct rnd_state *state = &get_cpu_var(net_rand_state); local
104 struct rnd_state *state = &get_cpu_var(net_rand_state); local
119 struct rnd_state *state = &per_cpu(net_rand_state,i); local
136 struct rnd_state *state = &per_cpu(net_rand_state,i); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/partitions/
H A Damiga.h5 int amiga_partition(struct parsed_partitions *state, struct block_device *bdev);
H A Dsysv68.h1 extern int sysv68_partition(struct parsed_partitions *state, struct block_device *bdev);
H A Dultrix.h5 int ultrix_partition(struct parsed_partitions *state, struct block_device *bdev);
H A Dacorn.h10 int adfspart_check_CUMANA(struct parsed_partitions *state, struct block_device *bdev);
11 int adfspart_check_ADFS(struct parsed_partitions *state, struct block_device *bdev);
12 int adfspart_check_ICS(struct parsed_partitions *state, struct block_device *bdev);
13 int adfspart_check_POWERTEC(struct parsed_partitions *state, struct block_device *bdev);
14 int adfspart_check_EESOX(struct parsed_partitions *state, struct block_device *bdev);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/zlib_inflate/
H A Dinflate.c25 struct inflate_state *state; local
27 if (strm == NULL || strm->state == NULL) return Z_STREAM_ERROR;
28 state = (struct inflate_state *)strm->state;
29 strm->total_in = strm->total_out = state->total = 0;
32 state->mode = HEAD;
33 state->last = 0;
34 state->havedict = 0;
35 state->dmax = 32768U;
36 state
51 struct inflate_state *state; local
79 zlib_fixedtables(struct inflate_state *state) argument
104 struct inflate_state *state; local
149 struct inflate_state *state; local
320 struct inflate_state *state; local
763 struct inflate_state *state = (struct inflate_state *)z->state; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavutil/
H A Drandom.h33 unsigned int mt[AV_RANDOM_N]; ///< the array for the state vector
39 attribute_deprecated void av_init_random(unsigned int seed, AVRandomState *state);
41 void av_random_init(AVRandomState *state, unsigned int seed); ///< To be inlined, the struct must be visible. So it does not make sense to try and keep it opaque with malloc/free-like calls.
42 void av_random_generate_untempered_numbers(AVRandomState *state); ///< Regenerate the untempered numbers (must be done every 624 iterations, or it will loop).
48 * generator from lfg.c/h or a simple LCG like state = state*1664525+1013904223.
52 static inline unsigned int av_random(AVRandomState *state) argument
57 if (state->index >= AV_RANDOM_N)
58 av_random_generate_untempered_numbers(state);
61 y = state
73 av_random_real1(AVRandomState *state) argument
[all...]
H A Drandom.c40 void av_random_init(AVRandomState *state, unsigned int seed) argument
51 state->mt[0] = seed & 0xffffffff;
53 unsigned int prev= state->mt[index - 1];
54 state->mt[index] = (1812433253UL * (prev ^ (prev>>30)) + index) & 0xffffffff;
56 state->index= index; // Will cause it to generate untempered numbers in the first iteration.
60 void av_init_random(unsigned int seed, AVRandomState *state) argument
62 av_random_init(state, seed);
68 void av_random_generate_untempered_numbers(AVRandomState *state) argument
74 y = (state->mt[kk] & UPPER_MASK) | (state
93 AVRandomState state; local
[all...]
H A Dlfg.h26 unsigned int state[64]; member in struct:__anon743
35 * Please also consider a simple LCG like state= state*1664525+1013904223,
39 c->state[c->index & 63] = c->state[(c->index-24) & 63] + c->state[(c->index-55) & 63];
40 return c->state[c->index++ & 63];
49 unsigned int a= c->state[(c->index-55) & 63];
50 unsigned int b= c->state[(c->index-24) & 63];
51 return c->state[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/include/libavutil/
H A Drandom.h33 unsigned int mt[AV_RANDOM_N]; ///< the array for the state vector
39 attribute_deprecated void av_init_random(unsigned int seed, AVRandomState *state);
41 void av_random_init(AVRandomState *state, unsigned int seed); ///< To be inlined, the struct must be visible. So it does not make sense to try and keep it opaque with malloc/free-like calls.
42 void av_random_generate_untempered_numbers(AVRandomState *state); ///< Regenerate the untempered numbers (must be done every 624 iterations, or it will loop).
48 * generator from lfg.c/h or a simple LCG like state = state*1664525+1013904223.
52 static inline unsigned int av_random(AVRandomState *state) argument
57 if (state->index >= AV_RANDOM_N)
58 av_random_generate_untempered_numbers(state);
61 y = state
73 av_random_real1(AVRandomState *state) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/
H A Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
95 local void fixedtables OF((struct inflate_state FAR *state));
106 struct inflate_state FAR *state; local
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
109 state = (struct inflate_state FAR *)strm->state;
110 strm->total_in = strm->total_out = state->total = 0;
113 state
133 struct inflate_state FAR *state; local
150 struct inflate_state FAR *state; local
272 struct inflate_state state; local
327 struct inflate_state FAR *state; local
558 struct inflate_state FAR *state; local
[all...]
H A Dinfback.c19 local void fixedtables OF((struct inflate_state FAR *state));
35 struct inflate_state FAR *state; local
49 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
51 if (state == Z_NULL) return Z_MEM_ERROR;
53 strm->state = (struct internal_state FAR *)state;
54 state->dmax = 32768U;
55 state->wbits = windowBits;
56 state->wsize = 1U << windowBits;
57 state
248 struct inflate_state FAR *state; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/
H A Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
95 local void fixedtables OF((struct inflate_state FAR *state));
106 struct inflate_state FAR *state; local
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
109 state = (struct inflate_state FAR *)strm->state;
110 strm->total_in = strm->total_out = state->total = 0;
113 state
133 struct inflate_state FAR *state; local
150 struct inflate_state FAR *state; local
272 struct inflate_state state; local
327 struct inflate_state FAR *state; local
558 struct inflate_state FAR *state; local
[all...]
H A Dinfback.c19 local void fixedtables OF((struct inflate_state FAR *state));
35 struct inflate_state FAR *state; local
49 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
51 if (state == Z_NULL) return Z_MEM_ERROR;
53 strm->state = (struct internal_state FAR *)state;
54 state->dmax = 32768U;
55 state->wbits = windowBits;
56 state->wsize = 1U << windowBits;
57 state
248 struct inflate_state FAR *state; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/ubiqx/
H A Ddebugparse.c89 dbg_Token dbg_char2token( dbg_Token *state, int c ) argument
93 * Input: state - A pointer to a token variable. This is used to
94 * maintain the parser state between calls. For
96 * state variable and initialize it to dbg_null.
108 * This resets the parser to its initial state
151 *state = dbg_null; /* Set state to null (initial state) so */
155 *state = dbg_null; /* A newline or eoln resets to the null state
266 state = dbg_null; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dvgastate.c2 * linux/drivers/video/vgastate.c -- VGA state save/restore
48 static void save_vga_text(struct vgastate *state, void __iomem *fbbase) argument
50 struct regstate *saved = (struct regstate *) state->vidstate;
56 misc = vga_r(state->vgabase, VGA_MIS_R);
59 vga_r(state->vgabase, iobase + 0xa);
60 vga_w(state->vgabase, VGA_ATT_W, 0x00);
61 attr10 = vga_rattr(state->vgabase, 0x10);
62 vga_r(state->vgabase, iobase + 0xa);
63 vga_w(state->vgabase, VGA_ATT_W, 0x20);
69 gr4 = vga_rgfx(state
138 restore_vga_text(struct vgastate *state, void __iomem *fbbase) argument
226 save_vga_mode(struct vgastate *state) argument
257 restore_vga_mode(struct vgastate *state) argument
309 save_vga_cmap(struct vgastate *state) argument
322 restore_vga_cmap(struct vgastate *state) argument
335 vga_cleanup(struct vgastate *state) argument
350 save_vga(struct vgastate *state) argument
458 restore_vga(struct vgastate *state) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/boot/
H A Dgunzip_util.h23 * - use gunzip_start() to initialize the state, associating it
39 void gunzip_start(struct gunzip_state *state, void *src, int srclen);
40 int gunzip_partial(struct gunzip_state *state, void *dst, int dstlen);
41 void gunzip_exactly(struct gunzip_state *state, void *dst, int len);
42 void gunzip_discard(struct gunzip_state *state, int len);
43 int gunzip_finish(struct gunzip_state *state, void *dst, int len);
H A Dgunzip_util.c25 * @state: decompressor state structure to be initialized
31 * state in @state. The other functions in this file can then be used
36 * in @state and the other functions in this file will simply copy
42 void gunzip_start(struct gunzip_state *state, void *src, int srclen) argument
47 memset(state, 0, sizeof(*state));
54 state->s.workspace = state
101 gunzip_partial(struct gunzip_state *state, void *dst, int dstlen) argument
139 gunzip_exactly(struct gunzip_state *state, void *dst, int dstlen) argument
164 gunzip_discard(struct gunzip_state *state, int len) argument
192 gunzip_finish(struct gunzip_state *state, void *dst, int dstlen) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/
H A Dppp_deflate.c62 static void z_comp_free(void *state);
63 static void z_decomp_free(void *state);
64 static int z_comp_init(void *state, unsigned char *options,
67 static int z_decomp_init(void *state, unsigned char *options,
70 static int z_compress(void *state, unsigned char *rptr,
73 static void z_incomp(void *state, unsigned char *ibuf, int icnt);
74 static int z_decompress(void *state, unsigned char *ibuf,
76 static void z_comp_reset(void *state);
77 static void z_decomp_reset(void *state);
78 static void z_comp_stats(void *state, struc
86 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg; local
111 struct ppp_deflate_state *state; local
165 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg; local
193 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg; local
213 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg; local
295 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg; local
306 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg; local
331 struct ppp_deflate_state *state; local
384 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg; local
413 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg; local
443 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg; local
548 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppdump/
H A Ddeflate.c71 static void z_decomp_free __P((void *state));
72 static int z_decomp_init __P((void *state, u_char *options, int opt_len,
74 static void z_incomp __P((void *state, u_char *dmsg, int len));
75 static int z_decompress __P((void *state, u_char *cmp, int inlen,
77 static void z_decomp_reset __P((void *state));
78 static void z_comp_stats __P((void *state, struct compstat *stats));
119 struct deflate_state *state = (struct deflate_state *) arg; local
122 *stats = state->stats;
141 struct deflate_state *state; local
153 state
174 struct deflate_state *state = (struct deflate_state *) arg; local
186 struct deflate_state *state = (struct deflate_state *) arg; local
210 struct deflate_state *state = (struct deflate_state *) arg; local
238 struct deflate_state *state = (struct deflate_state *) arg; local
310 struct deflate_state *state = (struct deflate_state *) arg; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/networking/
H A Disrv.h16 void isrv_want_rd(isrv_state_t *state, int fd);
17 void isrv_want_wr(isrv_state_t *state, int fd);
18 void isrv_dont_want_rd(isrv_state_t *state, int fd);
19 void isrv_dont_want_wr(isrv_state_t *state, int fd);
20 int isrv_register_fd(isrv_state_t *state, int peer, int fd);
21 void isrv_close_fd(isrv_state_t *state, int fd);
22 int isrv_register_peer(isrv_state_t *state, void *param);
27 int (*new_peer)(isrv_state_t *state, int fd),
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/irda/irlan/
H A Dirlan_event.c41 void irlan_next_client_state(struct irlan_cb *self, IRLAN_STATE state) argument
43 IRDA_DEBUG(2, "%s(), %s\n", __FUNCTION__ , irlan_state[state]);
48 self->client.state = state;
51 void irlan_next_provider_state(struct irlan_cb *self, IRLAN_STATE state) argument
53 IRDA_DEBUG(2, "%s(), %s\n", __FUNCTION__ , irlan_state[state]);
58 self->provider.state = state;

Completed in 168 milliseconds

1234567891011>>