Searched refs:NewByte (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitstream/ |
H A D | BitstreamWriter.h | 205 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 D | FuzzerDriver.cpp | 391 for (auto NewByte : ReplacementBytes) { in CleanseCrashInput() local 392 U[Idx] = NewByte; in CleanseCrashInput() 400 Printf("CLEANSE: Replaced byte %zd with 0x%x\n", Idx, NewByte); in CleanseCrashInput()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZISelLowering.cpp | 5346 int NewByte; in add() local 5347 if (!getShuffleInput(OpBytes, Byte, BytesPerElement, NewByte)) in add() 5349 if (NewByte < 0) { in add() 5353 Op = Op.getOperand(unsigned(NewByte) / SystemZ::VectorBytes); in add() 5354 Byte = unsigned(NewByte) % SystemZ::VectorBytes; in add()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGBuiltin.cpp | 1305 Value *NewByte = nullptr; in EmitBitTestIntrinsic() local 1311 NewByte = CGF.Builder.CreateXor(OldByte, Mask); in EmitBitTestIntrinsic() 1314 NewByte = CGF.Builder.CreateAnd(OldByte, CGF.Builder.CreateNot(Mask)); in EmitBitTestIntrinsic() 1317 NewByte = CGF.Builder.CreateOr(OldByte, Mask); in EmitBitTestIntrinsic() 1320 if (NewByte) in EmitBitTestIntrinsic() 1321 CGF.Builder.CreateStore(NewByte, ByteAddr); in EmitBitTestIntrinsic()
|