Home
last modified time | relevance | path

Searched refs:op1 (Results 1 – 7 of 7) 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)
109 for op1, op1profile in enumerate(profile[:-1])
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/AppPkg/Applications/Python/Python-2.7.2/Lib/
Ddecimal.py1175 op1 = _WorkRep(self)
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
1189 if op1.sign == 1:
1191 op1.sign, op2.sign = op2.sign, op1.sign
1195 elif op1.sign == 1:
1197 op1.sign, op2.sign = (0, 0)
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dparsermodule.c2346 validate_chain_two_ops(node *tree, int (*termvalid)(node *), int op1, int op2) in validate_chain_two_ops() argument
2354 if (TYPE(CHILD(tree, pos)) != op1) in validate_chain_two_ops()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dparsermodule.c2375 validate_chain_two_ops(node *tree, int (*termvalid)(node *), int op1, int op2) in validate_chain_two_ops() argument
2383 if (TYPE(CHILD(tree, pos)) != op1) in validate_chain_two_ops()