Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamWriter.h135 void BackpatchByte(uint64_t BitNo, uint8_t NewByte) { in BackpatchByte() argument
147 &Out[ByteNo - NumOfFlushedBytes], NewByte, StartBit); in BackpatchByte()
182 Bytes, NewByte, StartBit); in BackpatchByte()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp390 for (auto NewByte : ReplacementBytes) { in CleanseCrashInput() local
391 U[Idx] = NewByte; in CleanseCrashInput()
399 Printf("CLEANSE: Replaced byte %zd with 0x%x\n", Idx, NewByte); in CleanseCrashInput()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp5345 int NewByte; in add() local
5346 if (!getShuffleInput(OpBytes, Byte, BytesPerElement, NewByte)) in add()
5348 if (NewByte < 0) { in add()
5352 Op = Op.getOperand(unsigned(NewByte) / SystemZ::VectorBytes); in add()
5353 Byte = unsigned(NewByte) % SystemZ::VectorBytes; in add()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp1295 Value *NewByte = nullptr; in EmitBitTestIntrinsic() local
1301 NewByte = CGF.Builder.CreateXor(OldByte, Mask); in EmitBitTestIntrinsic()
1304 NewByte = CGF.Builder.CreateAnd(OldByte, CGF.Builder.CreateNot(Mask)); in EmitBitTestIntrinsic()
1307 NewByte = CGF.Builder.CreateOr(OldByte, Mask); in EmitBitTestIntrinsic()
1310 if (NewByte) in EmitBitTestIntrinsic()
1311 CGF.Builder.CreateStore(NewByte, ByteAddr); in EmitBitTestIntrinsic()