Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp342 for (auto NewByte : ReplacementBytes) { in CleanseCrashInput() local
343 U[Idx] = NewByte; in CleanseCrashInput()
351 Printf("CLEANSE: Replaced byte %zd with 0x%x\n", Idx, NewByte); in CleanseCrashInput()
/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp4093 int NewByte; in add() local
4094 if (!getShuffleInput(OpBytes, Byte, BytesPerElement, NewByte)) in add()
4096 if (NewByte < 0) { in add()
4100 Op = Op.getOperand(unsigned(NewByte) / SystemZ::VectorBytes); in add()
4101 Byte = unsigned(NewByte) % SystemZ::VectorBytes; in add()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp733 Value *NewByte = nullptr; in EmitBitTestIntrinsic() local
739 NewByte = CGF.Builder.CreateXor(OldByte, Mask); in EmitBitTestIntrinsic()
742 NewByte = CGF.Builder.CreateAnd(OldByte, CGF.Builder.CreateNot(Mask)); in EmitBitTestIntrinsic()
745 NewByte = CGF.Builder.CreateOr(OldByte, Mask); in EmitBitTestIntrinsic()
748 if (NewByte) in EmitBitTestIntrinsic()
749 CGF.Builder.CreateStore(NewByte, ByteAddr); in EmitBitTestIntrinsic()