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

123

/netgear-R7800-V1.0.2.28/target/linux/ubicom32/files/arch/ubicom32/include/asm/
H A Dcachectl.h37 extern void mem_cache_control(unsigned long cc, unsigned long begin_addr, unsigned long end_addr, unsigned long op);
/netgear-R7800-V1.0.2.28/target/linux/ar71xx/image/lzma-loader/src/
H A Dcache.c20 #define cache_op(op,addr) \
28 : "i" (op), "R" (*(unsigned char *)(addr)))
H A Dloader.c137 SizeT ip, op; local
143 lzma_outsize, &op);
148 DBG("LzmaDecode error %d at %08x, osize:%d ip:%d op:%d\n",
149 ret, lzma_data + ip, lzma_outsize, ip, op);
/netgear-R7800-V1.0.2.28/target/linux/ubicom32/files/arch/ubicom32/mach-common/
H A Dcachectl.c49 #define ONE_CCR_ADDR_OP(cc, op_addr, op) \
61 : "a"(cc), "r"(op_addr), "r"(op & 0xff) \
71 unsigned long end_addr, unsigned long op)
75 if (dccr && op == CCR_CTRL_FLUSH_ADDR) {
107 ONE_CCR_ADDR_OP(cc, op_addr, op);
111 if (dccr && op == CCR_CTRL_FLUSH_ADDR) {
127 ONE_CCR_ADDR_OP(cc, cache_write_queue_flush_area, op);
70 mem_cache_control(unsigned long cc, unsigned long begin_addr, unsigned long end_addr, unsigned long op) argument
/netgear-R7800-V1.0.2.28/target/linux/amazon/files/drivers/net/ethernet/
H A Dadmmod.c214 unsigned int op; local
228 op = ADM_SW_BIT_MASK_4;
229 while (op)
231 if (op & ADM_SW_EEPROM_WRITE_ENABLE)
237 op >>= 1;
240 op = ADM_SW_BIT_MASK_1 << (EEPROM_TYPE - 3);
241 while (op)
245 op >>= 1;
258 unsigned int op; local
272 op
316 unsigned int op; local
434 unsigned int op; local
579 unsigned int op; local
698 unsigned int op; local
[all...]
/netgear-R7800-V1.0.2.28/target/linux/ubicom32/files/arch/ubicom32/kernel/
H A Dunaligned_trap.c303 unsigned int op; local
349 op = inst >> 27;
350 if (unlikely(op == 2 || op == 6)) {
355 format = op_format[op];
358 if (op == 0) {
360 } else if (op == 2) {
362 } else if (op == 6) {
499 if ((!(op == 2 && subop == MOVE_2)) &&
510 } else if (likely(op !
[all...]
H A Dsmp.c275 static void ipi_send(int cpu, enum ipi_message_type op) argument
287 p->ipi_pending |= 1 << op;
294 smp_debug(100, KERN_INFO "cpu[%d]: send: %d\n", cpu, op);
301 static inline void ipi_send_mask(unsigned int op, const struct cpumask mask) argument
305 ipi_send(cpu, op);
313 static inline void ipi_send_allbutself(unsigned int op) argument
319 ipi_send_mask(op, result);
/netgear-R7800-V1.0.2.28/target/linux/generic/files/crypto/ocf/kirkwood/mvHal/mv_hal/cpu/
H A DmvCpuL2Cntrs.c36 static void mvCpuL2CntrConfig(int counter, int op) argument
38 MV_U32 reg = (1 << op) | 0x1; /*enable*/
95 MV_STATUS mvCpuL2CntrsProgram(int counter, MV_CPU_L2_CNTRS_OPS op, argument
99 mvCpuL2CntrsTbl[counter].operation = op;
100 mvCpuL2CntrsTbl[counter].opIdx = op;
102 mvCpuL2CntrConfig(counter, op);
104 counter, op, overhead);
H A DmvCpuCntrs.c83 void program_counter(int counter, int op) argument
85 MV_U32 reg = (1 << op) | 0x1; /*enable*/
150 MV_STATUS mvCpuCntrsProgram(int counter, MV_CPU_CNTRS_OPS op, argument
158 if( mvCpuCntrsOpsTbl[counter][i] == op)
161 mvCpuCntrsTbl[counter].operation = op;
H A DmvCpuCntrs.h101 MV_STATUS mvCpuCntrsProgram(int counter, MV_CPU_CNTRS_OPS op,
111 void program_counter(int counter, int op);
H A DmvCpuL2Cntrs.h77 MV_STATUS mvCpuL2CntrsProgram(int counter, MV_CPU_L2_CNTRS_OPS op,
/netgear-R7800-V1.0.2.28/package/qca-nss-crypto/src/tool/
H A Dnss_crypto_bench.c342 uint32_t cipher_op; /**< encrypt(op=1) or decrypt(op=0) */
343 uint32_t auth_op; /**< auth(op=1) or none(op=0) */
512 struct crypto_op *op; local
519 op = list_first_entry(&op_head, struct crypto_op, node);
521 list_del(&op->node);
523 kfree(op->payload);
525 kmem_cache_free(crypto_op_zone, op);
555 struct crypto_op *op local
701 crypto_bench_prep_buf(struct crypto_op *op) argument
738 struct crypto_op *op; local
771 struct crypto_op *op; local
864 struct crypto_op *op; local
[all...]
/netgear-R7800-V1.0.2.28/target/linux/brcm63xx/image/lzma-loader/src/
H A Ddecompress.c47 #define cache_unroll(base,op) \
56 "i" (op));
/netgear-R7800-V1.0.2.28/target/linux/generic/image/lzma-loader/src/
H A Ddecompress.c47 #define cache_unroll(base,op) \
56 "i" (op));
/netgear-R7800-V1.0.2.28/target/linux/adm5120/image/lzma-loader/src/
H A Ddecompress.c62 #define cache_unroll(base,op) \
71 "i" (op));
165 SizeT ip, op; local
167 return LzmaDecode(vs, data, datalen, &ip, outStream, outSize, &op);
271 SizeT op; local
278 return LzmaDecode(vs, &lzma_callback, outStream, outSize, &op);
/netgear-R7800-V1.0.2.28/package/qca-ssdk/src/src/hsl/athena/
H A Dathena_fdb.c230 athena_fdb_commit(a_uint32_t dev_id, a_uint32_t op) argument
256 SW_SET_REG_BY_FIELD(ADDR_TABLE_FUNC0, AT_FUNC, op, entry);
283 if (ARL_LOAD_ENTRY == op)
287 else if ((ARL_PURGE_ENTRY == op)
288 || (ARL_FLUSH_PORT_UNICAST == op))
302 athena_atu_get(a_uint32_t dev_id, fal_fdb_entry_t * entry, a_uint32_t op) argument
307 a_uint32_t hwop = op;
309 if (ARL_NEXT_ENTRY == op)
323 if (ARL_NEXT_ENTRY == op)
328 if (ARL_FIRST_ENTRY == op)
[all...]
/netgear-R7800-V1.0.2.28/package/qca-ssdk/src/include/common/
H A Dshared_func.h41 #define SW_RTN_ON_NULL(op) \
43 if ((op) == NULL) \
/netgear-R7800-V1.0.2.28/package/qca-ssdk-shell/src/include/common/
H A Dshared_func.h41 #define SW_RTN_ON_NULL(op) \
43 if ((op) == NULL) \
/netgear-R7800-V1.0.2.28/target/linux/brcm47xx/image/lzma-loader/src/
H A Ddecompress.c47 #define cache_unroll(base,op) \
56 "i" (op));
/netgear-R7800-V1.0.2.28/package/qca-ssdk/src/src/hsl/garuda/
H A Dgaruda_fdb.c257 garuda_fdb_commit(a_uint32_t dev_id, a_uint32_t op) argument
264 a_uint32_t hwop = op;
349 garuda_atu_get(a_uint32_t dev_id, fal_fdb_entry_t * entry, a_uint32_t op) argument
354 a_uint32_t hwop = op;
356 if ((ARL_NEXT_ENTRY == op)
357 || (ARL_FIND_ENTRY == op))
371 if (ARL_NEXT_ENTRY == op)
376 if (ARL_FIRST_ENTRY == op)
413 if (ARL_NEXT_ENTRY == op)
417 else if ((ARL_FIND_ENTRY == op)
[all...]
H A Dgaruda_vlan.c90 garuda_vlan_commit(a_uint32_t dev_id, a_uint32_t op) argument
108 SW_SET_REG_BY_FIELD(VLAN_TABLE_FUNC0, VT_FUNC, op, val);
140 if (VLAN_LOAD_ENTRY == op)
144 else if (VLAN_PURGE_ENTRY == op)
157 if (VLAN_FIND_ENTRY == op)
160 if (VLAN_NEXT_ENTRY == op)
/netgear-R7800-V1.0.2.28/package/qca-ssdk/src/src/hsl/horus/
H A Dhorus_fdb.c261 horus_fdb_commit(a_uint32_t dev_id, a_uint32_t op) argument
268 a_uint32_t hwop = op;
353 horus_atu_get(a_uint32_t dev_id, fal_fdb_entry_t * entry, a_uint32_t op) argument
358 a_uint32_t hwop = op;
360 if ((ARL_NEXT_ENTRY == op)
361 || (ARL_FIND_ENTRY == op))
375 if (ARL_NEXT_ENTRY == op)
380 if (ARL_FIRST_ENTRY == op)
417 if (ARL_NEXT_ENTRY == op)
421 else if ((ARL_FIND_ENTRY == op)
[all...]
H A Dhorus_vlan.c109 horus_vlan_commit(a_uint32_t dev_id, a_uint32_t op) argument
127 SW_SET_REG_BY_FIELD(VLAN_TABLE_FUNC0, VT_FUNC, op, val);
158 if (VLAN_LOAD_ENTRY == op)
162 else if (VLAN_PURGE_ENTRY == op)
175 if (VLAN_FIND_ENTRY == op)
178 if (VLAN_NEXT_ENTRY == op)
/netgear-R7800-V1.0.2.28/package/qca-ssdk/src/src/hsl/shiva/
H A Dshiva_vlan.c90 shiva_vlan_commit(a_uint32_t dev_id, a_uint32_t op) argument
108 SW_SET_REG_BY_FIELD(VLAN_TABLE_FUNC0, VT_FUNC, op, val);
140 if (VLAN_LOAD_ENTRY == op)
144 else if (VLAN_PURGE_ENTRY == op)
157 if (VLAN_FIND_ENTRY == op)
160 if (VLAN_NEXT_ENTRY == op)
/netgear-R7800-V1.0.2.28/target/linux/ubicom32/files/arch/ubicom32/crypto/
H A Ddes_ubicom32.c274 static inline void ecb_des_cipher_n(struct ubicom32_des_ctx *uctx, enum des_ops op, u8 *out, u8 *in, unsigned int n) argument
276 switch (op) {
280 hw_crypto_set_ctrl(SEC_ALG_DES | (op == DES_ENCRYPT ? SEC_DIR_ENCRYPT : 0));
396 static inline void cbc_des_cipher_n(struct ubicom32_des_ctx *uctx, enum des_ops op, u8 *out, u8 *in, u8 *iv, unsigned int n) argument
398 switch (op) {
433 struct scatterlist *src, unsigned int nbytes, u32 extra_flags, enum des_ops op)
456 cbc_des_cipher_n(uctx, op, out, in, walk.iv, n);
458 ecb_des_cipher_n(uctx, op, out, in, n);
432 des_cipher(struct blkcipher_desc *desc, struct scatterlist *dst, struct scatterlist *src, unsigned int nbytes, u32 extra_flags, enum des_ops op) argument

Completed in 114 milliseconds

123