Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 275 for rounds (0.12 sec)

  1. src/crypto/md5/md5block_amd64.s

    	ROUND1(DX,AX,BX,CX, 6,0x4787c62a,12);
    	ROUND1(CX,DX,AX,BX, 7,0xa8304613,17);
    	ROUND1(BX,CX,DX,AX, 8,0xfd469501,22);
    	ROUND1(AX,BX,CX,DX, 9,0x698098d8, 7);
    	ROUND1(DX,AX,BX,CX,10,0x8b44f7af,12);
    	ROUND1(CX,DX,AX,BX,11,0xffff5bb1,17);
    	ROUND1(BX,CX,DX,AX,12,0x895cd7be,22);
    	ROUND1(AX,BX,CX,DX,13,0x6b901122, 7);
    	ROUND1(DX,AX,BX,CX,14,0xfd987193,12);
    	ROUND1(CX,DX,AX,BX,15,0xa679438e,17);
    	ROUND1(BX,CX,DX,AX, 1,0x49b40821,22);
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/crypto/md5/md5block_386.s

    	ROUND4(AX,BX,CX,DX, 3,0x655b59c3, 6);
    	ROUND4(DX,AX,BX,CX,10,0x8f0ccc92,10);
    	ROUND4(CX,DX,AX,BX, 1,0xffeff47d,15);
    	ROUND4(BX,CX,DX,AX, 8,0x85845dd1,21);
    	ROUND4(AX,BX,CX,DX,15,0x6fa87e4f, 6);
    	ROUND4(DX,AX,BX,CX, 6,0xfe2ce6e0,10);
    	ROUND4(CX,DX,AX,BX,13,0xa3014314,15);
    	ROUND4(BX,CX,DX,AX, 4,0x4e0811a1,21);
    	ROUND4(AX,BX,CX,DX,11,0xf7537e82, 6);
    	ROUND4(DX,AX,BX,CX, 2,0xbd3af235,10);
    	ROUND4(CX,DX,AX,BX, 9,0x2ad7d2bb,15);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. test/bounds.go

    	use(a1[i&999])
    	use(a1k[i&999])   // ERROR "index bounds check elided"
    	use(a100k[i&999]) // ERROR "index bounds check elided"
    	use(p1[i&999])
    	use(p1k[i&999])   // ERROR "index bounds check elided"
    	use(p100k[i&999]) // ERROR "index bounds check elided"
    
    	use(s[ui&999])
    	use(a1[ui&999])
    	use(a1k[ui&999])   // ERROR "index bounds check elided"
    	use(a100k[ui&999]) // ERROR "index bounds check elided"
    	use(p1[ui&999])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 27 03:11:45 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/conf/routes

    # Routes
    # Home page
    GET     /                           @controllers.Application.index
    
    GET     /shutdown                   @controllers.Application.shutdown
    
    # Map static resources from the /public folder to the /assets URL path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 313 bytes
    - Viewed (0)
  5. test-site/conf/routes

    # Routes
    # This file defines all application routes (Higher priority routes first)
    # ~~~~
    
    # Home page
    # GET     /                           controllers.Application.index()
    GET         /suggest/get                        controllers.Suggest.get()
    GET         /suggest/create/content             controllers.Suggest.createContent()
    GET         /suggest/create/suggest/content     controllers.Suggest.createSuggestFromContent()
    
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 09:05:27 UTC 2015
    - 739 bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/conf/routes

    # Routes
    # This file defines all application routes (Higher priority routes first)
    # ~~~~
    
    # Home page
    GET     /                           @controllers.Application.index
    
    # Map static resources from the /public folder to the /assets URL path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 323 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/fake_quant_e2e_xla.mlir

    // CHECK: %[[add2:.*]] = "tf.AddV2"(%[[rescale1]]
    // CHECK: %[[maximum2:.*]] = "tf.Maximum"(%[[add2]]
    // CHECK: %[[minimum2:.*]] = "tf.Minimum"(%[[maximum2]]
    // CHECK: %[[round2:.*]] = "tf.Round"(%[[minimum2]]
    // CHECK: %[[quant2:.*]] = "tf.Cast"(%[[round2]]) <{Truncate = false}> : (tensor<1x3x2x2xf32>) -> tensor<1x3x2x2xi8>
    
    // CHECK: %[[pad2:.*]] = "tf.PadV2"(%[[quant2]]
    // CHECK: %[[xlaconv2:.*]] = "tf.XlaConvV2"(%[[pad2]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/conf/routes.old

    # Routes
    # Home page
    GET     /                           controllers.Application.index
    
    GET     /shutdown                   controllers.Application.shutdown
    
    # Map static resources from the /public folder to the /assets URL path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 310 bytes
    - Viewed (0)
  9. releasenotes/notes/dns-round-robin.yaml

    John Howard <******@****.***> 1614287117 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 25 21:05:17 UTC 2021
    - 188 bytes
    - Viewed (0)
  10. src/cmd/go/internal/script/conds.go

    // license that can be found in the LICENSE file.
    
    package script
    
    import (
    	"cmd/go/internal/imports"
    	"fmt"
    	"os"
    	"runtime"
    	"sync"
    )
    
    // DefaultConds returns a set of broadly useful script conditions.
    //
    // Run the 'help' command within a script engine to view a list of the available
    // conditions.
    func DefaultConds() map[string]Cond {
    	conds := make(map[string]Cond)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top