Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for 32769 (0.04 sec)

  1. src/hash/crc32/crc32_ppc64le.s

    	MOVD    $·byteswapcons(SB),R3
    	LVX	(R3),byteswap
    #endif
    
    	CMPU	R5,$256		// length of bytes
    	BLT	short
    
    	RLDICR	$0,R5,$56,R6 // chunk to process
    
    	// First step for larger sizes
    l1:	MOVD	$32768,R7
    	MOVD	R7,R9
    	CMP	R6,R7   // compare R6, R7 (MAX SIZE)
    	BGT	top	// less than MAX, just do remainder
    	MOVD	R6,R7
    top:
    	SUB	R7,R6,R6
    
    	// mainloop does 128 bytes at a time
    	SRD	$7,R7
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/runtime/sys_darwin.go

    		// when SS_DISABLE is set, it doesn't. sigaltstack returns ENOMEM
    		// if we don't give it a reasonable size.
    		// ref: http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20140421/214296.html
    		new.ss_size = 32768
    	}
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(sigaltstack_trampoline)), unsafe.Pointer(&new))
    	KeepAlive(new)
    	KeepAlive(old)
    }
    func sigaltstack_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. pkg/bootstrap/config.go

    	// Setup defaults
    	runtimeFlags := map[string]any{
    		"overload.global_downstream_max_connections": "2147483647",
    		"re2.max_program_size.error_level":           "32768",
    		"envoy.deprecated_features:envoy.config.listener.v3.Listener.hidden_envoy_deprecated_use_original_dst": true,
    		"envoy.reloadable_features.http_reject_path_with_fragment":                                             false,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/obj9.go

    			//     ADD   $int64(int16(x)), rY, rY
    			// The range is slightly asymmetric as 0x7FFF8000 and above overflow the sign bit, whereas for
    			// negative values, this would happen with constant values between -1 and -32768 which can
    			// assemble into a single addi.
    			is := p.From.Offset>>16 + (p.From.Offset>>15)&1
    			i := int64(int16(p.From.Offset))
    			p.As = AADDIS
    			p.From.Offset = is
    			q := obj.Appendp(p, c.newprog)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top