Searched refs:BitAnd (Results 1 – 14 of 14) sorted by relevance
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/util/ |
D | buddy.cc | 31 inline uint64_t BitAnd(uint64_t rhs, uint64_t lhs) { return rhs & lhs; } in BitAnd() function 176 val = BitLeftShift(BitAnd(byte, 0x0F), shift); in GetBuddySegState() 180 val = BitLeftShift(BitAnd(byte, 0x30), shift); in GetBuddySegState() 182 val = BitLeftShift(BitAnd(byte, 0x03), shift); in GetBuddySegState() 186 if (BitAnd(val, ONE_BIT)) { in GetBuddySegState() 188 } else if (BitAnd(val, TWO_BIT)) { in GetBuddySegState() 190 } else if (BitAnd(val, MORE_BIT)) { in GetBuddySegState() 191 log_t lg = BitAnd(val, 0x0F); in GetBuddySegState() 197 *st = BitAnd(val, ALLOC_BIT) ? STATE::kAlloc : STATE::kFree; in GetBuddySegState() 228 val = BitAnd(val, ~(static_cast<uint64_t>(ALLOC_BIT))); in SetBuddySegState() [all …]
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/int8/ |
D | fixed_point.c | 85 int32_t BitAnd(int32_t a, int32_t b) { return (uint32_t)a & (uint32_t)b; } in BitAnd() function 93 int BitsSelect(int mask, int bound, int val) { return BitXor(BitAnd(mask, bound), BitAnd(BitNot(mas… in BitsSelect() 193 *result = BitsSelect(MaskIfNonZero(BitAnd(remainder, (1 << (uint32_t)total_shift))), in exp_barrel_shifter()
|
/third_party/python/Parser/ |
D | Python.asdl | 100 | RShift | BitOr | BitXor | BitAnd | FloorDiv
|
D | parser.c | 2715 _res = _PyPegen_augoperator ( p , BitAnd ); in augassign_rule() 13345 _res = _PyAST_BinOp ( a , BitAnd , b , EXTRA ); in bitwise_and_raw()
|
/third_party/python/Include/internal/ |
D | pycore_ast.h | 26 LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12, enumerator
|
/third_party/python/Python/ |
D | ast_unparse.c | 161 case BitAnd: op = " & "; pr = PR_BAND; break; in append_ast_binop()
|
D | ast_opt.c | 275 case BitAnd: in fold_binop()
|
D | compile.c | 3630 case BitAnd: in binop() 3667 case BitAnd: in inplace_binop()
|
D | Python-ast.c | 4711 case BitAnd: in ast2obj_operator() 9756 *out = BitAnd; in obj2ast_operator()
|
/third_party/python/Grammar/ |
D | python.gram | 116 | '&=' { _PyPegen_augoperator(p, BitAnd) } 640 | a=bitwise_and '&' b=shift_expr { _PyAST_BinOp(a, BitAnd, b, EXTRA) }
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | SIInstrInfo.td | 2078 class BitAnd<bit a, bit b> { 2148 field bit HasFPClamp = BitAnd<isFloatType<DstVT>.ret, HasClamp>.ret; 2151 field bit HasClampHi = BitAnd<isPackedType<DstVT>.ret, HasClamp>.ret;
|
/third_party/skia/third_party/externals/spirv-cross/ |
D | spirv_hlsl.cpp | 4707 HLSL_GROUP_OP(BitwiseAnd, BitAnd, false) in emit_subgroup_op() 4710 HLSL_GROUP_OP_CAST(LogicalAnd, BitAnd, uint_type) in emit_subgroup_op()
|
/third_party/python/Doc/library/ |
D | ast.rst | 418 BitAnd
|
/third_party/chromium/patch/ |
D | 0003-3.2-Beta3-1115.patch | 95160 /* 92 */ "BitAnd" OpHelp("r[P3]=r[P1]&r[P2]"), 132821 /* 102 */ "BitAnd" OpHelp("r[P3]=r[P1]&r[P2]"),
|