Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for x1 (0.02 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    #define state2Store (3*16)(BP)
    #define tmpStore (4*16)(BP)
    #define ctr0Store (5*16)(BP)
    #define ctr1Store (6*16)(BP)
    #define ctr2Store (7*16)(BP)
    #define ctr3Store (8*16)(BP)
    #define A0 X0
    #define A1 X1
    #define A2 X2
    #define B0 X3
    #define B1 X4
    #define B2 X5
    #define C0 X6
    #define C1 X7
    #define C2 X8
    #define D0 X9
    #define D1 X10
    #define D2 X11
    #define T0 X12
    #define T1 X13
    #define T2 X14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    Thus the length and capacity of a slice literal are the maximum
    element index plus one. A slice literal has the form
    </p>
    
    <pre>
    []T{x1, x2, … xn}
    </pre>
    
    <p>
    and is shorthand for a slice operation applied to an array:
    </p>
    
    <pre>
    tmp := [n]T{x1, x2, … xn}
    tmp[0 : n]
    </pre>
    
    <p>
    Within a composite literal of array, slice, or map type <code>T</code>,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top