public final class io.reactivex.internal.queue.SpscLinkedArrayQueue<T> implements io.reactivex.internal.fuseable.SimplePlainQueue<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.queue.SpscLinkedArrayQueue
  super_class: java.lang.Object
{
  static final int MAX_LOOK_AHEAD_STEP;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  final java.util.concurrent.atomic.AtomicLong producerIndex;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0010) ACC_FINAL

  int producerLookAheadStep;
    descriptor: I
    flags: (0x0000) 

  long producerLookAhead;
    descriptor: J
    flags: (0x0000) 

  final int producerMask;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  java.util.concurrent.atomic.AtomicReferenceArray<java.lang.Object> producerBuffer;
    descriptor: Ljava/util/concurrent/atomic/AtomicReferenceArray;
    flags: (0x0000) 
    Signature: Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;

  final int consumerMask;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  java.util.concurrent.atomic.AtomicReferenceArray<java.lang.Object> consumerBuffer;
    descriptor: Ljava/util/concurrent/atomic/AtomicReferenceArray;
    flags: (0x0000) 
    Signature: Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;

  final java.util.concurrent.atomic.AtomicLong consumerIndex;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0010) ACC_FINAL

  private static final java.lang.Object HAS_NEXT;
    descriptor: Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 33
            ldc "jctools.spsc.max.lookahead.step"
            sipush 4096
            invokestatic java.lang.Integer.getInteger:(Ljava/lang/String;I)Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            putstatic io.reactivex.internal.queue.SpscLinkedArrayQueue.MAX_LOOK_AHEAD_STEP:I
         1: .line 46
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putstatic io.reactivex.internal.queue.SpscLinkedArrayQueue.HAS_NEXT:Ljava/lang/Object;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
        start local 1 // int bufferSize
         0: .line 48
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 34
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerIndex:Ljava/util/concurrent/atomic/AtomicLong;
         2: .line 44
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.consumerIndex:Ljava/util/concurrent/atomic/AtomicLong;
         3: .line 49
            bipush 8
            iload 1 /* bufferSize */
            invokestatic java.lang.Math.max:(II)I
            invokestatic io.reactivex.internal.util.Pow2.roundToPowerOfTwo:(I)I
            istore 2 /* p2capacity */
        start local 2 // int p2capacity
         4: .line 50
            iload 2 /* p2capacity */
            iconst_1
            isub
            istore 3 /* mask */
        start local 3 // int mask
         5: .line 51
            new java.util.concurrent.atomic.AtomicReferenceArray
            dup
            iload 2 /* p2capacity */
            iconst_1
            iadd
            invokespecial java.util.concurrent.atomic.AtomicReferenceArray.<init>:(I)V
            astore 4 /* buffer */
        start local 4 // java.util.concurrent.atomic.AtomicReferenceArray buffer
         6: .line 52
            aload 0 /* this */
            aload 4 /* buffer */
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerBuffer:Ljava/util/concurrent/atomic/AtomicReferenceArray;
         7: .line 53
            aload 0 /* this */
            iload 3 /* mask */
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerMask:I
         8: .line 54
            aload 0 /* this */
            iload 2 /* p2capacity */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.adjustLookAheadStep:(I)V
         9: .line 55
            aload 0 /* this */
            aload 4 /* buffer */
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.consumerBuffer:Ljava/util/concurrent/atomic/AtomicReferenceArray;
        10: .line 56
            aload 0 /* this */
            iload 3 /* mask */
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.consumerMask:I
        11: .line 57
            aload 0 /* this */
            iload 3 /* mask */
            iconst_1
            isub
            i2l
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerLookAhead:J
        12: .line 58
            aload 0 /* this */
            lconst_0
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.soProducerIndex:(J)V
        13: .line 59
            return
        end local 4 // java.util.concurrent.atomic.AtomicReferenceArray buffer
        end local 3 // int mask
        end local 2 // int p2capacity
        end local 1 // int bufferSize
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            0   14     1  bufferSize  I
            4   14     2  p2capacity  I
            5   14     3        mask  I
            6   14     4      buffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
    MethodParameters:
            Name  Flags
      bufferSize  final

  public boolean offer();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=9, args_size=2
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
        start local 1 // java.lang.Object e
         0: .line 68
            aload 1 /* e */
            ifnonnull 2
         1: .line 69
            new java.lang.NullPointerException
            dup
            ldc "Null is not a valid element"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 72
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerBuffer:Ljava/util/concurrent/atomic/AtomicReferenceArray;
            astore 2 /* buffer */
        start local 2 // java.util.concurrent.atomic.AtomicReferenceArray buffer
         3: .line 73
            aload 0 /* this */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.lpProducerIndex:()J
            lstore 3 /* index */
        start local 3 // long index
         4: .line 74
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerMask:I
            istore 5 /* mask */
        start local 5 // int mask
         5: .line 75
            lload 3 /* index */
            iload 5 /* mask */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.calcWrappedOffset:(JI)I
            istore 6 /* offset */
        start local 6 // int offset
         6: .line 76
            lload 3 /* index */
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerLookAhead:J
            lcmp
            ifge 8
         7: .line 77
            aload 0 /* this */
            aload 2 /* buffer */
            aload 1 /* e */
            lload 3 /* index */
            iload 6 /* offset */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.writeToQueue:(Ljava/util/concurrent/atomic/AtomicReferenceArray;Ljava/lang/Object;JI)Z
            ireturn
         8: .line 79
      StackMap locals: io.reactivex.internal.queue.SpscLinkedArrayQueue java.lang.Object java.util.concurrent.atomic.AtomicReferenceArray long int int
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerLookAheadStep:I
            istore 7 /* lookAheadStep */
        start local 7 // int lookAheadStep
         9: .line 81
            lload 3 /* index */
            iload 7 /* lookAheadStep */
            i2l
            ladd
            iload 5 /* mask */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.calcWrappedOffset:(JI)I
            istore 8 /* lookAheadElementOffset */
        start local 8 // int lookAheadElementOffset
        10: .line 82
            aload 2 /* buffer */
            iload 8 /* lookAheadElementOffset */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.lvElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;I)Ljava/lang/Object;
            ifnonnull 13
        11: .line 83
            aload 0 /* this */
            lload 3 /* index */
            iload 7 /* lookAheadStep */
            i2l
            ladd
            lconst_1
            lsub
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerLookAhead:J
        12: .line 84
            aload 0 /* this */
            aload 2 /* buffer */
            aload 1 /* e */
            lload 3 /* index */
            iload 6 /* offset */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.writeToQueue:(Ljava/util/concurrent/atomic/AtomicReferenceArray;Ljava/lang/Object;JI)Z
            ireturn
        13: .line 85
      StackMap locals: int int
      StackMap stack:
            aload 2 /* buffer */
            lload 3 /* index */
            lconst_1
            ladd
            iload 5 /* mask */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.calcWrappedOffset:(JI)I
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.lvElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;I)Ljava/lang/Object;
            ifnonnull 15
        14: .line 86
            aload 0 /* this */
            aload 2 /* buffer */
            aload 1 /* e */
            lload 3 /* index */
            iload 6 /* offset */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.writeToQueue:(Ljava/util/concurrent/atomic/AtomicReferenceArray;Ljava/lang/Object;JI)Z
            ireturn
        15: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* buffer */
            lload 3 /* index */
            iload 6 /* offset */
            aload 1 /* e */
            iload 5 /* mask */
            i2l
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.resize:(Ljava/util/concurrent/atomic/AtomicReferenceArray;JILjava/lang/Object;J)V
        16: .line 89
            iconst_1
            ireturn
        end local 8 // int lookAheadElementOffset
        end local 7 // int lookAheadStep
        end local 6 // int offset
        end local 5 // int mask
        end local 3 // long index
        end local 2 // java.util.concurrent.atomic.AtomicReferenceArray buffer
        end local 1 // java.lang.Object e
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   17     0                    this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            0   17     1                       e  TT;
            3   17     2                  buffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
            4   17     3                   index  J
            5   17     5                    mask  I
            6   17     6                  offset  I
            9   17     7           lookAheadStep  I
           10   17     8  lookAheadElementOffset  I
    Signature: (TT;)Z
    MethodParameters:
      Name  Flags
      e     final

  private boolean writeToQueue(java.util.concurrent.atomic.AtomicReferenceArray<java.lang.Object>, T, long, );
    descriptor: (Ljava/util/concurrent/atomic/AtomicReferenceArray;Ljava/lang/Object;JI)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
        start local 1 // java.util.concurrent.atomic.AtomicReferenceArray buffer
        start local 2 // java.lang.Object e
        start local 3 // long index
        start local 5 // int offset
         0: .line 95
            aload 1 /* buffer */
            iload 5 /* offset */
            aload 2 /* e */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.soElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;ILjava/lang/Object;)V
         1: .line 96
            aload 0 /* this */
            lload 3 /* index */
            lconst_1
            ladd
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.soProducerIndex:(J)V
         2: .line 97
            iconst_1
            ireturn
        end local 5 // int offset
        end local 3 // long index
        end local 2 // java.lang.Object e
        end local 1 // java.util.concurrent.atomic.AtomicReferenceArray buffer
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            0    3     1  buffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
            0    3     2       e  TT;
            0    3     3   index  J
            0    3     5  offset  I
    Signature: (Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;TT;JI)Z
    MethodParameters:
        Name  Flags
      buffer  final
      e       final
      index   final
      offset  final

  private void resize(java.util.concurrent.atomic.AtomicReferenceArray<java.lang.Object>, long, int, T, );
    descriptor: (Ljava/util/concurrent/atomic/AtomicReferenceArray;JILjava/lang/Object;J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=10, args_size=6
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
        start local 1 // java.util.concurrent.atomic.AtomicReferenceArray oldBuffer
        start local 2 // long currIndex
        start local 4 // int offset
        start local 5 // java.lang.Object e
        start local 6 // long mask
         0: .line 102
            aload 1 /* oldBuffer */
            invokevirtual java.util.concurrent.atomic.AtomicReferenceArray.length:()I
            istore 8 /* capacity */
        start local 8 // int capacity
         1: .line 103
            new java.util.concurrent.atomic.AtomicReferenceArray
            dup
            iload 8 /* capacity */
            invokespecial java.util.concurrent.atomic.AtomicReferenceArray.<init>:(I)V
            astore 9 /* newBuffer */
        start local 9 // java.util.concurrent.atomic.AtomicReferenceArray newBuffer
         2: .line 104
            aload 0 /* this */
            aload 9 /* newBuffer */
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerBuffer:Ljava/util/concurrent/atomic/AtomicReferenceArray;
         3: .line 105
            aload 0 /* this */
            lload 2 /* currIndex */
            lload 6 /* mask */
            ladd
            lconst_1
            lsub
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerLookAhead:J
         4: .line 106
            aload 9 /* newBuffer */
            iload 4 /* offset */
            aload 5 /* e */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.soElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;ILjava/lang/Object;)V
         5: .line 107
            aload 0 /* this */
            aload 1 /* oldBuffer */
            aload 9 /* newBuffer */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.soNext:(Ljava/util/concurrent/atomic/AtomicReferenceArray;Ljava/util/concurrent/atomic/AtomicReferenceArray;)V
         6: .line 108
            aload 1 /* oldBuffer */
            iload 4 /* offset */
            getstatic io.reactivex.internal.queue.SpscLinkedArrayQueue.HAS_NEXT:Ljava/lang/Object;
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.soElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;ILjava/lang/Object;)V
         7: .line 110
            aload 0 /* this */
            lload 2 /* currIndex */
            lconst_1
            ladd
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.soProducerIndex:(J)V
         8: .line 111
            return
        end local 9 // java.util.concurrent.atomic.AtomicReferenceArray newBuffer
        end local 8 // int capacity
        end local 6 // long mask
        end local 5 // java.lang.Object e
        end local 4 // int offset
        end local 2 // long currIndex
        end local 1 // java.util.concurrent.atomic.AtomicReferenceArray oldBuffer
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            0    9     1  oldBuffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
            0    9     2  currIndex  J
            0    9     4     offset  I
            0    9     5          e  TT;
            0    9     6       mask  J
            1    9     8   capacity  I
            2    9     9  newBuffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
    Signature: (Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;JITT;J)V
    MethodParameters:
           Name  Flags
      oldBuffer  final
      currIndex  final
      offset     final
      e          final
      mask       final

  private void soNext(java.util.concurrent.atomic.AtomicReferenceArray<java.lang.Object>, java.util.concurrent.atomic.AtomicReferenceArray<java.lang.Object>);
    descriptor: (Ljava/util/concurrent/atomic/AtomicReferenceArray;Ljava/util/concurrent/atomic/AtomicReferenceArray;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
        start local 1 // java.util.concurrent.atomic.AtomicReferenceArray curr
        start local 2 // java.util.concurrent.atomic.AtomicReferenceArray next
         0: .line 114
            aload 1 /* curr */
            aload 1 /* curr */
            invokevirtual java.util.concurrent.atomic.AtomicReferenceArray.length:()I
            iconst_1
            isub
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.calcDirectOffset:(I)I
            aload 2 /* next */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.soElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;ILjava/lang/Object;)V
         1: .line 115
            return
        end local 2 // java.util.concurrent.atomic.AtomicReferenceArray next
        end local 1 // java.util.concurrent.atomic.AtomicReferenceArray curr
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            0    2     1  curr  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
            0    2     2  next  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
    Signature: (Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;)V
    MethodParameters:
      Name  Flags
      curr  
      next  

  private java.util.concurrent.atomic.AtomicReferenceArray<java.lang.Object> lvNextBufferAndUnlink(java.util.concurrent.atomic.AtomicReferenceArray<java.lang.Object>, int);
    descriptor: (Ljava/util/concurrent/atomic/AtomicReferenceArray;I)Ljava/util/concurrent/atomic/AtomicReferenceArray;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
        start local 1 // java.util.concurrent.atomic.AtomicReferenceArray curr
        start local 2 // int nextIndex
         0: .line 119
            iload 2 /* nextIndex */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.calcDirectOffset:(I)I
            istore 3 /* nextOffset */
        start local 3 // int nextOffset
         1: .line 120
            aload 1 /* curr */
            iload 3 /* nextOffset */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.lvElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;I)Ljava/lang/Object;
            checkcast java.util.concurrent.atomic.AtomicReferenceArray
            astore 4 /* nextBuffer */
        start local 4 // java.util.concurrent.atomic.AtomicReferenceArray nextBuffer
         2: .line 121
            aload 1 /* curr */
            iload 3 /* nextOffset */
            aconst_null
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.soElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;ILjava/lang/Object;)V
         3: .line 122
            aload 4 /* nextBuffer */
            areturn
        end local 4 // java.util.concurrent.atomic.AtomicReferenceArray nextBuffer
        end local 3 // int nextOffset
        end local 2 // int nextIndex
        end local 1 // java.util.concurrent.atomic.AtomicReferenceArray curr
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            0    4     1        curr  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
            0    4     2   nextIndex  I
            1    4     3  nextOffset  I
            2    4     4  nextBuffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
    Signature: (Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;I)Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
    MethodParameters:
           Name  Flags
      curr       
      nextIndex  

  public T poll();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
         0: .line 134
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.consumerBuffer:Ljava/util/concurrent/atomic/AtomicReferenceArray;
            astore 1 /* buffer */
        start local 1 // java.util.concurrent.atomic.AtomicReferenceArray buffer
         1: .line 135
            aload 0 /* this */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.lpConsumerIndex:()J
            lstore 2 /* index */
        start local 2 // long index
         2: .line 136
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.consumerMask:I
            istore 4 /* mask */
        start local 4 // int mask
         3: .line 137
            lload 2 /* index */
            iload 4 /* mask */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.calcWrappedOffset:(JI)I
            istore 5 /* offset */
        start local 5 // int offset
         4: .line 138
            aload 1 /* buffer */
            iload 5 /* offset */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.lvElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;I)Ljava/lang/Object;
            astore 6 /* e */
        start local 6 // java.lang.Object e
         5: .line 139
            aload 6 /* e */
            getstatic io.reactivex.internal.queue.SpscLinkedArrayQueue.HAS_NEXT:Ljava/lang/Object;
            if_acmpne 6
            iconst_1
            goto 7
      StackMap locals: io.reactivex.internal.queue.SpscLinkedArrayQueue java.util.concurrent.atomic.AtomicReferenceArray long int int java.lang.Object
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: istore 7 /* isNextBuffer */
        start local 7 // boolean isNextBuffer
         8: .line 140
            aload 6 /* e */
            ifnull 12
            iload 7 /* isNextBuffer */
            ifne 12
         9: .line 141
            aload 1 /* buffer */
            iload 5 /* offset */
            aconst_null
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.soElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;ILjava/lang/Object;)V
        10: .line 142
            aload 0 /* this */
            lload 2 /* index */
            lconst_1
            ladd
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.soConsumerIndex:(J)V
        11: .line 143
            aload 6 /* e */
            areturn
        12: .line 144
      StackMap locals: int
      StackMap stack:
            iload 7 /* isNextBuffer */
            ifeq 14
        13: .line 145
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* buffer */
            iload 4 /* mask */
            iconst_1
            iadd
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.lvNextBufferAndUnlink:(Ljava/util/concurrent/atomic/AtomicReferenceArray;I)Ljava/util/concurrent/atomic/AtomicReferenceArray;
            lload 2 /* index */
            iload 4 /* mask */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.newBufferPoll:(Ljava/util/concurrent/atomic/AtomicReferenceArray;JI)Ljava/lang/Object;
            areturn
        14: .line 148
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 7 // boolean isNextBuffer
        end local 6 // java.lang.Object e
        end local 5 // int offset
        end local 4 // int mask
        end local 2 // long index
        end local 1 // java.util.concurrent.atomic.AtomicReferenceArray buffer
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            1   15     1        buffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
            2   15     2         index  J
            3   15     4          mask  I
            4   15     5        offset  I
            5   15     6             e  Ljava/lang/Object;
            8   15     7  isNextBuffer  Z
    Signature: ()TT;
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.Nullable()

  private T newBufferPoll(java.util.concurrent.atomic.AtomicReferenceArray<java.lang.Object>, long, );
    descriptor: (Ljava/util/concurrent/atomic/AtomicReferenceArray;JI)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
        start local 1 // java.util.concurrent.atomic.AtomicReferenceArray nextBuffer
        start local 2 // long index
        start local 4 // int mask
         0: .line 153
            aload 0 /* this */
            aload 1 /* nextBuffer */
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.consumerBuffer:Ljava/util/concurrent/atomic/AtomicReferenceArray;
         1: .line 154
            lload 2 /* index */
            iload 4 /* mask */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.calcWrappedOffset:(JI)I
            istore 5 /* offsetInNew */
        start local 5 // int offsetInNew
         2: .line 155
            aload 1 /* nextBuffer */
            iload 5 /* offsetInNew */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.lvElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;I)Ljava/lang/Object;
            astore 6 /* n */
        start local 6 // java.lang.Object n
         3: .line 156
            aload 6 /* n */
            ifnull 6
         4: .line 157
            aload 1 /* nextBuffer */
            iload 5 /* offsetInNew */
            aconst_null
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.soElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;ILjava/lang/Object;)V
         5: .line 158
            aload 0 /* this */
            lload 2 /* index */
            lconst_1
            ladd
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.soConsumerIndex:(J)V
         6: .line 160
      StackMap locals: int java.lang.Object
      StackMap stack:
            aload 6 /* n */
            areturn
        end local 6 // java.lang.Object n
        end local 5 // int offsetInNew
        end local 4 // int mask
        end local 2 // long index
        end local 1 // java.util.concurrent.atomic.AtomicReferenceArray nextBuffer
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            0    7     1   nextBuffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
            0    7     2        index  J
            0    7     4         mask  I
            2    7     5  offsetInNew  I
            3    7     6            n  TT;
    Signature: (Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;JI)TT;
    MethodParameters:
            Name  Flags
      nextBuffer  
      index       final
      mask        final

  public T peek();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=1
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
         0: .line 165
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.consumerBuffer:Ljava/util/concurrent/atomic/AtomicReferenceArray;
            astore 1 /* buffer */
        start local 1 // java.util.concurrent.atomic.AtomicReferenceArray buffer
         1: .line 166
            aload 0 /* this */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.lpConsumerIndex:()J
            lstore 2 /* index */
        start local 2 // long index
         2: .line 167
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.consumerMask:I
            istore 4 /* mask */
        start local 4 // int mask
         3: .line 168
            lload 2 /* index */
            iload 4 /* mask */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.calcWrappedOffset:(JI)I
            istore 5 /* offset */
        start local 5 // int offset
         4: .line 169
            aload 1 /* buffer */
            iload 5 /* offset */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.lvElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;I)Ljava/lang/Object;
            astore 6 /* e */
        start local 6 // java.lang.Object e
         5: .line 170
            aload 6 /* e */
            getstatic io.reactivex.internal.queue.SpscLinkedArrayQueue.HAS_NEXT:Ljava/lang/Object;
            if_acmpne 7
         6: .line 171
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* buffer */
            iload 4 /* mask */
            iconst_1
            iadd
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.lvNextBufferAndUnlink:(Ljava/util/concurrent/atomic/AtomicReferenceArray;I)Ljava/util/concurrent/atomic/AtomicReferenceArray;
            lload 2 /* index */
            iload 4 /* mask */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.newBufferPeek:(Ljava/util/concurrent/atomic/AtomicReferenceArray;JI)Ljava/lang/Object;
            areturn
         7: .line 174
      StackMap locals: io.reactivex.internal.queue.SpscLinkedArrayQueue java.util.concurrent.atomic.AtomicReferenceArray long int int java.lang.Object
      StackMap stack:
            aload 6 /* e */
            areturn
        end local 6 // java.lang.Object e
        end local 5 // int offset
        end local 4 // int mask
        end local 2 // long index
        end local 1 // java.util.concurrent.atomic.AtomicReferenceArray buffer
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            1    8     1  buffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
            2    8     2   index  J
            3    8     4    mask  I
            4    8     5  offset  I
            5    8     6       e  Ljava/lang/Object;
    Signature: ()TT;

  private T newBufferPeek(java.util.concurrent.atomic.AtomicReferenceArray<java.lang.Object>, long, );
    descriptor: (Ljava/util/concurrent/atomic/AtomicReferenceArray;JI)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
        start local 1 // java.util.concurrent.atomic.AtomicReferenceArray nextBuffer
        start local 2 // long index
        start local 4 // int mask
         0: .line 179
            aload 0 /* this */
            aload 1 /* nextBuffer */
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.consumerBuffer:Ljava/util/concurrent/atomic/AtomicReferenceArray;
         1: .line 180
            lload 2 /* index */
            iload 4 /* mask */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.calcWrappedOffset:(JI)I
            istore 5 /* offsetInNew */
        start local 5 // int offsetInNew
         2: .line 181
            aload 1 /* nextBuffer */
            iload 5 /* offsetInNew */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.lvElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;I)Ljava/lang/Object;
            areturn
        end local 5 // int offsetInNew
        end local 4 // int mask
        end local 2 // long index
        end local 1 // java.util.concurrent.atomic.AtomicReferenceArray nextBuffer
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            0    3     1   nextBuffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
            0    3     2        index  J
            0    3     4         mask  I
            2    3     5  offsetInNew  I
    Signature: (Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;JI)TT;
    MethodParameters:
            Name  Flags
      nextBuffer  
      index       final
      mask        final

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
         0: .line 186
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.poll:()Ljava/lang/Object;
            ifnonnull 0
            aload 0 /* this */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.isEmpty:()Z
            ifeq 0
         1: .line 187
            return
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=1
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
         0: .line 196
            aload 0 /* this */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.lvConsumerIndex:()J
            lstore 1 /* after */
        start local 1 // long after
         1: .line 198
      StackMap locals: long
      StackMap stack:
            lload 1 /* after */
            lstore 3 /* before */
        start local 3 // long before
         2: .line 199
            aload 0 /* this */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.lvProducerIndex:()J
            lstore 5 /* currentProducerIndex */
        start local 5 // long currentProducerIndex
         3: .line 200
            aload 0 /* this */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.lvConsumerIndex:()J
            lstore 1 /* after */
         4: .line 201
            lload 3 /* before */
            lload 1 /* after */
            lcmp
            ifne 1
         5: .line 202
            lload 5 /* currentProducerIndex */
            lload 1 /* after */
            lsub
            l2i
            ireturn
        end local 5 // long currentProducerIndex
        end local 3 // long before
        end local 1 // long after
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    6     0                  this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            1    6     1                 after  J
            2    6     3                before  J
            3    6     5  currentProducerIndex  J

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
         0: .line 209
            aload 0 /* this */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.lvProducerIndex:()J
            aload 0 /* this */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.lvConsumerIndex:()J
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;

  private void adjustLookAheadStep(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
        start local 1 // int capacity
         0: .line 213
            aload 0 /* this */
            iload 1 /* capacity */
            iconst_4
            idiv
            getstatic io.reactivex.internal.queue.SpscLinkedArrayQueue.MAX_LOOK_AHEAD_STEP:I
            invokestatic java.lang.Math.min:(II)I
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerLookAheadStep:I
         1: .line 214
            return
        end local 1 // int capacity
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            0    2     1  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  private long lvProducerIndex();
    descriptor: ()J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
         0: .line 217
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerIndex:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lreturn
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;

  private long lvConsumerIndex();
    descriptor: ()J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
         0: .line 221
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.consumerIndex:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lreturn
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;

  private long lpProducerIndex();
    descriptor: ()J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
         0: .line 225
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerIndex:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lreturn
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;

  private long lpConsumerIndex();
    descriptor: ()J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
         0: .line 229
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.consumerIndex:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lreturn
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;

  private void soProducerIndex(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
        start local 1 // long v
         0: .line 233
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerIndex:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* v */
            invokevirtual java.util.concurrent.atomic.AtomicLong.lazySet:(J)V
         1: .line 234
            return
        end local 1 // long v
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            0    2     1     v  J
    MethodParameters:
      Name  Flags
      v     

  private void soConsumerIndex(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
        start local 1 // long v
         0: .line 237
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.consumerIndex:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* v */
            invokevirtual java.util.concurrent.atomic.AtomicLong.lazySet:(J)V
         1: .line 238
            return
        end local 1 // long v
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            0    2     1     v  J
    MethodParameters:
      Name  Flags
      v     

  private static int calcWrappedOffset(long, int);
    descriptor: (JI)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // long index
        start local 2 // int mask
         0: .line 241
            lload 0 /* index */
            l2i
            iload 2 /* mask */
            iand
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.calcDirectOffset:(I)I
            ireturn
        end local 2 // int mask
        end local 0 // long index
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  index  J
            0    1     2   mask  I
    MethodParameters:
       Name  Flags
      index  
      mask   

  private static int calcDirectOffset(int);
    descriptor: (I)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // int index
         0: .line 244
            iload 0 /* index */
            ireturn
        end local 0 // int index
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  index  I
    MethodParameters:
       Name  Flags
      index  

  private static void soElement(java.util.concurrent.atomic.AtomicReferenceArray<java.lang.Object>, int, );
    descriptor: (Ljava/util/concurrent/atomic/AtomicReferenceArray;ILjava/lang/Object;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // java.util.concurrent.atomic.AtomicReferenceArray buffer
        start local 1 // int offset
        start local 2 // java.lang.Object e
         0: .line 247
            aload 0 /* buffer */
            iload 1 /* offset */
            aload 2 /* e */
            invokevirtual java.util.concurrent.atomic.AtomicReferenceArray.lazySet:(ILjava/lang/Object;)V
         1: .line 248
            return
        end local 2 // java.lang.Object e
        end local 1 // int offset
        end local 0 // java.util.concurrent.atomic.AtomicReferenceArray buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0  buffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
            0    2     1  offset  I
            0    2     2       e  Ljava/lang/Object;
    Signature: (Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;ILjava/lang/Object;)V
    MethodParameters:
        Name  Flags
      buffer  
      offset  
      e       

  private static <E>  lvElement(java.util.concurrent.atomic.AtomicReferenceArray<java.lang.Object>, int);
    descriptor: (Ljava/util/concurrent/atomic/AtomicReferenceArray;I)Ljava/lang/Object;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.concurrent.atomic.AtomicReferenceArray buffer
        start local 1 // int offset
         0: .line 251
            aload 0 /* buffer */
            iload 1 /* offset */
            invokevirtual java.util.concurrent.atomic.AtomicReferenceArray.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int offset
        end local 0 // java.util.concurrent.atomic.AtomicReferenceArray buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  buffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
            0    1     1  offset  I
    Signature: <E:Ljava/lang/Object;>(Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;I)Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      buffer  
      offset  

  public boolean offer(T, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=10, args_size=3
        start local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
        start local 1 // java.lang.Object first
        start local 2 // java.lang.Object second
         0: .line 263
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerBuffer:Ljava/util/concurrent/atomic/AtomicReferenceArray;
            astore 3 /* buffer */
        start local 3 // java.util.concurrent.atomic.AtomicReferenceArray buffer
         1: .line 264
            aload 0 /* this */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.lvProducerIndex:()J
            lstore 4 /* p */
        start local 4 // long p
         2: .line 265
            aload 0 /* this */
            getfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerMask:I
            istore 6 /* m */
        start local 6 // int m
         3: .line 267
            lload 4 /* p */
            ldc 2
            ladd
            iload 6 /* m */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.calcWrappedOffset:(JI)I
            istore 7 /* pi */
        start local 7 // int pi
         4: .line 269
            aload 3 /* buffer */
            iload 7 /* pi */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.lvElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;I)Ljava/lang/Object;
            ifnonnull 10
         5: .line 270
            lload 4 /* p */
            iload 6 /* m */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.calcWrappedOffset:(JI)I
            istore 7 /* pi */
         6: .line 271
            aload 3 /* buffer */
            iload 7 /* pi */
            iconst_1
            iadd
            aload 2 /* second */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.soElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;ILjava/lang/Object;)V
         7: .line 272
            aload 3 /* buffer */
            iload 7 /* pi */
            aload 1 /* first */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.soElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;ILjava/lang/Object;)V
         8: .line 273
            aload 0 /* this */
            lload 4 /* p */
            ldc 2
            ladd
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.soProducerIndex:(J)V
         9: .line 274
            goto 19
        10: .line 275
      StackMap locals: io.reactivex.internal.queue.SpscLinkedArrayQueue java.lang.Object java.lang.Object java.util.concurrent.atomic.AtomicReferenceArray long int int
      StackMap stack:
            aload 3 /* buffer */
            invokevirtual java.util.concurrent.atomic.AtomicReferenceArray.length:()I
            istore 8 /* capacity */
        start local 8 // int capacity
        11: .line 276
            new java.util.concurrent.atomic.AtomicReferenceArray
            dup
            iload 8 /* capacity */
            invokespecial java.util.concurrent.atomic.AtomicReferenceArray.<init>:(I)V
            astore 9 /* newBuffer */
        start local 9 // java.util.concurrent.atomic.AtomicReferenceArray newBuffer
        12: .line 277
            aload 0 /* this */
            aload 9 /* newBuffer */
            putfield io.reactivex.internal.queue.SpscLinkedArrayQueue.producerBuffer:Ljava/util/concurrent/atomic/AtomicReferenceArray;
        13: .line 279
            lload 4 /* p */
            iload 6 /* m */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.calcWrappedOffset:(JI)I
            istore 7 /* pi */
        14: .line 280
            aload 9 /* newBuffer */
            iload 7 /* pi */
            iconst_1
            iadd
            aload 2 /* second */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.soElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;ILjava/lang/Object;)V
        15: .line 281
            aload 9 /* newBuffer */
            iload 7 /* pi */
            aload 1 /* first */
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.soElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;ILjava/lang/Object;)V
        16: .line 282
            aload 0 /* this */
            aload 3 /* buffer */
            aload 9 /* newBuffer */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.soNext:(Ljava/util/concurrent/atomic/AtomicReferenceArray;Ljava/util/concurrent/atomic/AtomicReferenceArray;)V
        17: .line 284
            aload 3 /* buffer */
            iload 7 /* pi */
            getstatic io.reactivex.internal.queue.SpscLinkedArrayQueue.HAS_NEXT:Ljava/lang/Object;
            invokestatic io.reactivex.internal.queue.SpscLinkedArrayQueue.soElement:(Ljava/util/concurrent/atomic/AtomicReferenceArray;ILjava/lang/Object;)V
        18: .line 286
            aload 0 /* this */
            lload 4 /* p */
            ldc 2
            ladd
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.soProducerIndex:(J)V
        end local 9 // java.util.concurrent.atomic.AtomicReferenceArray newBuffer
        end local 8 // int capacity
        19: .line 289
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 7 // int pi
        end local 6 // int m
        end local 4 // long p
        end local 3 // java.util.concurrent.atomic.AtomicReferenceArray buffer
        end local 2 // java.lang.Object second
        end local 1 // java.lang.Object first
        end local 0 // io.reactivex.internal.queue.SpscLinkedArrayQueue this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            0   20     1      first  TT;
            0   20     2     second  TT;
            1   20     3     buffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
            2   20     4          p  J
            3   20     6          m  I
            4   20     7         pi  I
           11   19     8   capacity  I
           12   19     9  newBuffer  Ljava/util/concurrent/atomic/AtomicReferenceArray<Ljava/lang/Object;>;
    Signature: (TT;TT;)Z
    MethodParameters:
        Name  Flags
      first   
      second  
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lio/reactivex/internal/fuseable/SimplePlainQueue<TT;>;
SourceFile: "SpscLinkedArrayQueue.java"