Home
last modified time | relevance | path

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

/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()
/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp391 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()
/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp5723 int NewByte; in buildVector()
5724 if (!getShuffleInput(OpBytes, Byte, BytesPerElement, NewByte)) in buildVector()
5726 if (NewByte < 0) { in buildVector()
5730 Op = Op.getOperand(unsigned(NewByte) / SystemZ::VectorBytes); in buildVector()
5731 Byte = unsigned(NewByte) % SystemZ::VectorBytes; in buildVector()
5351 int NewByte; add() local
/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp1524 Value *NewByte = nullptr; in translateArmToMsvcIntrin()
1530 NewByte = CGF.Builder.CreateXor(OldByte, Mask); in translateArmToMsvcIntrin()
1533 NewByte = CGF.Builder.CreateAnd(OldByte, CGF.Builder.CreateNot(Mask)); in translateArmToMsvcIntrin()
1536 NewByte = CGF.Builder.CreateOr(OldByte, Mask); in translateArmToMsvcIntrin()
1539 if (NewByte) in translateArmToMsvcIntrin()
1540 CGF.Builder.CreateStore(NewByte, ByteAddr); in translateArmToMsvcIntrin()
1283 Value *NewByte = nullptr; EmitBitTestIntrinsic() local