Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for acfm (0.21 sec)

  1. src/crypto/aes/gcm_amd64.s

    	PXOR ACC0, B0
    
    	MOVOU (16*14)(pTbl), ACC0
    	MOVOU (16*15)(pTbl), ACCM
    	MOVOU ACC0, ACC1
    
    	PCLMULQDQ $0x00, B0, ACC0
    	PCLMULQDQ $0x11, B0, ACC1
    	PSHUFD $78, B0, T0
    	PXOR B0, T0
    	PCLMULQDQ $0x00, T0, ACCM
    
    	PXOR ACC0, ACCM
    	PXOR ACC1, ACCM
    	MOVOU ACCM, T0
    	PSRLDQ $8, ACCM
    	PSLLDQ $8, T0
    	PXOR ACCM, ACC1
    	PXOR T0, ACC0
    
    	MOVOU POLY, T0
    	PCLMULQDQ $0x01, ACC0, T0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_arm64.s

    #define K7 V26
    #define K8 V27
    #define K9 V28
    #define K10 V29
    #define K11 V30
    #define KLAST V31
    
    #define reduce() \
    	VEOR	ACC0.B16, ACCM.B16, ACCM.B16     \
    	VEOR	ACC1.B16, ACCM.B16, ACCM.B16     \
    	VEXT	$8, ZERO.B16, ACCM.B16, T0.B16   \
    	VEXT	$8, ACCM.B16, ZERO.B16, ACCM.B16 \
    	VEOR	ACCM.B16, ACC0.B16, ACC0.B16     \
    	VEOR	T0.B16, ACC1.B16, ACC1.B16       \
    	VPMULL	POLY.D1, ACC0.D1, T0.Q1          \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // according to this technique.
    //
    // Fair queuing for server requests is inspired by the fair queuing
    // technique from the world of networking.  You can find a good paper
    // on that at https://dl.acm.org/citation.cfm?doid=75247.75248 or
    // http://people.csail.mit.edu/imcgraw/links/research/pubs/networks/WFQ.pdf
    // and there is an implementation outline in the Wikipedia article at
    // https://en.wikipedia.org/wiki/Fair_queuing .
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/ro/stopwords.txt

    acea
    aceasta
    această
    aceea
    acei
    aceia
    acel
    acela
    acele
    acelea
    acest
    acesta
    aceste
    acestea
    aceşti
    aceştia
    acolo
    acum
    ai
    aia
    aibă
    aici
    al
    ăla
    ale
    alea
    ălea
    altceva
    altcineva
    am
    ar
    are
    aş
    aşadar
    asemenea
    asta
    ăsta
    astăzi
    astea
    ăstea
    ăştia
    asupra
    aţi
    au
    avea
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  5. src/runtime/complex.go

    }
    
    func complex128div(n complex128, m complex128) complex128 {
    	var e, f float64 // complex(e, f) = n/m
    
    	// Algorithm for robust complex division as described in
    	// Robert L. Smith: Algorithm 116: Complex division. Commun. ACM 5(8): 435 (1962).
    	if abs(real(m)) >= abs(imag(m)) {
    		ratio := imag(m) / real(m)
    		denom := real(m) + ratio*imag(m)
    		e = (real(n) + imag(n)*ratio) / denom
    		f = (imag(n) - real(n)*ratio) / denom
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 22:45:17 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  6. .mailmap

    Rene Groeschke <******@****.***> <******@****.***>
    Rene Groeschke <******@****.***> <******@****.***>
    Ryan <******@****.***> <******@****.***>
    Rodrigo B. de Oliveira <******@****.***> <rbo@acm.org>
    Sebastian Schuberth <******@****.***> <******@****.***>
    Stefan Oehme <******@****.***> <******@****.***>
    Sterling Greene <******@****.***> <******@****.***>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 03 06:34:28 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        </magic>
      </mime-type>
    
      <mime-type type="application/x-font-adobe-metric">
        <_comment>Adobe Font Metric</_comment>
        <glob pattern="*.afm"/>
        <glob pattern="*.acfm"/>
        <glob pattern="*.amfm"/>
        <magic priority="40">
          <match value="StartFontMetrics" type="string" offset="0"/>
        </magic>
      </mime-type>
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        }
    
        @Override
        public Map<Artifact, Path> resolveArtifacts(Artifact... artifacts) {
            ArtifactCoordinateFactory acf = getService(ArtifactCoordinateFactory.class);
            List<ArtifactCoordinate> coords =
                    Arrays.stream(artifacts).map(a -> acf.create(this, a)).collect(Collectors.toList());
            return resolveArtifacts(coords);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

     * conventional bounded queues, which either block or reject new elements when full.
     *
     * <p>This implementation is based on the <a
     * href="http://portal.acm.org/citation.cfm?id=6621">min-max heap</a> developed by Atkinson, et al.
     * Unlike many other double-ended priority queues, it stores elements in a single array, as compact
     * as the traditional heap data structure used in {@link PriorityQueue}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/a.out.go

    	AWCDGB
    	AVCDLG
    	AVCDLGB
    	AWCDLGB
    	AVCGD
    	AVCGDB
    	AWCGDB
    	AVCLGD
    	AVCLGDB
    	AWCLGDB
    	AVFD
    	AVFDDB
    	AWFDDB
    	AVLDE
    	AVLDEB
    	AWLDEB
    	AVLED
    	AVLEDB
    	AWLEDB
    	AVFM
    	AVFMDB
    	AWFMDB
    	AVFMA
    	AVFMADB
    	AWFMADB
    	AVFMS
    	AVFMSDB
    	AWFMSDB
    	AVFPSO
    	AVFPSODB
    	AWFPSODB
    	AVFLCDB
    	AWFLCDB
    	AVFLNDB
    	AWFLNDB
    	AVFLPDB
    	AWFLPDB
    	AVFSQ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top