Searched refs:op (Results 1 - 25 of 3500) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/acpi/acpica/
H A Dpswalk.c3 * Module Name: pswalk - Parser routines to walk parsed op tree(s)
64 union acpi_parse_object *op = subtree_root; local
72 while (op) {
76 if (op != parent) {
78 /* Look for an argument or child of the current op */
80 next = acpi_ps_get_arg(op, 0);
85 op = next;
92 next = op->common.next;
93 parent = op->common.parent;
95 acpi_ps_free_op(op);
[all...]
H A Dpsutils.c60 * DESCRIPTION: Create a Scope and associated namepath op with the root name
89 void acpi_ps_init_op(union acpi_parse_object *op, u16 opcode) argument
93 op->common.descriptor_type = ACPI_DESC_TYPE_PARSER;
94 op->common.aml_opcode = opcode;
96 ACPI_DISASM_ONLY_MEMBERS(ACPI_STRNCPY(op->common.aml_op_name,
99 sizeof(op->common.aml_op_name)));
110 * DESCRIPTION: Allocate an acpi_op, choose op type (and thus size) based on
118 union acpi_parse_object *op; local
140 /* The generic op (default) is by far the most common (16 to 1) */
142 op
172 acpi_ps_free_op(union acpi_parse_object *op) argument
216 acpi_ps_get_name(union acpi_parse_object * op) argument
234 acpi_ps_set_name(union acpi_parse_object *op, u32 name) argument
[all...]
H A Dpstree.c3 * Module Name: pstree - Parser op tree manipulation/traversal/search
54 union acpi_parse_object *acpi_ps_get_child(union acpi_parse_object *op);
61 * PARAMETERS: Op - Get an argument for this op
66 * DESCRIPTION: Get the specified op's argument.
70 union acpi_parse_object *acpi_ps_get_arg(union acpi_parse_object *op, u32 argn) argument
79 op_info = acpi_ps_get_opcode_info(op->common.aml_opcode);
98 arg = op->common.value.arg;
116 * DESCRIPTION: Append an argument to an op's argument list (a NULL arg is OK)
121 acpi_ps_append_arg(union acpi_parse_object *op, union acpi_parse_object *arg) argument
128 if (!op) {
195 acpi_ps_get_depth_next(union acpi_parse_object *origin, union acpi_parse_object *op) argument
266 acpi_ps_get_child(union acpi_parse_object *op) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/acpi/acpica/
H A Dpswalk.c3 * Module Name: pswalk - Parser routines to walk parsed op tree(s)
64 union acpi_parse_object *op = subtree_root; local
72 while (op) {
76 if (op != parent) {
78 /* Look for an argument or child of the current op */
80 next = acpi_ps_get_arg(op, 0);
85 op = next;
92 next = op->common.next;
93 parent = op->common.parent;
95 acpi_ps_free_op(op);
[all...]
H A Dpsutils.c60 * DESCRIPTION: Create a Scope and associated namepath op with the root name
89 void acpi_ps_init_op(union acpi_parse_object *op, u16 opcode) argument
93 op->common.descriptor_type = ACPI_DESC_TYPE_PARSER;
94 op->common.aml_opcode = opcode;
96 ACPI_DISASM_ONLY_MEMBERS(ACPI_STRNCPY(op->common.aml_op_name,
99 sizeof(op->common.aml_op_name)));
110 * DESCRIPTION: Allocate an acpi_op, choose op type (and thus size) based on
118 union acpi_parse_object *op; local
140 /* The generic op (default) is by far the most common (16 to 1) */
142 op
172 acpi_ps_free_op(union acpi_parse_object *op) argument
216 acpi_ps_get_name(union acpi_parse_object * op) argument
234 acpi_ps_set_name(union acpi_parse_object *op, u32 name) argument
[all...]
H A Dpstree.c3 * Module Name: pstree - Parser op tree manipulation/traversal/search
54 union acpi_parse_object *acpi_ps_get_child(union acpi_parse_object *op);
61 * PARAMETERS: Op - Get an argument for this op
66 * DESCRIPTION: Get the specified op's argument.
70 union acpi_parse_object *acpi_ps_get_arg(union acpi_parse_object *op, u32 argn) argument
79 op_info = acpi_ps_get_opcode_info(op->common.aml_opcode);
98 arg = op->common.value.arg;
116 * DESCRIPTION: Append an argument to an op's argument list (a NULL arg is OK)
121 acpi_ps_append_arg(union acpi_parse_object *op, union acpi_parse_object *arg) argument
128 if (!op) {
195 acpi_ps_get_depth_next(union acpi_parse_object *origin, union acpi_parse_object *op) argument
266 acpi_ps_get_child(union acpi_parse_object *op) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/x86/mm/kmemcheck/
H A Dopcode.c39 void kmemcheck_opcode_decode(const uint8_t *op, unsigned int *size) argument
45 for (; opcode_is_prefix(*op); ++op) {
46 if (*op == 0x66)
51 if (opcode_is_rex_prefix(*op)) {
52 uint8_t rex = *op;
54 ++op;
56 switch (*op) {
61 ++op;
63 switch (*op) {
98 kmemcheck_opcode_get_primary(const uint8_t *op) argument
[all...]
H A Dopcode.h6 void kmemcheck_opcode_decode(const uint8_t *op, unsigned int *size);
7 const uint8_t *kmemcheck_opcode_get_primary(const uint8_t *op);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/x86/mm/kmemcheck/
H A Dopcode.c39 void kmemcheck_opcode_decode(const uint8_t *op, unsigned int *size) argument
45 for (; opcode_is_prefix(*op); ++op) {
46 if (*op == 0x66)
51 if (opcode_is_rex_prefix(*op)) {
52 uint8_t rex = *op;
54 ++op;
56 switch (*op) {
61 ++op;
63 switch (*op) {
98 kmemcheck_opcode_get_primary(const uint8_t *op) argument
[all...]
H A Dopcode.h6 void kmemcheck_opcode_decode(const uint8_t *op, unsigned int *size);
7 const uint8_t *kmemcheck_opcode_get_primary(const uint8_t *op);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/lib/
H A Dint_sqrt.c13 unsigned long op, res, one; local
15 op = x;
19 while (one > op)
23 if (op >= res + one) {
24 op = op - (res + one);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/lib/
H A Dint_sqrt.c13 unsigned long op, res, one; local
15 op = x;
19 while (one > op)
23 if (op >= res + one) {
24 op = op - (res + one);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/sh/kernel/
H A Dkgdb.c19 #define OPCODE_BT(op) (((op) & 0xff00) == 0x8900)
20 #define OPCODE_BF(op) (((op) & 0xff00) == 0x8b00)
21 #define OPCODE_BTF_DISP(op) (((op) & 0x80) ? (((op) | 0xffffff80) << 1) : \
22 (((op) & 0x7f ) << 1))
23 #define OPCODE_BFS(op) (((op)
48 insn_size_t op = __raw_readw(linux_regs->pc); local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/sh/kernel/
H A Dkgdb.c19 #define OPCODE_BT(op) (((op) & 0xff00) == 0x8900)
20 #define OPCODE_BF(op) (((op) & 0xff00) == 0x8b00)
21 #define OPCODE_BTF_DISP(op) (((op) & 0x80) ? (((op) | 0xffffff80) << 1) : \
22 (((op) & 0x7f ) << 1))
23 #define OPCODE_BFS(op) (((op)
48 insn_size_t op = __raw_readw(linux_regs->pc); local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/net/can/
H A Dbcm.c166 struct bcm_op *op; local
175 list_for_each_entry(op, &bo->rx_ops, list) {
180 if (!op->frames_abs)
184 op->can_id, bcm_proc_getifname(ifname, op->ifindex));
185 seq_printf(m, "[%u]%c ", op->nframes,
186 (op->flags & RX_CHECK_DLC)?'d':' ');
187 if (op->kt_ival1.tv64)
190 ktime_to_us(op->kt_ival1));
192 if (op
244 bcm_can_tx(struct bcm_op *op) argument
286 bcm_send_to_user(struct bcm_op *op, struct bcm_msg_head *head, struct can_frame *frames, int has_timestamp) argument
348 struct bcm_op *op = (struct bcm_op *)data; local
394 struct bcm_op *op = container_of(hrtimer, struct bcm_op, timer); local
404 bcm_rx_changed(struct bcm_op *op, struct can_frame *data) argument
434 bcm_rx_update_and_send(struct bcm_op *op, struct can_frame *lastdata, const struct can_frame *rxdata) argument
478 bcm_rx_cmp_to_index(struct bcm_op *op, unsigned int index, const struct can_frame *rxdata) argument
514 bcm_rx_starttimer(struct bcm_op *op) argument
525 struct bcm_op *op = (struct bcm_op *)data; local
545 struct bcm_op *op = container_of(hrtimer, struct bcm_op, timer); local
564 bcm_rx_do_flush(struct bcm_op *op, int update, unsigned int index) argument
581 bcm_rx_thr_flush(struct bcm_op *op, int update) argument
602 struct bcm_op *op = (struct bcm_op *)data; local
614 struct bcm_op *op = container_of(hrtimer, struct bcm_op, thrtimer); local
633 struct bcm_op *op = (struct bcm_op *)data; local
696 struct bcm_op *op; local
706 bcm_remove_op(struct bcm_op *op) argument
726 bcm_rx_unreg(struct net_device *dev, struct bcm_op *op) argument
744 struct bcm_op *op, *n; local
789 struct bcm_op *op, *n; local
808 struct bcm_op *op = bcm_find_op(ops, msg_head->can_id, ifindex); local
832 struct bcm_op *op; local
994 struct bcm_op *op; local
1352 struct bcm_op *op; local
1428 struct bcm_op *op, *next; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/net/can/
H A Dbcm.c166 struct bcm_op *op; local
175 list_for_each_entry(op, &bo->rx_ops, list) {
180 if (!op->frames_abs)
184 op->can_id, bcm_proc_getifname(ifname, op->ifindex));
185 seq_printf(m, "[%u]%c ", op->nframes,
186 (op->flags & RX_CHECK_DLC)?'d':' ');
187 if (op->kt_ival1.tv64)
190 ktime_to_us(op->kt_ival1));
192 if (op
244 bcm_can_tx(struct bcm_op *op) argument
286 bcm_send_to_user(struct bcm_op *op, struct bcm_msg_head *head, struct can_frame *frames, int has_timestamp) argument
348 struct bcm_op *op = (struct bcm_op *)data; local
394 struct bcm_op *op = container_of(hrtimer, struct bcm_op, timer); local
404 bcm_rx_changed(struct bcm_op *op, struct can_frame *data) argument
434 bcm_rx_update_and_send(struct bcm_op *op, struct can_frame *lastdata, const struct can_frame *rxdata) argument
478 bcm_rx_cmp_to_index(struct bcm_op *op, unsigned int index, const struct can_frame *rxdata) argument
514 bcm_rx_starttimer(struct bcm_op *op) argument
525 struct bcm_op *op = (struct bcm_op *)data; local
545 struct bcm_op *op = container_of(hrtimer, struct bcm_op, timer); local
564 bcm_rx_do_flush(struct bcm_op *op, int update, unsigned int index) argument
581 bcm_rx_thr_flush(struct bcm_op *op, int update) argument
602 struct bcm_op *op = (struct bcm_op *)data; local
614 struct bcm_op *op = container_of(hrtimer, struct bcm_op, thrtimer); local
633 struct bcm_op *op = (struct bcm_op *)data; local
696 struct bcm_op *op; local
706 bcm_remove_op(struct bcm_op *op) argument
726 bcm_rx_unreg(struct net_device *dev, struct bcm_op *op) argument
744 struct bcm_op *op, *n; local
789 struct bcm_op *op, *n; local
808 struct bcm_op *op = bcm_find_op(ops, msg_head->can_id, ifindex); local
832 struct bcm_op *op; local
994 struct bcm_op *op; local
1352 struct bcm_op *op; local
1428 struct bcm_op *op, *next; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/net/wimax/
H A DMakefile6 op-msg.o \
7 op-reset.o \
8 op-rfkill.o \
9 op-state-get.o \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/net/wimax/
H A DMakefile6 op-msg.o \
7 op-reset.o \
8 op-rfkill.o \
9 op-state-get.o \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/ia64/include/asm/sn/
H A Dmspec.h26 #define FETCHOP_LOAD_OP(addr, op) ( \
27 *(volatile long *)((char*) (addr) + (op)))
29 #define FETCHOP_STORE_OP(addr, op, x) ( \
30 *(volatile long *)((char*) (addr) + (op)) = (long) (x))
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/ia64/include/asm/sn/
H A Dmspec.h26 #define FETCHOP_LOAD_OP(addr, op) ( \
27 *(volatile long *)((char*) (addr) + (op)))
29 #define FETCHOP_STORE_OP(addr, op, x) ( \
30 *(volatile long *)((char*) (addr) + (op)) = (long) (x))
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/zlib/
H A Dinffast.c91 unsigned op; /* code bits, operation, extra bits, or */ local
129 op = (unsigned)(here.bits);
130 hold >>= op; local
131 bits -= op;
132 op = (unsigned)(here.op);
133 if (op == 0) { /* literal */
139 else if (op & 16) { /* length base */
141 op &= 15; /* number of extra bits */
142 if (op) {
148 hold >>= op; local
161 hold >>= op; local
183 hold >>= op; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/zlib/
H A Dinffast.c91 unsigned op; /* code bits, operation, extra bits, or */ local
129 op = (unsigned)(here.bits);
130 hold >>= op; local
131 bits -= op;
132 op = (unsigned)(here.op);
133 if (op == 0) { /* literal */
139 else if (op & 16) { /* length base */
141 op &= 15; /* number of extra bits */
142 if (op) {
148 hold >>= op; local
161 hold >>= op; local
183 hold >>= op; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/zlib/
H A Dinffast.c91 unsigned op; /* code bits, operation, extra bits, or */ local
129 op = (unsigned)(here.bits);
130 hold >>= op; local
131 bits -= op;
132 op = (unsigned)(here.op);
133 if (op == 0) { /* literal */
139 else if (op & 16) { /* length base */
141 op &= 15; /* number of extra bits */
142 if (op) {
148 hold >>= op; local
161 hold >>= op; local
183 hold >>= op; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/fs/fscache/
H A Doperation.c25 * @op: The operation to enqueue
31 void fscache_enqueue_operation(struct fscache_operation *op) argument
34 op->object->debug_id, op->debug_id, atomic_read(&op->usage));
36 fscache_set_op_state(op, "EnQ");
38 ASSERT(list_empty(&op->pend_link));
39 ASSERT(op->processor != NULL);
40 ASSERTCMP(op->object->state, >=, FSCACHE_OBJECT_AVAILABLE);
41 ASSERTCMP(atomic_read(&op
66 fscache_run_op(struct fscache_object *object, struct fscache_operation *op) argument
84 fscache_submit_exclusive_op(struct fscache_object *object, struct fscache_operation *op) argument
141 fscache_report_unexpected_submission(struct fscache_object *object, struct fscache_operation *op, unsigned long ostate) argument
186 fscache_submit_op(struct fscache_object *object, struct fscache_operation *op) argument
266 struct fscache_operation *op; local
294 fscache_cancel_op(struct fscache_operation *op) argument
325 fscache_put_operation(struct fscache_operation *op) argument
399 struct fscache_operation *op; local
459 struct fscache_operation *op = local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/fs/fscache/
H A Doperation.c25 * @op: The operation to enqueue
31 void fscache_enqueue_operation(struct fscache_operation *op) argument
34 op->object->debug_id, op->debug_id, atomic_read(&op->usage));
36 fscache_set_op_state(op, "EnQ");
38 ASSERT(list_empty(&op->pend_link));
39 ASSERT(op->processor != NULL);
40 ASSERTCMP(op->object->state, >=, FSCACHE_OBJECT_AVAILABLE);
41 ASSERTCMP(atomic_read(&op
66 fscache_run_op(struct fscache_object *object, struct fscache_operation *op) argument
84 fscache_submit_exclusive_op(struct fscache_object *object, struct fscache_operation *op) argument
141 fscache_report_unexpected_submission(struct fscache_object *object, struct fscache_operation *op, unsigned long ostate) argument
186 fscache_submit_op(struct fscache_object *object, struct fscache_operation *op) argument
266 struct fscache_operation *op; local
294 fscache_cancel_op(struct fscache_operation *op) argument
325 fscache_put_operation(struct fscache_operation *op) argument
399 struct fscache_operation *op; local
459 struct fscache_operation *op = local
[all...]

Completed in 280 milliseconds

1234567891011>>