Home
last modified time | relevance | path

Searched refs:NewByte (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp387 for (auto NewByte : ReplacementBytes) { in CleanseCrashInput() local
388 U[Idx] = NewByte; in CleanseCrashInput()
396 Printf("CLEANSE: Replaced byte %zd with 0x%x\n", Idx, NewByte); in CleanseCrashInput()
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp4944 int NewByte; in add() local
4945 if (!getShuffleInput(OpBytes, Byte, BytesPerElement, NewByte)) in add()
4947 if (NewByte < 0) { in add()
4951 Op = Op.getOperand(unsigned(NewByte) / SystemZ::VectorBytes); in add()
4952 Byte = unsigned(NewByte) % SystemZ::VectorBytes; in add()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGBuiltin.cpp1010 Value *NewByte = nullptr; in EmitBitTestIntrinsic() local
1016 NewByte = CGF.Builder.CreateXor(OldByte, Mask); in EmitBitTestIntrinsic()
1019 NewByte = CGF.Builder.CreateAnd(OldByte, CGF.Builder.CreateNot(Mask)); in EmitBitTestIntrinsic()
1022 NewByte = CGF.Builder.CreateOr(OldByte, Mask); in EmitBitTestIntrinsic()
1025 if (NewByte) in EmitBitTestIntrinsic()
1026 CGF.Builder.CreateStore(NewByte, ByteAddr); in EmitBitTestIntrinsic()