Searched refs:ExtendedOpcodes (Results 1 – 3 of 3) sorted by relevance
/packages/modules/NetworkStack/src/android/net/apf/ |
D | ApfV6GeneratorBase.java | 95 return append(new Instruction(ExtendedOpcodes.ALLOCATE)); in addAllocateR0() 105 return append(new Instruction(ExtendedOpcodes.ALLOCATE, Rbit1).addU16(size)); in addAllocate() 135 return append(new Instruction(ExtendedOpcodes.EXCEPTIONBUFFER).addU16(bufSize)); in addExceptionBuffer() 154 return append(new Instruction(ExtendedOpcodes.TRANSMIT, Rbit0).addU8(ipOfs).addU8(255)); in addTransmit() 170 return append(new Instruction(ExtendedOpcodes.TRANSMIT, isUdp ? Rbit1 : Rbit0) in addTransmitL4() 222 return append(new Instruction(ExtendedOpcodes.EWRITE1, reg)); in addWriteU8() 230 return append(new Instruction(ExtendedOpcodes.EWRITE2, reg)); in addWriteU16() 238 return append(new Instruction(ExtendedOpcodes.EWRITE4, reg)); in addWriteU32() 292 return append(new Instruction(ExtendedOpcodes.EPKTDATACOPYIMM, Rbit1).addU8(len)); in addDataCopyFromR0() 304 return append(new Instruction(ExtendedOpcodes.EPKTDATACOPYIMM, Rbit0).addU8(len)); in addPacketCopyFromR0() [all …]
|
D | ApfV4GeneratorBase.java | 556 return append(new BaseApfGenerator.Instruction(ExtendedOpcodes.LDM, slot.value, r)); in addLoadFromMemory() 565 return append(new Instruction(ExtendedOpcodes.STM, slot.value, r)); in addStoreToMemory() 572 return append(new Instruction(ExtendedOpcodes.NOT, r)); in addNot() 579 return append(new Instruction(ExtendedOpcodes.NEG, r)); in addNeg() 586 return append(new Instruction(ExtendedOpcodes.SWAP)); in addSwap() 594 return append(new Instruction(ExtendedOpcodes.MOVE, r)); in addMove()
|
D | BaseApfGenerator.java | 118 enum ExtendedOpcodes { enum in BaseApfGenerator 198 ExtendedOpcodes(int value) { in ExtendedOpcodes() method in BaseApfGenerator.ExtendedOpcodes 369 Instruction(ExtendedOpcodes extendedOpcodes, Rbit rbit) { in Instruction() 374 Instruction(ExtendedOpcodes extendedOpcodes, Register register) { in Instruction() 379 Instruction(ExtendedOpcodes extendedOpcodes, int slot, Register register) in Instruction() 392 Instruction(ExtendedOpcodes extendedOpcodes) { in Instruction() 520 != ExtendedOpcodes.EXCEPTIONBUFFER.value) { in updateExceptionBufferSize()
|