Home
last modified time | relevance | path

Searched refs:BitAnd (Results 1 – 14 of 14) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/minddata/dataset/util/
Dbuddy.cc31 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/
Dfixed_point.c85 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/
DPython.asdl100 | RShift | BitOr | BitXor | BitAnd | FloorDiv
Dparser.c2715 _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/
Dpycore_ast.h26 LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12, enumerator
/third_party/python/Python/
Dast_unparse.c161 case BitAnd: op = " & "; pr = PR_BAND; break; in append_ast_binop()
Dast_opt.c275 case BitAnd: in fold_binop()
Dcompile.c3630 case BitAnd: in binop()
3667 case BitAnd: in inplace_binop()
DPython-ast.c4711 case BitAnd: in ast2obj_operator()
9756 *out = BitAnd; in obj2ast_operator()
/third_party/python/Grammar/
Dpython.gram116 | '&=' { _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/
DSIInstrInfo.td2078 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/
Dspirv_hlsl.cpp4707 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/
Dast.rst418 BitAnd
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch95160 /* 92 */ "BitAnd" OpHelp("r[P3]=r[P1]&r[P2]"),
132821 /* 102 */ "BitAnd" OpHelp("r[P3]=r[P1]&r[P2]"),