Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGBuiltin.cpp995 Value *NewByte = nullptr; in EmitBitTestIntrinsic() local
1001 NewByte = CGF.Builder.CreateXor(OldByte, Mask); in EmitBitTestIntrinsic()
1004 NewByte = CGF.Builder.CreateAnd(OldByte, CGF.Builder.CreateNot(Mask)); in EmitBitTestIntrinsic()
1007 NewByte = CGF.Builder.CreateOr(OldByte, Mask); in EmitBitTestIntrinsic()
1010 if (NewByte) in EmitBitTestIntrinsic()
1011 CGF.Builder.CreateStore(NewByte, ByteAddr); in EmitBitTestIntrinsic()