Home
last modified time | relevance | path

Searched refs:op2 (Results 1 – 13 of 13) sorted by relevance

/device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/cmsis/
Dcore_cmSimd.h135 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SADD8(uint32_t op1, uint32_t op2)
139 __ASM volatile ("sadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) );
143 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __QADD8(uint32_t op1, uint32_t op2)
147 __ASM volatile ("qadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) );
151 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SHADD8(uint32_t op1, uint32_t op2)
155 __ASM volatile ("shadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) );
159 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UADD8(uint32_t op1, uint32_t op2)
163 __ASM volatile ("uadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) );
167 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UQADD8(uint32_t op1, uint32_t op2)
171 __ASM volatile ("uqadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) );
[all …]
Dcore_cmInstr.h524 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __ROR(uint32_t op1, uint32_t op2) in __ROR() argument
526 return (op1 >> op2) | (op1 << (32 - op2)); in __ROR()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Danalyze_dxp.py107 result = [((op1, op2), (opcode.opname[op1], opcode.opname[op2]), count)
110 for op2, count in enumerate(op1profile)
Dpindent.py483 def error_both(op1, op2): argument
484 sys.stderr.write('Error: You can not specify both '+op1+' and -'+op2[0]+' at the same time\n')
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
Dregsyntax.c245 onig_set_syntax_op2(OnigSyntaxType* syntax, unsigned int op2) in onig_set_syntax_op2() argument
247 syntax->op2 = op2; in onig_set_syntax_op2()
271 return syntax->op2; in onig_get_syntax_op2()
Donigposix.h118 unsigned int op2; member
Doniguruma.h403 unsigned int op2; member
801 void onig_set_syntax_op2 P_((OnigSyntaxType* syntax, unsigned int op2));
Dregparse.h315 #define IS_SYNTAX_OP2(syn, opm) (((syn)->op2 & (opm)) != 0)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_functoolsmodule.c36 PyObject *op2; in functools_reduce() local
44 op2 = PyIter_Next(it); in functools_reduce()
45 if (op2 == NULL) { in functools_reduce()
52 result = op2; in functools_reduce()
55 PyTuple_SetItem(args, 1, op2); in functools_reduce()
Dparsermodule.c2346 validate_chain_two_ops(node *tree, int (*termvalid)(node *), int op1, int op2) in validate_chain_two_ops() argument
2355 res = validate_ntype(CHILD(tree, pos), op2); in validate_chain_two_ops()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_functoolsmodule.c36 PyObject *op2; in functools_reduce() local
44 op2 = PyIter_Next(it); in functools_reduce()
45 if (op2 == NULL) { in functools_reduce()
52 result = op2; in functools_reduce()
55 PyTuple_SetItem(args, 1, op2); in functools_reduce()
Dparsermodule.c2375 validate_chain_two_ops(node *tree, int (*termvalid)(node *), int op1, int op2) in validate_chain_two_ops() argument
2384 res = validate_ntype(CHILD(tree, pos), op2); in validate_chain_two_ops()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Ddecimal.py1176 op2 = _WorkRep(other)
1177 op1, op2 = _normalize(op1, op2, context.prec)
1180 if op1.sign != op2.sign:
1182 if op1.int == op2.int:
1186 if op1.int < op2.int:
1187 op1, op2 = op2, op1
1191 op1.sign, op2.sign = op2.sign, op1.sign
1197 op1.sign, op2.sign = (0, 0)
1202 if op2.sign == 0:
1203 result.int = op1.int + op2.int
[all …]