Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 84 for rounds (0.13 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. 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)
  4. 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)
  5. 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)
  6. src/crypto/md5/gen.go

    		0x8d2a4c8a,
    	},
    	Table3: []uint32{
    		// round3
    		0xfffa3942,
    		0x8771f681,
    		0x6d9d6122,
    		0xfde5380c,
    		0xa4beea44,
    		0x4bdecfa9,
    		0xf6bb4b60,
    		0xbebfbc70,
    		0x289b7ec6,
    		0xeaa127fa,
    		0xd4ef3085,
    		0x4881d05,
    		0xd9d4d039,
    		0xe6db99e5,
    		0x1fa27cf8,
    		0xc4ac5665,
    	},
    	Table4: []uint32{
    		// round 4
    		0xf4292244,
    		0x432aff97,
    		0xab9423a7,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/internal/byteorder/byteorder.go

    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func LeAppendUint16(b []byte, v uint16) []byte {
    	return append(b,
    		byte(v),
    		byte(v>>8),
    	)
    }
    
    func LeUint32(b []byte) uint32 {
    	_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 20:31:29 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml

    Jonh Wendell <******@****.***> 1715709579 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 480 bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_stack_darwin.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include <pthread.h>
    #include "libcgo.h"
    
    void
    x_cgo_getstackbound(uintptr bounds[2])
    {
    	void* addr;
    	size_t size;
    	pthread_t p;
    
    	p = pthread_self();
    	addr = pthread_get_stackaddr_np(p); // high address (!)
    	size = pthread_get_stacksize_np(p);
    
    	// bounds points into the Go stack. TSAN can't see the synchronization
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 01:32:45 UTC 2024
    - 617 bytes
    - Viewed (0)
  10. src/runtime/cgo/gcc_stack_unix.c

    	// same as the default stack bounds.
    	pthread_attr_getstacksize(&attr, &size);
    	addr = __builtin_frame_address(0) + 4096 - size;
    #endif
    	pthread_attr_destroy(&attr);
    
    	// bounds points into the Go stack. TSAN can't see the synchronization
    	// in Go around stack reuse.
    	_cgo_tsan_acquire();
    	bounds[0] = (uintptr)addr;
    	bounds[1] = (uintptr)addr + size;
    	_cgo_tsan_release();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 03:44:11 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top