Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamWriter.h205 void BackpatchByte(uint64_t BitNo, uint8_t NewByte) { in BackpatchByte() argument
217 &Buffer[ByteNo - NumOfFlushedBytes], NewByte, StartBit); in BackpatchByte()
255 Bytes, NewByte, StartBit); in BackpatchByte()
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp392 for (auto NewByte : ReplacementBytes) { in CleanseCrashInput() local
393 U[Idx] = NewByte; in CleanseCrashInput()
401 Printf("CLEANSE: Replaced byte %zd with 0x%x\n", Idx, NewByte); in CleanseCrashInput()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp1745 Value *NewByte = nullptr; in EmitBitTestIntrinsic() local
1751 NewByte = CGF.Builder.CreateXor(OldByte, Mask); in EmitBitTestIntrinsic()
1754 NewByte = CGF.Builder.CreateAnd(OldByte, CGF.Builder.CreateNot(Mask)); in EmitBitTestIntrinsic()
1757 NewByte = CGF.Builder.CreateOr(OldByte, Mask); in EmitBitTestIntrinsic()
1760 if (NewByte) in EmitBitTestIntrinsic()
1761 CGF.Builder.CreateStore(NewByte, ByteAddr); in EmitBitTestIntrinsic()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp5933 int NewByte; in add() local
5934 if (!getShuffleInput(OpBytes, Byte, BytesPerElement, NewByte)) in add()
5936 if (NewByte < 0) { in add()
5940 Op = Op.getOperand(unsigned(NewByte) / SystemZ::VectorBytes); in add()
5941 Byte = unsigned(NewByte) % SystemZ::VectorBytes; in add()