Searched refs:op (Results 76 - 100 of 1225) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Dplural.y53 enum expression_operator op;
65 new_exp (int nargs, enum expression_operator op,
81 newp->operation = op;
95 new_exp_0 (enum expression_operator op)
97 return new_exp (0, op, NULL);
101 new_exp_1 (enum expression_operator op, struct expression *right)
106 return new_exp (1, op, args);
110 new_exp_2 (enum expression_operator op, struct expression *left,
117 return new_exp (2, op, args);
121 new_exp_3 (enum expression_operator op, struc
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/kernel/
H A Dcentral.c62 static int __devinit clock_board_probe(struct platform_device *op, argument
73 p->clock_freq_regs = of_ioremap(&op->resource[0], 0,
74 resource_size(&op->resource[0]),
81 p->clock_regs = of_ioremap(&op->resource[1], 0,
82 resource_size(&op->resource[1]),
89 if (op->resource[2].flags) {
90 p->clock_ver_reg = of_ioremap(&op->resource[2], 0,
91 resource_size(&op->resource[2]),
110 p->leds_pdev.dev.parent = &op->dev;
128 of_iounmap(&op
160 fhc_probe(struct platform_device *op, const struct of_device_id *match) argument
[all...]
H A Dof_device_32.c244 static void __init build_device_resources(struct platform_device *op, argument
258 bus->count_cells(op->dev.of_node, &na, &ns);
260 preg = of_get_property(op->dev.of_node, bus->addr_prop_name, &num_reg);
270 op->resource = op->archdata.resource;
271 op->num_resources = num_reg;
273 struct resource *r = &op->resource[index];
276 struct device_node *dp = op->dev.of_node;
326 op->dev.of_node->full_name, index,
334 r->name = op
341 struct platform_device *op = kzalloc(sizeof(*op), GFP_KERNEL); local
446 struct platform_device *op = scan_one_device(dp, parent); local
[all...]
H A Dpower.c35 static int __devinit power_probe(struct platform_device *op, const struct of_device_id *match) argument
37 struct resource *res = &op->resource[0];
38 unsigned int irq = op->archdata.irqs[0];
43 op->dev.of_node->name, res->start);
45 if (has_button_interrupt(irq, op->dev.of_node)) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A Dviotape.c298 /* Allocate an op structure from our pool */
317 /* Return an op structure to our pool */
352 struct op_struct *op = get_op_struct(); local
354 if (op == NULL)
374 op->dev = tape_device[devi.devno];
375 op->buffer = dma_alloc_coherent(op->dev, count, &op->dmaaddr,
378 if (op->buffer == NULL) {
387 if (copy_from_user(op
439 struct op_struct *op = get_op_struct(); local
522 struct op_struct *op = get_op_struct(); local
698 struct op_struct *op = get_op_struct(); local
744 struct op_struct *op = get_op_struct(); local
813 struct op_struct *op; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/oss/
H A Ddev_table.c56 struct audio_operations *op; local
74 op = (struct audio_operations *) (sound_mem_blocks[sound_nblocks] = vmalloc(sizeof(struct audio_operations)));
79 if (d == NULL || op == NULL) {
84 memset((char *) op, 0, sizeof(struct audio_operations));
85 init_waitqueue_head(&op->in_sleeper);
86 init_waitqueue_head(&op->out_sleeper);
87 init_waitqueue_head(&op->poll_sleeper);
93 op->d = d;
94 strlcpy(op->name, name, sizeof(op
114 struct mixer_operations *op; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/
H A Dparavirt_types.h352 #define paravirt_type(op) \
353 [paravirt_typenum] "i" (PARAVIRT_PATCH(op)), \
354 [paravirt_opptr] "i" (&(op))
518 #define PVOP_TEST_NULL(op) BUG_ON(op == NULL)
520 #define PVOP_TEST_NULL(op) ((void)op)
523 #define ____PVOP_CALL(rettype, op, clbr, call_clbr, extra_clbr, \
528 PVOP_TEST_NULL(op); \
536 : paravirt_type(op), \
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dfscache-cache.h75 typedef void (*fscache_operation_release_t)(struct fscache_operation *op);
76 typedef void (*fscache_operation_processor_t)(struct fscache_operation *op);
85 #define FSCACHE_OP_ASYNC 0x0001 /* - async op, processor may sleep for disk */
87 #define FSCACHE_OP_WAITING 4 /* cleared when op is woken */
88 #define FSCACHE_OP_EXCLUSIVE 5 /* exclusive op, other ops must wait */
89 #define FSCACHE_OP_DEAD 6 /* op is now dead */
91 #define FSCACHE_OP_KEEP_FLAGS 0xc0 /* flags to keep when repurposing an op */
98 * the op in a non-pool thread */
124 * @op: The operation to initialise
130 static inline void fscache_operation_init(struct fscache_operation *op, argument
147 struct fscache_operation op; member in struct:fscache_retrieval
171 fscache_get_retrieval(struct fscache_retrieval *op) argument
183 fscache_enqueue_retrieval(struct fscache_retrieval *op) argument
194 fscache_put_retrieval(struct fscache_retrieval *op) argument
207 struct fscache_operation op; member in struct:fscache_storage
498 fscache_end_io(struct fscache_retrieval *op, struct page *page, int error) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/maps/
H A Dsun_uflash.c51 int uflash_devinit(struct platform_device *op, struct device_node *dp) argument
55 if (op->resource[1].flags) {
60 dp->full_name, (unsigned long long)op->resource[0].start);
74 up->map.size = resource_size(&op->resource[0]);
80 up->map.phys = op->resource[0].start;
82 up->map.virt = of_ioremap(&op->resource[0], 0, up->map.size,
96 of_iounmap(&op->resource[0], up->map.virt, up->map.size);
106 dev_set_drvdata(&op->dev, up);
111 static int __devinit uflash_probe(struct platform_device *op, const struct of_device_id *match) argument
113 struct device_node *dp = op
124 uflash_remove(struct platform_device *op) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/block/paride/
H A Don20.c27 #define op(f) w2(4);w0(f);w2(5);w2(0xd);w2(5);w2(0xd);w2(5);w2(4); macro
42 op(1); vl(r); op(0);
65 op(1); vl(r);
66 op(0); vl(val);
67 op(0); vl(val);
76 if (pi->mode) { op(2); vl(8); op(2); vl(9); }
77 else { op(2); vl(0); op(
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dfilter-sr-latin.c166 char *op; local
168 for (ip = input, op = output; ip < input_end; )
219 *op++ = *repl++;
222 *op++ = *repl++;
225 *op++ = *repl++;
237 *op++ = *ip++;
241 size_t output_len = op - output;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/lzo-2.06/src/
H A Dlzo1b_9x.c68 code_match ( LZO_COMPRESS_T *c, lzo_bytep op, lzo_uint m_len, lzo_uint m_off ) argument
77 *op++ = LZO_BYTE(((m_len - (M2_MIN_LEN - 2)) << M2O_BITS) |
80 *op++ = LZO_BYTE(m_off >> M2O_BITS);
91 *op++ = LZO_BYTE(M3_MARKER | (m_len - (M3_MIN_LEN - 1)));
96 *op++ = M4_MARKER;
102 *op++ = 0;
105 *op++ = LZO_BYTE(m_len);
108 *op++ = LZO_BYTE(m_off & M3O_MASK);
110 *op++ = LZO_BYTE(m_off >> M3O_BITS);
115 return op;
137 lzo_bytep op; local
[all...]
H A Dlzo1.c212 lzo_bytep op; local
219 op = out;
246 MEMCPY8_DS(op,ip,t);
251 MEMCPY_DS(op,ip,t);
257 const lzo_bytep m_pos = op - 1;
267 assert(m_pos < op);
269 *op++ = *m_pos++;
270 *op++ = *m_pos++;
271 MEMCPY_DS(op,m_pos,tt);
275 *out_len = pd(op, ou
292 store_run(lzo_bytep op, const lzo_bytep ii, lzo_uint r_len) argument
352 lzo_bytep op; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/include/
H A Dlibmsrpc.h571 * @param op Initialized parameters
575 int cac_LsaOpenPolicy(CacServerHandle *hnd, TALLOC_CTX *mem_ctx, struct LsaOpenPolicy *op);
618 * @param op input and output parameters
623 int cac_LsaGetNamesFromSids(CacServerHandle *hnd, TALLOC_CTX *mem_ctx, struct LsaGetNamesFromSids *op);
653 * @param op input and output parameters
658 int cac_LsaGetSidsFromNames(CacServerHandle *hnd, TALLOC_CTX *mem_ctx, struct LsaGetSidsFromNames *op);
683 * @param op input and output parameters
688 int cac_LsaFetchSid(CacServerHandle *hnd, TALLOC_CTX *mem_ctx, struct LsaFetchSid *op);
718 * @param op input and output parameters
719 * Note: for pre-Windows 2000 machines, only op
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/ppc/
H A Dmpegaudiodec_altivec.c30 #define SUM8(op, sum, w, p) \
32 op(sum, (w)[0 * 64], (p)[0 * 64]); \
33 op(sum, (w)[1 * 64], (p)[1 * 64]); \
34 op(sum, (w)[2 * 64], (p)[2 * 64]); \
35 op(sum, (w)[3 * 64], (p)[3 * 64]); \
36 op(sum, (w)[4 * 64], (p)[4 * 64]); \
37 op(sum, (w)[5 * 64], (p)[5 * 64]); \
38 op(sum, (w)[6 * 64], (p)[6 * 64]); \
39 op(sum, (w)[7 * 64], (p)[7 * 64]); \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/ppc/
H A Dmpegaudiodsp_altivec.c35 #define SUM8(op, sum, w, p) \
37 op(sum, (w)[0 * 64], (p)[0 * 64]); \
38 op(sum, (w)[1 * 64], (p)[1 * 64]); \
39 op(sum, (w)[2 * 64], (p)[2 * 64]); \
40 op(sum, (w)[3 * 64], (p)[3 * 64]); \
41 op(sum, (w)[4 * 64], (p)[4 * 64]); \
42 op(sum, (w)[5 * 64], (p)[5 * 64]); \
43 op(sum, (w)[6 * 64], (p)[6 * 64]); \
44 op(sum, (w)[7 * 64], (p)[7 * 64]); \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/metaflac/
H A Doptions.c243 Operation *op = find_shorthand_operation(options, OP__IMPORT_CUESHEET_FROM); local
244 if(0 != op) {
248 op->argument.import_cuesheet_from.add_seekpoint_link = &(op2->argument.add_seekpoint);
258 Operation *op; local
264 for(i = 0, op = options->ops.operations; i < options->ops.num_operations; i++, op++) {
265 switch(op->type) {
269 if(0 != op->argument.vc_field_name.value)
270 free(op->argument.vc_field_name.value);
273 if(0 != op
349 Operation *op; local
756 Operation op; local
766 Operation op; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/libmsrpc/test/lsa/
H A Dlsapol.c33 struct LsaOpenPolicy op; local
57 op.in.access = GENERIC_EXECUTE_ACCESS;
58 op.in.security_qos = True;
61 if(!cac_LsaOpenPolicy(hnd, mem_ctx, &op)) {
71 if(!cac_LsaClosePolicy(hnd, mem_ctx, op.out.pol)) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/
H A Dacdispat.h67 union acpi_parse_object *op);
71 union acpi_parse_object *op);
75 union acpi_parse_object *op);
79 union acpi_parse_object *op,
84 union acpi_parse_object *op);
93 union acpi_parse_object *op);
97 union acpi_parse_object *op);
116 acpi_ds_create_field(union acpi_parse_object *op,
121 acpi_ds_create_bank_field(union acpi_parse_object *op,
126 acpi_ds_create_index_field(union acpi_parse_object *op,
[all...]
H A Ddsutils.c170 acpi_ds_is_result_used(union acpi_parse_object * op, argument
175 ACPI_FUNCTION_TRACE_PTR(ds_is_result_used, op);
179 if (!op) {
204 if ((!op->common.parent) ||
205 (op->common.parent->common.aml_opcode == AML_SCOPE_OP)) {
211 acpi_ps_get_opcode_name(op->common.
219 acpi_ps_get_opcode_info(op->common.parent->common.aml_opcode);
221 ACPI_ERROR((AE_INFO, "Unknown parent opcode Op=%p", op));
234 switch (op->common.parent->common.aml_opcode) {
245 * If we are executing the predicate AND this is the predicate op,
340 acpi_ds_delete_result_if_not_used(union acpi_parse_object *op, union acpi_operand_object *result_obj, struct acpi_walk_state *walk_state) argument
786 union acpi_parse_object *op = walk_state->op; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/miscutils/
H A Dmt.c58 struct mtop op; local
86 op.mt_op = code->value;
88 op.mt_count = xatoi_u(argv[2]);
90 op.mt_count = 1; /* One, not zero, right? */
114 ioctl_or_perror_and_die(fd, MTIOCTOP, &op, "%s", file);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/xen/xenbus/
H A Dxenbus_client.c435 struct gnttab_map_grant_ref op = { local
448 op.host_addr = (unsigned long)area->addr;
450 if (HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, &op, 1))
453 if (op.status != GNTST_okay) {
455 xenbus_dev_fatal(dev, op.status,
458 return op.status;
462 area->phys_addr = (unsigned long)op.handle;
487 struct gnttab_map_grant_ref op = { local
494 if (HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, &op, 1))
497 if (op
524 struct gnttab_unmap_grant_ref op = { local
577 struct gnttab_unmap_grant_ref op = { local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libevent-1.4.14b-stable/WIN32-Code/
H A Dwin32.c131 realloc_fd_sets(struct win32op *op, size_t new_size) argument
135 assert(new_size >= op->readset_in->fd_count &&
136 new_size >= op->writeset_in->fd_count);
140 if (!(op->readset_in = realloc(op->readset_in, size)))
142 if (!(op->writeset_in = realloc(op->writeset_in, size)))
144 if (!(op->readset_out = realloc(op->readset_out, size)))
146 if (!(op
161 get_event_entry(struct win32op *op, SOCKET s, int create) argument
179 do_fd_set(struct win32op *op, struct event_entry *ent, int read) argument
205 do_fd_clear(struct win32op *op, struct event_entry *ent, int read) argument
273 win32_insert(void *op, struct event *ev) argument
304 win32_del(void *op, struct event *ev) argument
350 win32_dispatch(struct event_base *base, void *op, struct timeval *tv) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/sbus/char/
H A Dbbc_i2c.c54 static void set_device_claimage(struct bbc_i2c_bus *bp, struct platform_device *op, int val) argument
59 if (bp->devs[i].device == op) {
71 struct platform_device *op = NULL; local
75 if (!(op = bp->devs[i].device))
79 op = NULL;
85 return op;
89 struct bbc_i2c_client *bbc_i2c_attach(struct bbc_i2c_bus *bp, struct platform_device *op) argument
98 client->op = op;
100 reg = of_get_property(op
117 struct platform_device *op = client->op; local
300 attach_one_i2c(struct platform_device *op, int index) argument
364 bbc_i2c_probe(struct platform_device *op, const struct of_device_id *match) argument
389 bbc_i2c_remove(struct platform_device *op) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/dbreg/
H A Ddbreg_rec.c53 __dbreg_register_recover(env, dbtp, lsnp, op, info)
57 db_recops op;
87 if ((DB_REDO(op) ||
88 op == DB_TXN_OPENFILES || op == DB_TXN_POPENFILES))
94 if (DB_UNDO(op))
108 if (DB_UNDO(op) || op == DB_TXN_POPENFILES)
114 if (DB_UNDO(op) ||
115 op
[all...]

Completed in 191 milliseconds

1234567891011>>