Home
last modified time | relevance | path

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

/netbsd-src/sys/external/bsd/compiler_rt/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp4655 int NewByte; in add() local
4656 if (!getShuffleInput(OpBytes, Byte, BytesPerElement, NewByte)) in add()
4658 if (NewByte < 0) { in add()
4662 Op = Op.getOperand(unsigned(NewByte) / SystemZ::VectorBytes); in add()
4663 Byte = unsigned(NewByte) % SystemZ::VectorBytes; in add()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGBuiltin.cpp971 Value *NewByte = nullptr; in EmitBitTestIntrinsic() local
977 NewByte = CGF.Builder.CreateXor(OldByte, Mask); in EmitBitTestIntrinsic()
980 NewByte = CGF.Builder.CreateAnd(OldByte, CGF.Builder.CreateNot(Mask)); in EmitBitTestIntrinsic()
983 NewByte = CGF.Builder.CreateOr(OldByte, Mask); in EmitBitTestIntrinsic()
986 if (NewByte) in EmitBitTestIntrinsic()
987 CGF.Builder.CreateStore(NewByte, ByteAddr); in EmitBitTestIntrinsic()