Searched refs:BitAnd (Results 1 – 10 of 10) sorted by relevance
/external/gemmlowp/fixedpoint/ |
D | fixedpoint_sse.h | 33 inline __m128i BitAnd(__m128i a, __m128i b) { 167 BitAnd(BitAnd(BitXor(a, rounded_half_sum), BitXor(b, rounded_half_sum)), 182 saturation_mask = BitAnd(MaskIfEqual(a, b), MaskIfEqual(a, min));
|
D | fixedpoint.h | 61 tIntegerType BitAnd(tIntegerType a, tIntegerType b) { 127 return BitXor(BitAnd(if_mask, then_val), BitAnd(BitNot(if_mask), else_val)); 282 const IntegerType remainder = BitAnd(x, mask); 284 Add(ShiftRight(mask, 1), BitAnd(MaskIfLessThan(x, zero), one)); 286 BitAnd(MaskIfGreaterThan(remainder, threshold), one)); 505 MAKE_FIXEDPOINT_BINARY_FUNC(operator&, BitAnd) 649 MaskIfNonZero(BitAnd(remainder, Dup<tRawType>(1 << kShiftAmount))), \
|
D | fixedpoint_neon.h | 32 inline int32x4_t BitAnd(int32x4_t a, int32x4_t b) {
|
/external/python/cpython2/Parser/ |
D | Python.asdl | 95 | RShift | BitOr | BitXor | BitAnd | FloorDiv
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
D | util.py | 314 _ast.BitAnd = type(m.body[6].value.left.left.op)
|
D | _ast_util.py | 51 BitAnd: '&',
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 19 RShift=8, BitOr=9, BitXor=10, BitAnd=11, FloorDiv=12 } enumerator
|
/external/python/cpython2/Python/ |
D | ast.c | 340 return BitAnd; in get_operator() 509 return BitAnd; in ast_for_augassign()
|
D | compile.c | 2234 case BitAnd: in binop() 2301 case BitAnd: in inplace_binop()
|
D | Python-ast.c | 3067 case BitAnd: in ast2obj_operator() 6246 *out = BitAnd; in obj2ast_operator()
|